-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.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
{
"name": "lm-commons/lmc-admin",
"description": "A generic Admin module for Laminas MVC.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"laminas"
],
"homepage": "https://github.com/juriansluiman/LmcAdmin",
"authors": [
{
"name": "Jurian Sluiman ",
"email": "[email protected]",
"homepage": "http://juriansluiman.nl/en/"
},
{
"name": "Martin Shwalbe",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"laminas/laminas-modulemanager": "^2.5",
"laminas/laminas-loader": "^2.6",
"laminas/laminas-eventmanager": "^3.0",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-navigation": "^2.10"
},
"suggest": {
"lm-commons/lmc-rbac-mvc": "Access control to protect LmcAdmin against unauthorized users"
},
"autoload": {
"psr-4": {
"LmcAdmin\\": "src/"
}
},
"extra": {
"lm": {
"component": "LmcAdmin",
"config-provider": [
"LmcAdmin\\ConfigProvider"
]
}
}
}