From 0308a44909fe995470becf3854c4b88da296bbef Mon Sep 17 00:00:00 2001 From: Joseph Bielawski Date: Wed, 4 Jan 2012 17:15:33 +0100 Subject: [PATCH 1/2] Add composer.json --- composer.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..e23a553 --- /dev/null +++ b/composer.json @@ -0,0 +1,31 @@ +{ + "name": "knplabs/knp-markdown-bundle", + "type": "symfony-bundle", + "keywords": ["markdown"], + "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.*" + }, + + "autoload": { + "psr-0": { + "Knp\\Bundle\\MarkdownBundle": "" + } + }, + + "target-dir": "Knp/Bundle/MarkdownBundle" +} From 3606cc90cdc75fd54c1066403f8d9e991bbc02a7 Mon Sep 17 00:00:00 2001 From: gedi Date: Thu, 12 Jan 2012 14:02:48 +0200 Subject: [PATCH 2/2] slighly fixed the composer.json --- composer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index e23a553..88ed469 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,8 @@ { "name": "knplabs/knp-markdown-bundle", "type": "symfony-bundle", - "keywords": ["markdown"], + "description": "Knplabs markdown bundle transforms markdown into html", + "keywords": ["markdown", "knplabs", "knp", "bundle"], "homepage": "http://github.com/KnpLabs/KnpMarkdownBundle", "license": "MIT", @@ -18,7 +19,7 @@ "require": { "php": ">=5.3.2", - "symfony/framework-bundle": "2.0.*" + "symfony/framework-bundle": ">=2.0.0" }, "autoload": {