From af647f75491b1b1b7958505f6282d0d8dfb74750 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 17 Feb 2015 01:17:29 +0100 Subject: [PATCH] Composer configuration --- composer.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..8bcb6a9 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "simmstein/pdns-console", + "type": "project", + "description": "pdns-console - console tool to manage pdns server", + "keywords": [], + "homepage": "http://www.deblan.tv/", + "license": "New BSD", + "authors": [ + { + "name": "Simon Vieille", + "email": "simon+github@deblan.fr" + } + ], + "autoload": { + "psr-0": { + "": "src/" + } + }, + "require": { + "php": ">=5.5", + "symfony/process": "~2.6", + "symfony/console": "2.*", + "psr/log": "1.0.0", + "symfony/finder": "~2.6", + "symfony/yaml": "~2.6", + "symfony/filesystem": "2.7.x-dev", + "propel/propel": "2.0.x-dev" + } +}