This repository was archived by the owner on Dec 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.99 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
{
"name": "selami/skeleton-hexagonal-middleware",
"description": "Selami Skeleton App",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Mehmet Korkmaz",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Web\\Application\\Controller\\": "src/Infrastructure/Ui/Web/Middleware/Application/Controller",
"Web\\Authentication\\Controller\\": "src/Infrastructure/Ui/Web/Middleware/Authentication/Controller",
"Web\\Middleware\\": "src/Infrastructure/Ui/Web/Middleware",
"Web\\Factory\\": "src/Infrastructure/Ui/Factory",
"Console\\Command\\": "src/Infrastructure/Ui/Console/Command"
}
},
"require": {
"container-interop/container-interop": "^1.2",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.1",
"selami/foundation": "^0.13",
"selami/router": "^1.1",
"selami/views": "0.9",
"zendframework/zend-config": "^3.2",
"zendframework/zend-diactoros": "^2.1",
"zendframework/zend-servicemanager": "^3.4",
"zendframework/zend-stdlib": "^3.2",
"zendframework/zend-stratigility": "^3.0",
"zendframework/zend-httphandlerrunner": "^1.0",
"symfony/http-foundation": "^4.2",
"twig/twig": "^2.6",
"twig/extensions": "^1.5",
"vlucas/phpdotenv": "^2.5",
"selami/console": "^1.0",
"symfony/console": "^4.2",
"symfony/process": "^4.2",
"prooph/common": "^4.3",
"prooph/service-bus": "^6.2",
"react/promise": "^2.7"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"codeception/codeception": "^2.5",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.4",
"phpstan/phpstan": "^0.10.6",
"filp/whoops": "^2.3",
"middlewares/whoops": "^1.2"
},
"config": {
"preferred-install": {
"*": "dist"
},
"optimize-autoloader": true
},
"scripts": {
"post-update-cmd": [
"composer dump-autoload -a"
],
"post-create-project-cmd": [
"cp config/autoload/web/view.local.php.dist config/autoload/web/view.local.php",
"echo 'SELAMI_ENVIRONMENT=dev' >> .env",
"composer dump-autoload -a"
],
"unit-tests": "vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml --configuration ./phpunit.xml",
"phpstan": "vendor/bin/phpstan analyse -l 7 src test/resources/app",
"phpstan-test": "vendor/bin/phpstan analyse -l 7 -c phpstan.test.neon test/SelamiTests",
"phpcs": "vendor/bin/phpcs --standard=PSR2 src test test/resources/app/Contents",
"phpcbf": "vendor/bin/phpcbf --standard=PSR2 src test test/resources/app/Contents"
}
}