From 6f02492f05959a4b857139e94c35b2e5631707aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Gomez?= Date: Tue, 2 Jul 2013 14:29:31 +0100 Subject: [PATCH] Add: composer.json --- composer.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..2f2c4ef --- /dev/null +++ b/composer.json @@ -0,0 +1,23 @@ +{ + "name": "itn/log-viewer-bundle", + "description": "Provides a quick way to access application logs", + "type": "symfony-bundle", + "license": "MIT", + "authors": [ + { + "name": "Pierre Tachoire" + }, + { + "name": "Kévin Gomez", + "email": "contact@kevingomez.fr", + "homepage": "http://www.kevingomez.fr/" + } + ], + "require": { + "symfony/symfony": ">=2.0.0", + }, + "autoload": { + "psr-0": { "ITN\\Bundle\\LogViewerBundle": "" } + }, + "target-dir": "ITN/Bundle/LogViewerBundle" +}