-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
86 lines (86 loc) · 2.27 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "antidot-fw/framework",
"description": "Anti.Framework library",
"keywords": [
"framework",
"psr-3",
"psr-7",
"psr-11",
"psr-14",
"psr-15",
"psr-18"
],
"type": "library",
"license": "BSD-2-Clause",
"authors": [
{
"name": "kpicaza"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"nikic/fast-route": "^1.3",
"psr/container": "^2.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0",
"react/async": "^4.1",
"react/child-process": "^0.6.4",
"react/http": "^1.5"
},
"require-dev": {
"filp/whoops": "^2.3",
"franzl/whoops-middleware": "^1.1 || ^2.0",
"icanhazstring/composer-unused": "^0.8.9",
"nyholm/psr7": "^1.4",
"nyholm/psr7-server": "^1.0",
"phpro/grumphp": "^1.0",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.0",
"roave/infection-static-analysis-plugin": "^1.32",
"squizlabs/php_codesniffer": "^3.4",
"symfony/var-dumper": "^5.0",
"vimeo/psalm": "^4.0.0"
},
"autoload": {
"psr-4": {
"Antidot\\Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Antidot\\Test\\Framework\\": "test/"
}
},
"scripts": {
"check-all": [
"@cs-check",
"@unused",
"@test",
"@inspect",
"@psalm",
"@infection"
],
"cs-check": "phpcs src --colors",
"cs-fix": "phpcbf src --colors",
"infection": "XDEBUG_MODE=coverage roave-infection-static-analysis-plugin -j4",
"inspect": "phpstan analyse src -l9 --ansi",
"psalm": "psalm",
"test": "phpunit --colors=always",
"unused": "composer-unused"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpro/grumphp": true
}
},
"extra": {
"laminas": {
"config-provider": "Antidot\\Framework\\Config\\ConfigProvider"
}
},
"suggest": {
"franzl/whoops-middleware": "Pretty error handling for development."
}
}