-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
146 lines (146 loc) · 5.1 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "reformo/hexagonal-cqrs-skeleton",
"description": "Hexagonal (Ports and Adapters) Architecture and CQRS Ready Zend Expressive Skeleton!",
"type": "project",
"homepage": "https://github.com/reformo/hexagonal-cqrs-skeleton",
"license": "MIT",
"keywords": [
"skeleton",
"middleware",
"psr",
"psr-7",
"psr-11",
"psr-15",
"zf",
"zendframework",
"mezzio",
"cqrs",
"hexagonal",
"tactician",
"commandbus",
"doctrine"
],
"config": {
"sort-packages": true
},
"extra": {
"zf": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute",
"mezzio/mezzio-twigrenderer"
]
}
},
"support": {
"issues": "https://github.com/reformo/hexagonal-cqrs-skeleton/issues",
"source": "https://github.com/reformo/hexagonal-cqrs-skeleton",
"rss": "https://github.com/reformo/hexagonal-cqrs-skeleton/releases.atom"
},
"require": {
"php": "^7.3",
"ext-gettext": "*",
"ext-intl": "*",
"ext-json": "*",
"doctrine/collections": "^1.6",
"doctrine/dbal": "^2.9",
"gettext/gettext": "^5.1",
"league/tactician": "~2.0-rc1",
"ocramius/proxy-manager": "^2.2",
"ramsey/uuid": "^3.8",
"selami/console": "^1.0",
"selami/stdlib": "^1.8",
"twig/extensions": "^1.5",
"vlucas/phpdotenv": "^3.6",
"webmozart/assert": "^1.5",
"laminas/laminas-component-installer": "^2.1.1",
"laminas/laminas-config-aggregator": "^1.0",
"laminas/laminas-diactoros": "^1.7.1 || ^2.0",
"mezzio/mezzio": "^3.0.1",
"mezzio/mezzio-csrf": "^1.0",
"mezzio/mezzio-fastroute": "^3.0",
"mezzio/mezzio-helpers": "^5.0",
"mezzio/mezzio-session": "^1.3",
"mezzio/mezzio-session-ext": "^1.7",
"mezzio/mezzio-swoole": "^2.4",
"mezzio/mezzio-twigrenderer": "^2.0",
"mezzio/mezzio-problem-details": "^1.0",
"laminas/laminas-servicemanager": "^3.3",
"laminas/laminas-stdlib": "^3.1",
"laminas/laminas-dependency-plugin": "^1.0"
},
"require-dev": {
"behat/behat": "^3.5",
"doctrine/coding-standard": "^6.0",
"filp/whoops": "^2.1.12",
"phpunit/phpunit": "^7.0.1",
"roave/security-advisories": "dev-master",
"rskuipers/php-assumptions": "^0.8.0",
"squizlabs/php_codesniffer": "^3.5",
"swoole/ide-helper": "^4.4",
"mezzio/mezzio-tooling": "^1.0",
"laminas/laminas-development-mode": "^3.1"
},
"autoload": {
"psr-4": {
"Reformo\\Common\\": "src/Common/",
"Reformo\\Domain\\": "src/Domain/",
"Reformo\\Infrastructure\\": "src/Infrastructure/",
"Reformo\\FrontWeb\\": "src/Infrastructure/Ui/FrontWeb/src/",
"Reformo\\PrivateApi\\": "src/Infrastructure/Ui/PrivateApi/src/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable",
"cp .env.dist .env",
"cp config/autoload/doctrine.local.php.dist config/autoload/doctrine.local.php",
"cp config/autoload/mezzio-swoole.local.php.dist config/autoload/mezzio-swoole.local.php"
],
"post-install-cmd": [
"composer dumpautoload -o"
],
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"expressive": "expressive --ansi",
"generate-mo-files": "php bin/generate-mo-files.php",
"check": [
"@cs-check",
"@check-assumptions",
"@test"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"clear-route-cache": "php bin/clear-route-cache.php",
"clear-twig-cache": "php bin/clear-twig-cache.php",
"clear-cache-files": [
"@clear-config-cache",
"@clear-route-cache",
"@clear-twig-cache",
"@generate-mo-files"
],
"cs-check": "vendor/bin/phpcs --standard=Doctrine",
"cs-fix": "vendor/bin/phpcbf --standard=Doctrine",
"check-assumptions": "vendor/bin/phpa",
"serve-frontweb": "php -S 0.0.0.0:8080 -t src/Infrastructure/Ui/FrontWeb/public",
"serve-private-api": "php -S 0.0.0.0:8081 -t src/Infrastructure/Ui/PrivateApi/public",
"start-frontweb": [
"@clear-cache-files",
"@serve-frontweb"
],
"start-private-api": [
"@clear-cache-files",
"@serve-private-api"
],
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}