forked from LM-Commons/LmcRbac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
97 lines (97 loc) · 2.3 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
{
"name": "lm-commons/lmc-rbac",
"description": "Laminas Module that provides a layer of features of Laminas\\Permissions\\Rbac",
"type": "library",
"license": "MIT",
"keywords": [
"module",
"laminas",
"rbac",
"permissions"
],
"homepage": "http://www.github.com/LM-Commons/lmc-rbac",
"authors": [
{
"name": "Kyle Spraggs",
"email": "[email protected]",
"homepage": "http://www.spiffyjr.me/"
},
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
},
{
"name": "Jean-Marie Leroux",
"email": "[email protected]"
},
{
"name": "Florent Blaison",
"email": "[email protected]"
},
{
"name": "Bas Kamer",
"email": "[email protected]"
},
{
"name": "Eric Richer",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"laminas/laminas-permissions-rbac": "^3.1",
"laminas/laminas-servicemanager": "^3.15",
"laminas/laminas-stdlib": "^3.1",
"doctrine/persistence": "^2.0 || ^3.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^3.0",
"phpunit/phpunit": "^10.0 || ^11.0",
"phpspec/prophecy": "^1.10",
"phpspec/prophecy-phpunit": "^2.0",
"doctrine/orm": "^3.0",
"symfony/cache": "^6.3",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.26"
},
"autoload": {
"psr-4": {
"Lmc\\Rbac\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LmcTest\\Rbac\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
},
"laminas": {
"component": "Lmc\\Rbac",
"config-provider": "Lmc\\Rbac\\ConfigProvider"
}
},
"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
},
"platform": {
"php": "8.1.99"
}
}
}