Skip to content

Commit

Permalink
Merge pull request #7 from pear/topics/composer-for-pear
Browse files Browse the repository at this point in the history
Updated/New Composer support for XML_Feed_Parser
  • Loading branch information
till committed Feb 20, 2014
2 parents a6a76c5 + 4a4385e commit 61a3426
Show file tree
Hide file tree
Showing 2 changed files with 39 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
35 changes: 35 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"authors": [
{
"email": "[email protected]",
"name": "James Stewart",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"XML": "./"
}
},
"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": "*",
"pear/log": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}

0 comments on commit 61a3426

Please sign in to comment.