Skip to content

Commit

Permalink
Enhancement: composer setup
Browse files Browse the repository at this point in the history
  • Loading branch information
till committed Feb 17, 2014
1 parent a6a76c5 commit 365fb81
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
34 changes: 34 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"authors": [
{
"email": "[email protected]",
"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": "*"
}
}

0 comments on commit 365fb81

Please sign in to comment.