-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.45 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.45 KB
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
74
75
{
"name": "eventjet/asset-manager",
"description": "Asset manager middleware",
"license": "MIT",
"type": "library",
"require": {
"php": ">=8.1",
"fig/http-message-util": "^1.1",
"psr/container": "^1.1 || ^2.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"bnf/phpstan-psr-container": "^1.0",
"eventjet/coding-standard": "^3.7",
"infection/infection": "^0.27",
"laminas/laminas-diactoros": "^2.0 || ^3.0",
"maglnet/composer-require-checker": "^3.3 || ^4.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.6",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.2",
"phpunit/phpunit": "^10.3",
"psalm/plugin-phpunit": "^0.18",
"vimeo/psalm": "^5.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Eventjet\\AssetManager\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Eventjet\\Test\\Functional\\AssetManager\\": "tests/functional",
"Eventjet\\Test\\Unit\\AssetManager\\": "tests/unit"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"laminas": {
"config-provider": "Eventjet\\AssetManager\\ConfigProvider",
"module": "Eventjet\\AssetManager"
}
},
"scripts": {
"check": [
"@check-deps",
"@cs-check",
"@psalm",
"@phpstan",
"@phpunit",
"@infection"
],
"check-deps": "composer-require-checker",
"cs-check": "php-cs-fixer fix --dry-run",
"cs-check-diff": "php-cs-fixer fix --dry-run --diff",
"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 analyse",
"phpunit": "phpunit",
"psalm": "psalm"
}
}