-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
122 lines (122 loc) · 4.19 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
{
"name": "dotkernel/frontend",
"type": "project",
"description": "DotKernel Frontend Application",
"license": "MIT",
"homepage": "https://github.com/dotkernel/frontend",
"keywords": [
"dotkernel",
"dotkernel frontend",
"mezzio",
"laminas",
"middleware"
],
"authors": [
{
"name": "DotKernel Team",
"email": "team@dotkernel.com"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dotkernel/*": true,
"laminas/laminas-component-installer": true,
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laminas": {
"component-whitelist": [
"laminas/laminas-httphandlerrunner"
]
},
"mezzio": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"mezzio/mezzio-fastroute",
"mezzio/mezzio-twigrenderer"
]
}
},
"require": {
"php": "~8.2.0 || ~8.3.0",
"ext-curl": "*",
"ext-gettext": "*",
"ext-json": "*",
"dotkernel/dot-authorization": "^3.4.1",
"dotkernel/dot-controller": "^3.4.3",
"dotkernel/dot-data-fixtures": "^1.1.3",
"dotkernel/dot-dependency-injection": "^1.0.0",
"dotkernel/dot-errorhandler": "^4.0.0",
"dotkernel/dot-flashmessenger": "^3.4.2",
"dotkernel/dot-mail": "~3.4 || ^4.1.1",
"dotkernel/dot-navigation": "^3.4.2",
"dotkernel/dot-rbac-guard": "^3.4.3",
"dotkernel/dot-response-header": "^3.2.3",
"dotkernel/dot-session": "^5.6.0",
"dotkernel/dot-twigrenderer": "^3.4.3",
"friendsofphp/proxy-manager-lts": "^1.0.16",
"laminas/laminas-component-installer": "^3.4.0",
"laminas/laminas-config-aggregator": "^1.14.0",
"laminas/laminas-form": "^3.19.1",
"laminas/laminas-i18n": "^2.26.0",
"mezzio/mezzio": "^3.18.0",
"mezzio/mezzio-authorization-rbac": "^1.7.0",
"mezzio/mezzio-cors": "^1.11.1",
"mezzio/mezzio-fastroute": "^3.11.0",
"ramsey/uuid-doctrine": "^2.1.0",
"roave/psr-container-doctrine": "^5.2.2"
},
"require-dev": {
"filp/whoops": "^2.15.4",
"laminas/laminas-coding-standard": "^2.5",
"laminas/laminas-development-mode": "^3.12.0",
"mezzio/mezzio-tooling": "^2.9.0",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^5.21.1",
"vincentlanglet/twig-cs-fixer": "^2.12"
},
"autoload": {
"psr-4": {
"Frontend\\App\\": "src/App/src/",
"Frontend\\Contact\\": "src/Contact/src/",
"Frontend\\Page\\": "src/Page/src/",
"Frontend\\Plugin\\": "src/Plugin/src/",
"Frontend\\User\\": "src/User/src/"
}
},
"autoload-dev": {
"psr-4": {
"FrontendTest\\Common\\": "test/Common",
"FrontendTest\\Functional\\": "test/Functional/",
"FrontendTest\\Unit\\": "test/Unit"
}
},
"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/",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"twig-cs-check": "vendor/bin/twig-cs-fixer lint --config=config/twig-cs-fixer.php",
"twig-cs-fix": "vendor/bin/twig-cs-fixer lint --config=config/twig-cs-fixer.php --fix"
}
}