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 c3fbfa5 commit abba77f
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
33 changes: 33 additions & 0 deletions composer.json
@@ -0,0 +1,33 @@
{
"authors": [
{
"email": "schst@php-tools.net",
"name": "Stephan Schmidt",
"role": "Lead"
},
{
"email": "ashnazg@php.net",
"name": "Chuck Burgess",
"role": "Lead"
}
],
"autoload": {
"classmap": [
"./"
]
},
"description": "More info available on: http://pear.php.net/package/XML_Beautifier",
"license": "BSD License",
"name": "pear/xml_beautifier",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=XML_Beautifier",
"source": "https://github.com/pear/XML_Beautifier"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}

0 comments on commit abba77f

Please sign in to comment.