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 8f2fa44 commit 387c2cf
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
@@ -1,2 +1,7 @@
/build/
/releases/

# composer related
composer.lock
composer.phar
vendor
36 changes: 36 additions & 0 deletions composer.json
@@ -0,0 +1,36 @@
{
"authors": [
{
"email": "mike@php.net",
"name": "Michael Wallner",
"role": "Lead"
},
{
"email": "jausions@php.net",
"name": "Philippe Jausions",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"HTTP2": "./"
}
},
"description": "A fork of HTTP for PHP5+",
"include-path": [
"./"
],
"license": "New BSD License",
"name": "pear/http2",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=HTTP2",
"source": "https://github.com/pear/HTTP2"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}

0 comments on commit 387c2cf

Please sign in to comment.