-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
76 lines (76 loc) · 1.81 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
{
"name": "antidot-fw/antidot-framework-starter",
"type": "project",
"license": "BSD-2-Clause",
"authors": [
{
"name": "kpicaza"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"ext-json": "*",
"antidot-fw/cli": "^2.0",
"antidot-fw/container": "^2.0",
"antidot-fw/event-dispatcher": "^2.1",
"antidot-fw/framework": "^2.0",
"antidot-fw/logger": "^2.0",
"antidot-fw/runtime": "^2.0",
"laminas/laminas-config-aggregator": "^1.13"
},
"require-dev": {
"antidot-fw/dev-tools": "^2.0",
"franzl/whoops-middleware": "^2.0",
"laminas/laminas-component-installer": "^3.2",
"phpro/grumphp": "~1.0",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.2",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4",
"symfony/var-dumper": "^5.1 || ^6.0"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "test"
}
},
"scripts": {
"check-all": [
"@cs-check",
"@test",
"@inspect"
],
"dev-server": "php -S ${APP_HOST:-0.0.0.0:3000} -t public",
"cs-check": "phpcs src --colors",
"cs-fix": "phpcbf src --colors",
"inspect": "phpstan analyse src -l7 --ansi",
"test": "phpunit --colors=always"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"laminas/laminas-component-installer": true,
"phpro/grumphp": true,
"symfony/runtime": true
}
},
"extra": {
"laminas": {
"component-whitelist": [
"antidot-fw/framework",
"antidot-fw/logger",
"antidot-fw/dbal-adapter",
"antidot-fw/doctrine",
"antidot-fw/message-queue",
"antidot-fw/no-floc-middleware",
"antidot-fw/cli",
"antidot-fw/event-dispatcher"
]
}
}
}