-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.61 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "mckayb/phantasy",
"description": "A basic functional programming library for PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "McKay Broderick",
"email": "[email protected]",
"homepage": "https://github.com/mckayb/phantasy"
}
],
"require": {
"php": ">=7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.4",
"php-coveralls/php-coveralls": "^2.1",
"giorgiosironi/eris": "^0.11.0"
},
"autoload": {
"psr-4": {
"Phantasy\\": "src/",
"Phantasy\\Test\\": "test/"
},
"files": [
"src/Core/functions.php",
"src/DataTypes/Either/Left.php",
"src/DataTypes/Either/Right.php",
"src/DataTypes/Maybe/Just.php",
"src/DataTypes/Maybe/Nothing.php",
"src/DataTypes/Validation/Failure.php",
"src/DataTypes/Validation/Success.php",
"src/DataTypes/LinkedList/Cons.php",
"src/DataTypes/LinkedList/Nil.php",
"src/DataTypes/Reader/Reader.php",
"src/DataTypes/Writer/Writer.php",
"src/DataTypes/State/State.php",
"src/DataTypes/Set/Set.php",
"src/DataTypes/Collection/Collection.php",
"src/DataTypes/IO/IO.php",
"src/DataTypes/Text/Text.php"
]
},
"scripts": {
"test": "phpunit",
"lint": "phpcs --standard=./ruleset.xml ./src ./test",
"lint-fix": "phpcbf --standard=./ruleset.xml ./src ./test",
"coverage": "phpunit --coverage-clover build/logs/clover.xml --coverage-html build/html",
"upload-coverage": "php-coveralls -v"
}
}