This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.74 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
{
"name": "loophp/fpt",
"type": "library",
"description": "Functional programming toolbox for PHP.",
"keywords": [
"functional-programming",
"toolbox"
],
"license": "MIT",
"authors": [
{
"name": "Pol Dellaiera",
"email": "[email protected]"
}
],
"require": {
"php": ">= 8"
},
"require-dev": {
"drupol/php-conventions": "^5",
"friends-of-phpspec/phpspec-code-coverage": "^6",
"infection/infection": "^0.22.0 || ^0.23.0 || ^0.24.0",
"infection/phpspec-adapter": "^0.1.1",
"phpspec/phpspec": "^7",
"phpstan/phpstan-strict-rules": "^0.12 || ^1.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"loophp\\fpt\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"loophp\\fpt\\benchmarks\\": "./benchmarks/",
"spec\\loophp\\fpt\\": "./spec/loophp/fpt/"
}
},
"scripts": {
"changelog-unreleased": "docker-compose run auto_changelog -c .auto-changelog -u",
"changelog-version": "docker-compose run auto_changelog -c .auto-changelog -v",
"grumphp": "vendor/bin/grumphp run",
"infection": "vendor/bin/infection run -j 2",
"phpspec": "vendor/bin/phpspec run"
},
"support": {
"issues": "https://github.com/loophp/fpt/issues",
"source": "https://github.com/loophp/fpt",
"docs": "https://loophp-fpt.rtfd.io"
},
"funding": [
{
"type": "github",
"url": "https://github.com/drupol"
},
{
"type": "paypal",
"url": "https://www.paypal.me/drupol"
}
]
}