-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
88 lines (88 loc) · 2.3 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
87
88
{
"name": "antidot-fw/reactive-starter",
"description": "Reactive Antidot Framework Apllication Starter",
"type": "project",
"license": "BSD-2-Clause",
"authors": [
{
"name": "kpicaza"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/antidot-framework/psr11-monolog.git"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"antidot-fw/react-framework": "^1.1.1",
"antidot-fw/antidot-react-psr15": "^0.0.1",
"antidot-fw/fast-router-adapter": "^0.2.0",
"antidot-fw/cli": "^1.1.0",
"antidot-fw/container": "^0.1.0",
"antidot-fw/dev-tools": "^0.1.2",
"antidot-fw/event-dispatcher": "^2.0.3",
"antidot-fw/logger": "^1.1.0",
"antidot-fw/symfony-config-translator": "^1.1.0",
"antidot-fw/yaml-config-provider": "^0.1.0",
"webmozart/assert": "^1.7.0",
"wshafer/psr11-monolog": "^3.0.0|@dev"
},
"require-dev": {
"franzl/whoops-middleware": "^2.0",
"phpro/grumphp": "^1.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.0|^9.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4",
"symfony/var-dumper": "^5.2",
"laminas/laminas-component-installer": "^2.1.2"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test"
}
},
"scripts": {
"check-all": [
"@cs-check",
"@test",
"@inspect"
],
"cs-check": "phpcs src --colors",
"cs-fix": "phpcbf src --colors",
"inspect": "phpstan analyse src -l7 --ansi",
"test": "phpunit --colors=always",
"watch": "php-watcher public/index.php --arguments --delay 5 --ansi"
},
"config": {
"sort-packages": true
},
"extra": {
"laminas": {
"component-whitelist": [
"antidot-fw/framework",
"antidot-fw/logger",
"antidot-fw/dev-tools",
"antidot-fw/doctrine",
"antidot-fw/dbal-adapter",
"antidot-fw/tactician-adapter",
"antidot-fw/message-queue",
"antidot-fw/cli",
"antidot-fw/fast-router-adapter",
"antidot-fw/event-dispatcher",
"antidot-fw/symfony-config-translator",
"wshafer/psr11-monolog",
"antidot-fw/antidot-react-http",
"antidot-fw/antidot-react-psr15"
]
}
}
}