-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
111 lines (111 loc) · 3.63 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
{
"name": "dotkernel/admin",
"description": "Dotkernel Admin Application",
"type": "project",
"license": "MIT",
"homepage": "https://github.com/dotkernel/admin",
"authors": [
{
"name": "DotKernel Team",
"email": "team@dotkernel.com"
}
],
"keywords": [
"dotkernel",
"mezzio",
"laminas"
],
"config": {
"sort-packages": true
},
"extra": {
"laminas": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute",
"mezzio/mezzio-twigrenderer"
]
}
},
"require": {
"php": "^7.4",
"doctrine/doctrine-module": "^4.0",
"dotkernel/dot-annotated-services": "^3.0",
"dotkernel/dot-authorization": "^3.0",
"dotkernel/dot-controller": "^3.0",
"dotkernel/dot-errorhandler": "^3.0",
"dotkernel/dot-event": "^3.0",
"dotkernel/dot-flashmessenger": "^3.0",
"dotkernel/dot-form": "^3.1",
"dotkernel/dot-helpers": "^3.0",
"dotkernel/dot-log": "^3.0",
"dotkernel/dot-mail": "^3.0",
"dotkernel/dot-navigation": "^3.0",
"dotkernel/dot-rbac": "^3.0",
"dotkernel/dot-rbac-guard": "^3.0",
"dotkernel/dot-session": "^4.0",
"dotkernel/dot-twigrenderer": "^3.0",
"laminas/laminas-authentication": "^2.7",
"laminas/laminas-component-installer": "^2.1.1",
"laminas/laminas-config-aggregator": "^1.0",
"laminas/laminas-dependency-plugin": "^1.0",
"laminas/laminas-diactoros": "^2.3",
"laminas/laminas-form": "^2.14",
"laminas/laminas-i18n": "^2.10",
"laminas/laminas-math": "^3.2",
"laminas/laminas-servicemanager": "^3.4",
"laminas/laminas-stdlib": "^3.2",
"mezzio/mezzio": "^3.2",
"mezzio/mezzio-authorization-rbac": "^1.0",
"mezzio/mezzio-fastroute": "^3.0",
"mezzio/mezzio-helpers": "^5.3",
"mezzio/mezzio-twigrenderer": "^2.2",
"ramsey/uuid-doctrine": "^1.6",
"roave/psr-container-doctrine": "^2.2",
"robmorgan/phinx": "^0.12",
"tuupola/cors-middleware": "^1.1",
"twig/extensions": "^1.5"
},
"require-dev": {
"laminas/laminas-development-mode": "^3.2",
"mezzio/mezzio-tooling": "^1.3",
"phpunit/phpunit": "^7.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5",
"filp/whoops": "^2.7"
},
"autoload": {
"psr-4": {
"Frontend\\App\\": "src/App/src/",
"Frontend\\Plugin\\": "src/Plugin/src/",
"Frontend\\User\\": "src/User/src/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"mezzio": "mezzio --ansi",
"check": [
"@cs-check",
"@test"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"serve": "php -S 0.0.0.0:8080 -t public/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}