-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
122 lines (122 loc) · 4.38 KB
/
composer.json
File metadata and controls
122 lines (122 loc) · 4.38 KB
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/admin",
"type": "project",
"description": "Dotkernel Admin Application",
"license": "MIT",
"homepage": "https://github.com/dotkernel/admin",
"keywords": [
"dotkernel",
"mezzio",
"laminas",
"admin panel",
"Dotkernel Backend"
],
"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
},
"process-timeout": 0
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"dotkernel/dot-cache": "^4.4.0",
"dotkernel/dot-cli": "^3.10.0",
"dotkernel/dot-data-fixtures": "^1.5.0",
"dotkernel/dot-dependency-injection": "^1.3.0",
"dotkernel/dot-errorhandler": "^4.0.2",
"dotkernel/dot-flashmessenger": "^3.7.0",
"dotkernel/dot-geoip": "^3.10.1",
"dotkernel/dot-helpers": "^3.9.0",
"dotkernel/dot-mail": "^5.1.6",
"dotkernel/dot-navigation": "^3.6.0",
"dotkernel/dot-rbac-guard": "^3.7.0",
"dotkernel/dot-router": "^1.1.0",
"dotkernel/dot-session": "^5.8.0",
"dotkernel/dot-twigrenderer": "^3.7.0",
"friendsofphp/proxy-manager-lts": "^1.0.19",
"laminas/laminas-component-installer": "^3.7.0",
"laminas/laminas-config-aggregator": "^1.19.0",
"mezzio/mezzio": "^3.26.0",
"mezzio/mezzio-authentication-oauth2": "^2.13.0",
"mezzio/mezzio-authorization-rbac": "^1.10.0",
"mezzio/mezzio-cors": "^1.15.0",
"mezzio/mezzio-fastroute": "^3.14.0",
"ramsey/uuid": "^4.9.1",
"ramsey/uuid-doctrine": "^2.1.0",
"roave/psr-container-doctrine": "^5.2.2 || ^6.0.0",
"symfony/var-exporter": "^6.4 || ^7.4"
},
"require-dev": {
"dotkernel/dot-maker": "^2.0.0",
"filp/whoops": "^2.18.4",
"laminas/laminas-coding-standard": "^3.1.0",
"laminas/laminas-development-mode": "^3.15.0",
"phpstan/phpstan": "^2.1.32",
"phpstan/phpstan-doctrine": "^2.0.11",
"phpstan/phpstan-phpunit": "^2.0.8",
"phpunit/phpunit": "^10.5.58",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^7.4.0",
"vincentlanglet/twig-cs-fixer": "^3.11.0"
},
"autoload": {
"psr-4": {
"Admin\\Admin\\": "src/Admin/src/",
"Admin\\App\\": "src/App/src/",
"Admin\\Dashboard\\": "src/Dashboard/src/",
"Admin\\Page\\": "src/Page/src/",
"Admin\\Setting\\": "src/Setting/src/",
"Admin\\User\\": "src/User/src/",
"Core\\Admin\\": "src/Core/src/Admin/src",
"Core\\App\\": "src/Core/src/App/src",
"Core\\Security\\": "src/Core/src/Security/src",
"Core\\Setting\\": "src/Core/src/Setting/src",
"Core\\User\\": "src/Core/src/User/src"
}
},
"autoload-dev": {
"psr-4": {
"AdminTest\\Common\\": "test/Common",
"AdminTest\\Functional\\": "test/Functional/",
"AdminTest\\Unit\\": "test/Unit"
}
},
"conflict": {
"dotkernel/dot-maker": "<2.0"
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"post-update-cmd": [
"php bin/composer-post-install-script.php"
],
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"check": [
"@cs-check",
"@test",
"@static-analysis"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"make": "dot-maker",
"serve": "php -S 0.0.0.0:8080 -t public/",
"static-analysis": "phpstan analyse --memory-limit 1G",
"test": "phpunit --colors=always",
"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"
}
}