diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..869f498 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# composer related +composer.lock +composer.phar +vendor diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..0a38d3b --- /dev/null +++ b/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": "*" + } +} \ No newline at end of file