-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
67 lines (67 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "loophp/combinator",
"description": "A curated list of combinators",
"license": "MIT",
"type": "library",
"keywords": [
"combinator",
"combinatory logic",
"educational",
"functional programming"
],
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com"
}
],
"support": {
"issues": "https://github.com/loophp/combinator/issues",
"source": "https://github.com/loophp/combinator"
},
"funding": [
{
"type": "github",
"url": "https://github.com/drupol"
}
],
"require": {
"php": ">= 8.1"
},
"require-dev": {
"ext-pcov": "*",
"drupol/php-conventions": "^6",
"friends-of-phpspec/phpspec-code-coverage": "^6",
"infection/infection": ">= 0.26",
"infection/phpspec-adapter": "^0.2",
"phpspec/phpspec": "^7",
"phpstan/phpstan-strict-rules": "^1.0"
},
"autoload": {
"psr-4": {
"loophp\\combinator\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\loophp\\combinator\\": "./tests/src/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"infection/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"infection": "vendor/bin/infection run -j 2",
"phpspec": "vendor/bin/phpspec run -vvv --stop-on-failure"
}
}