From 365fb81a54c75d7941f5a78a270aa4f67c1a73af Mon Sep 17 00:00:00 2001 From: till Date: Mon, 17 Feb 2014 17:20:05 +0100 Subject: [PATCH] Enhancement: composer setup --- .gitignore | 4 ++++ composer.json | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 38 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..e996d30 --- /dev/null +++ b/composer.json @@ -0,0 +1,34 @@ +{ + "authors": [ + { + "email": "james@jystewart.net", + "name": "James Stewart", + "role": "Lead" + } + ], + "autoload": { + "psr-0": { + "XML_Feed_Parser": "./" + } + }, + "description": "More info available on: http://pear.php.net/package/XML_Feed_Parser", + "include-path": [ + "./" + ], + "license": "LGPL", + "name": "pear/xml_feed_parser", + "support": { + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=XML_Feed_Parser", + "source": "https://github.com/pear/XML_Feed_Parser" + }, + "type": "library", + "suggest": { + "ext-tidy": "May require the tidy PHP extension" + }, + "require": { + "pear/pear_exception": "*" + }, + "require-dev": { + "phpunit/phpunit": "*" + } +} \ No newline at end of file