-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
90 lines (90 loc) · 2.58 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
{
"name": "lm-commons/lmc-rbac-mvc",
"description": "Laminas Framework MVC Module that provides a layer of features of Laminas\\Permissions\\Rbac",
"type": "library",
"license": "MIT",
"keywords": [
"module",
"laminas",
"rbac",
"permissions"
],
"homepage": "https://www.github.com/Lm-Commons/LmcRbacMvc",
"authors": [
{
"name": "Kyle Spraggs",
"email": "theman@spiffyjr.me",
"homepage": "http://www.spiffyjr.me/"
},
{
"name": "Micha\u00ebl Gallego",
"email": "mic.gallego@gmail.com",
"homepage": "http://www.michaelgallego.fr"
},
{
"name": "Jean-Marie Leroux",
"email": "jmleroux.pro@gmail.com"
},
{
"name": "Eric Richer",
"email": "eric.richer@vistoconsulting.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-config": "^3.1",
"laminas/laminas-eventmanager": "^3.0",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-servicemanager": "^3.0",
"lm-commons/lmc-rbac": "^2.0"
},
"require-dev": {
"laminas/laminas-authentication": "^2.2",
"laminas/laminas-coding-standard": "^2.5.0",
"phpunit/phpunit": "10.5.38",
"phpspec/prophecy-phpunit": "^2.0",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.25"
},
"suggest": {
"lm-commons/lmc-rbac-mvc-devtools": "if you want to collect and show information about roles and guards in Laminas Developer Tools"
},
"autoload": {
"psr-4": {
"Lmc\\Rbac\\Mvc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LmcTest\\Rbac\\Mvc\\": "tests"
}
},
"extra": {
"laminas": {
"module": "Lmc\\Rbac\\Mvc",
"config-provider": "Lmc\\Rbac\\Mvc\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover ./build/logs/clover.xml",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test-coverage-html": "phpunit --coverage-html ./build/html",
"static-analysis": "psalm --shepherd --stats"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.1.99"
}
}
}