Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
datashaman committed Apr 3, 2019
0 parents commit 7c27f96
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/composer.lock
/vendor/
48 changes: 48 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"name": "datashaman/hypothesis",
"description": "PHP implementation of hypothesis testing.",
"type": "library",
"keywords": [
"testing"
],
"license": "MIT",
"authors": [
{
"name": "Marlin Forbes",
"email": "marlinf@datashaman.com"
}
],
"prefer-stable": true,
"require": {
"php": "^7.2",
"symfony/console": "^4.2",
"symfony/finder": "^4.2",
"symfony/property-info": "^4.2",
"symfony/stopwatch": "^4.2",
"phpdocumentor/reflection-docblock": "^4.3",
"phpunit/phpunit": "^8.0"
},
"require-dev": {
"nunomaduro/collision": "^3.0"
},
"config": {
"platform": {
"php": "7.2.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"bin": [
"hypothesis"
],
"autoload": {
"psr-4": {
"Datashaman\\Hypothesis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Datashaman\\Hypothesis\\Tests\\": "tests/"
}
}
}

0 comments on commit 7c27f96

Please sign in to comment.