Merge pull request #17 from KnpLabs/composer

Add composer.json
This commit is contained in:
Gediminas Morkevicius 2012-01-12 04:01:10 -08:00
commit e545f0ee71

32
composer.json Normal file
View file

@ -0,0 +1,32 @@
{
"name": "knplabs/knp-markdown-bundle",
"type": "symfony-bundle",
"description": "Knplabs markdown bundle transforms markdown into html",
"keywords": ["markdown", "knplabs", "knp", "bundle"],
"homepage": "http://github.com/KnpLabs/KnpMarkdownBundle",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "Symfony Community",
"homepage": "http://github.com/KnpLabs/KnpMarkdownBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=2.0.0"
},
"autoload": {
"psr-0": {
"Knp\\Bundle\\MarkdownBundle": ""
}
},
"target-dir": "Knp/Bundle/MarkdownBundle"
}