-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.71 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
{
"name": "iter8/collections",
"license": "MIT",
"type": "library",
"keywords": [],
"require": {
"php": "^8.1",
"ramsey/collection": "^2.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^10.0",
"psalm/plugin-phpunit": "^0.18",
"squizlabs/php_codesniffer": "^3.5",
"symfony/var-dumper": "^6.4 | ^7.0",
"vimeo/psalm": "^5.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Iter8\\Collections\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Iter8\\Collections\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"dealerdirect/phpcodesniffer-composer-installer": false
},
"sort-packages": true
},
"scripts": {
"csf": "php-cs-fixer fix",
"csf-dry": "@csf --dry-run -v --diff",
"phpstan": "phpstan analyze",
"phpstan-dev": "@phpstan --debug",
"phpstan-max": "@phpstan --level=max",
"phpunit": "phpunit",
"phpunit-coverage": "@phpunit --coverage-html=build/coverage",
"psalm": "psalm",
"psalm-dev": "@psalm --show-info=true --find-unused-psalm-suppress --no-cache --stats"
}
}