-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
72 lines (72 loc) · 2.41 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
68
69
70
71
72
{
"name": "trinet/mezzio-test",
"description": "Testing helpers for mezzio projects",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.2",
"fig/http-message-util": "^1.1",
"laminas/laminas-config-aggregator": "^1.2",
"laminas/laminas-diactoros": "^2.2 || ^3.5",
"laminas/laminas-stratigility": "^3.2",
"mezzio/mezzio": "^3.2",
"mezzio/mezzio-router": "^3.1",
"psr/container": "^1.0 || ^2.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"bnf/phpstan-psr-container": "^1.1",
"eventjet/coding-standard": "^3.18",
"infection/infection": "^0.27.11",
"laminas/laminas-servicemanager": "^4.0",
"maglnet/composer-require-checker": "^4.14",
"mezzio/mezzio-fastroute": "^3.12",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.19",
"vimeo/psalm": "^5.26"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Trinet\\MezzioTest\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Trinet\\Test\\Functional\\MezzioTest\\": "tests/functional",
"Trinet\\Test\\Unit\\MezzioTest\\": "tests/unit"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@check-deps",
"@cs-check",
"@psalm",
"@phpstan",
"@phpunit",
"@infection"
],
"check-deps": "composer-require-checker",
"cs-check": "php-cs-fixer fix --dry-run",
"cs-fix": "php-cs-fixer fix",
"infection": "infection -jmax",
"infection-diff": "infection -jmax --git-diff-lines --min-msi=100 --min-covered-msi=100 --ignore-msi-with-no-mutations",
"infection-xdebug": "infection --initial-tests-php-options='-d zend_extension=xdebug.so'",
"phpstan": "phpstan analyze",
"phpunit": "phpunit",
"psalm": "psalm"
}
}