forked from remorhaz/php-int-rangesets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.65 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
{
"description": "Integer range sets manipulation",
"name": "remorhaz/int-rangesets",
"homepage": "https://github.com/remorhaz/php-int-rangesets",
"license": "MIT",
"authors": [
{
"name": "Edward Surov",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Remorhaz\\IntRangeSets\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Remorhaz\\IntRangeSets\\Test\\": "tests/"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"phpunit/phpunit": "^11.5"
},
"scripts": {
"post-update-cmd": ["@phive-install"],
"post-install-cmd": ["@phive-install"],
"phive-install": [
"`if [ -f tools/phive ]; then echo 'tools/'; fi`phive install --trust-gpg-keys C5095986493B4AA0"
],
"test-cs": "vendor-bin/cs/vendor/bin/phpcs -sp",
"test-unit": "vendor/bin/phpunit --coverage-xml=build/logs/coverage-xml --coverage-clover=build/logs/clover.xml --log-junit=build/logs/junit.xml",
"test-psalm": "vendor-bin/psalm/vendor/bin/psalm --threads=4 --shepherd",
"test": [
"@test-cs",
"@test-unit",
"@test-psalm"
],
"infection": [
"mkdir -p build/logs/infection",
"tools/infection --threads=4 --coverage=build/logs --no-progress --skip-initial-tests"
],
"test-infection": [
"@test-unit",
"@infection"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
}
}
}