Skip to content

Commit

Permalink
Merge pull request #6 from pear/topics/composer-for-pear
Browse files Browse the repository at this point in the history
Updated/New Composer support for PEAR_Exception
  • Loading branch information
till committed Feb 17, 2014
2 parents b8fae23 + 75419ed commit 6ff5133
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 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
24 changes: 19 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name": "pear/pear_exception",
"description": "The PEAR Exception base class.",
"type": "class",
"keywords": [ "exception" ],
"keywords": [
"exception"
],
"homepage": "https://github.com/pear/PEAR_Exception",
"license": "BSD-2-Clause",
"authors": [
Expand All @@ -16,15 +18,27 @@
}
],
"require": {
"php": ">=4.4.0"
"php": ">=4.4.0",
"pear/pear_exception": "*"
},
"autoload": {
"psr-0": { "PEAR": "" }
"psr-0": {
"PEAR": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"include-path": ["."]
}
"include-path": [
"."
],
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
"source": "https://github.com/pear/PEAR_Exception"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}

0 comments on commit 6ff5133

Please sign in to comment.