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 bb1a704 commit ace79b6
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
31 changes: 31 additions & 0 deletions composer.json
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"authors": [
{
"email": "sjr@gmx.co.uk",
"name": "Stijn de Reede",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"HTML_BBCodeParser": "./"
}
},
"description": "More info available on: http://pear.php.net/package/HTML_BBCodeParser",
"include-path": [
"./"
],
"license": "PHP License",
"name": "pear/html_bbcodeparser",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=HTML_BBCodeParser",
"source": "https://github.com/pear/HTML_BBCodeParser"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}

0 comments on commit ace79b6

Please sign in to comment.