-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 812 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 812 Bytes
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
{
"name": "functional-php/fantasy-land",
"description": "Specification for interoperability of common algebraic structures in PHP",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Gabriel Habryn",
"email": "widmogrod+github@gmail.com"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2",
"phpunit/phpunit": "^5",
"giorgiosironi/eris": "^0.9"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"FunctionalPHP\\": "./src"
},
"files": [
"src/FantasyLand/functions.php"
]
},
"scripts": {
"test": "phpunit --no-coverage",
"fix-code": "php-cs-fixer fix --allow-risky=yes",
"check-code": "php-cs-fixer fix --verbose --diff --dry-run --allow-risky=yes"
}
}