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 891a641 commit 15f694f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
31 changes: 31 additions & 0 deletions composer.json
@@ -0,0 +1,31 @@
{
"authors": [
{
"email": "jmcastagnetto@php.net",
"name": "Jesus M. Castagnetto",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"Math_Stats": "./"
}
},
"description": "More info available on: http://pear.php.net/package/Math_Stats",
"include-path": [
"./"
],
"license": "PHP",
"name": "pear/math_stats",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Math_Stats",
"source": "https://github.com/pear/Math_Stats"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}

0 comments on commit 15f694f

Please sign in to comment.