-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
73 lines (73 loc) · 2.49 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
73
{
"name": "trinet/mezzio-test",
"description": "Testing helpers for mezzio projects",
"license": "MIT",
"type": "library",
"require": {
"php": "^7.4 || ^8.0",
"fig/http-message-util": "^1.1",
"laminas/laminas-config-aggregator": "^1.2",
"laminas/laminas-diactoros": "^2.2",
"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",
"thecodingmachine/safe": "^1.0 || ^2.0"
},
"require-dev": {
"bnf/phpstan-psr-container": "^1.0",
"eventjet/coding-standard": "^3.1",
"infection/infection": "^0.26.0",
"laminas/laminas-servicemanager": "^3.4",
"maglnet/composer-require-checker": "^3.3 || ^4.0",
"mezzio/mezzio-fastroute": "^3.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"vimeo/psalm": "^4.0"
},
"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,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@check-deps",
"@cs-check",
"@psalm",
"@phpstan",
"@phpunit",
"@infection"
],
"check-deps": "vendor/bin/composer-require-checker",
"cs-check": "vendor/bin/phpcs --config-set php_version 70423",
"cs-fix": "vendor/bin/phpcbf",
"infection": "vendor/bin/infection --threads=4",
"infection-xdebug": "@composer run --timeout=0 infection -- --initial-tests-php-options='-d zend_extension=xdebug.so'",
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm"
}
}