-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.5 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
{
"name": "loophp/church-encoding",
"description": "Church encoding in PHP",
"license": "MIT",
"type": "library",
"keywords": [
"church-encoding",
"educational",
"functional-programming",
"learning"
],
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com"
}
],
"require": {
"php": ">= 7.4",
"loophp/combinator": "^2.0"
},
"require-dev": {
"drupol/php-conventions": "^6",
"friends-of-phpspec/phpspec-code-coverage": "^6.1",
"infection/infection": "^0.29",
"infection/phpspec-adapter": "^0.2.0",
"phpspec/phpspec": "^7",
"phpstan/phpstan-strict-rules": "^1.0",
"symfony/var-dumper": "^6.0"
},
"autoload": {
"psr-4": {
"loophp\\churchencoding\\": "./src/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"phpro/grumphp": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"scripts": {
"bench": "vendor/bin/phpbench run --report='generator: \"table\", cols: [ \"suite\", \"subject\", \"mean\", \"diff\", \"mem_peak\", \"mem_real\"], break: [\"benchmark\"]'",
"grumphp": "vendor/bin/grumphp run",
"infection": "vendor/bin/infection run -j 2",
"phpspec": "vendor/bin/phpspec run"
}
}