Add Option and tests

This commit is contained in:
2024-07-26 18:10:02 -04:00
parent e16bf30dc3
commit bfc27ccef5
5 changed files with 2138 additions and 0 deletions

38
composer.json Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "bit-badger/inspired-by-fsharp",
"description": "PHP utility classes whose functionality is inspired by their F# counterparts",
"keywords": ["option", "result"],
"license": "MIT",
"authors": [
{
"name": "Daniel J. Summers",
"email": "daniel@bitbadger.solutions",
"homepage": "https://bitbadger.solutions",
"role": "Developer"
}
],
"support": {
"email": "daniel@bitbadger.solutions",
"source": "https://git.bitbadger.solutions/bit-badger/inspired-by-fsharp",
"rss": "https://git.bitbadger.solutions/bit-badger/inspired-by-fsharp.rss"
},
"require": {
"php": "^8"
},
"require-dev": {
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"BitBadger\\InspiredByFSharp\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "./tests"
}
},
"archive": {
"exclude": [ "/tests", "/.gitattributes", "/.gitignore", "/.git", "/composer.lock" ]
}
}