From 0202126a4bee139401c4861a73aebcc4994936fd Mon Sep 17 00:00:00 2001 From: till Date: Mon, 17 Feb 2014 17:35:03 +0100 Subject: [PATCH] Enhancement: composer setup --- .gitignore | 4 ++++ composer.json | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..869f498 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# composer related +composer.lock +composer.phar +vendor diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..a616666 --- /dev/null +++ b/composer.json @@ -0,0 +1,36 @@ +{ + "authors": [ + { + "email": "l.alberton@quipo.it", + "name": "Lorenzo Alberton", + "role": "Lead" + }, + { + "email": "richard@phpguru.org", + "name": "Richard Heyes", + "role": "Lead" + } + ], + "autoload": { + "psr-0": { + "Pager": "./" + } + }, + "description": "More info available on: http://pear.php.net/package/Pager", + "include-path": [ + "./" + ], + "license": "BSD", + "name": "pear/pager", + "support": { + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Pager", + "source": "https://github.com/pear/Pager" + }, + "type": "library", + "require": { + "pear/pear_exception": "*" + }, + "require-dev": { + "phpunit/phpunit": "*" + } +} \ No newline at end of file