forked from LM-Commons/LmcAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.91 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
{
"name": "lm-commons/lmc-admin",
"description": "A generic Admin module for Laminas MVC.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"laminas"
],
"homepage": "https://lm-commons.github.io/LmcAdmin",
"authors": [
{
"name": "Eric Richer",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.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": {
"Lmc\\Admin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LmcTest\\Admin\\": "test/"
}
},
"extra": {
"laminas": {
"module": "Lmc\\Admin",
"config-provider": [
"LmcAdmin\\ConfigProvider"
]
}
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.5",
"laminas/laminas-test": "^4.10",
"phpunit/phpunit": "^10.5.30 || ^11.3.0",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.25"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover ./build/logs/clover.xml",
"test-coverage-html": "phpunit --colors=always --coverage-html ./build/html",
"static-analysis": "psalm --shepherd --stats"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}