Skip to content

Commit

Permalink
Merge pull request #2 from pear/topics/composer-for-pear
Browse files Browse the repository at this point in the history
Updated/New Composer support for Services_Ebay
  • Loading branch information
Stelian committed Feb 17, 2014
2 parents 416c9a7 + ac2ab66 commit 7beacf0
Show file tree
Hide file tree
Showing 2 changed files with 50 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
46 changes: 46 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"authors": [
{
"email": "schst@php.net",
"name": "Stephan Schmidt",
"role": "Lead"
},
{
"email": "amt@php.net",
"name": "Adam Maccabee Trachtenberg",
"role": "Lead"
},
{
"email": "luckec@php.net",
"name": "Carsten Lucke",
"role": "Lead"
},
{
"email": "amir@php.net",
"name": "Amir Mohammad Saied",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"Services_Ebay": "./"
}
},
"description": "Interface to eBay's XML-API.",
"include-path": [
"./"
],
"license": "PHP License",
"name": "pear/services_ebay",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Services_Ebay",
"source": "https://github.com/pear/Services_Ebay"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}

0 comments on commit 7beacf0

Please sign in to comment.