forked from LM-Commons/LmcRbacMvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.37 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
{
"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": "http://www.github.com/Laminas-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"
}
],
"require": {
"php": "^7.4 || ^8.0",
"laminas/laminas-config": "^3.1",
"laminas/laminas-eventmanager": "^3.0",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-servicemanager": "^3.0",
"zfr/rbac": "~1.2",
"doctrine/persistence": "^2.1"
},
"require-dev": {
"laminas/laminas-authentication": "^2.2",
"laminas/laminas-developer-tools": "^2.1",
"laminas/laminas-log": "^2.2",
"laminas/laminas-http": "^2.2",
"laminas/laminas-i18n": "^2.7",
"laminas/laminas-serializer": "^2.2",
"laminas/laminas-view": "^2.12",
"phpunit/phpunit": "9.5.21",
"squizlabs/php_codesniffer": "^3.5.5",
"php-coveralls/php-coveralls": "^2.2",
"phpspec/prophecy-phpunit": "^2.0",
"doctrine/doctrine-orm-module": "^4.1"
},
"suggest": {
"laminas/laminas-developer-tools": "if you want to show information about the roles",
"doctrine/doctrine-module": "if you want to use Doctrine role provider"
},
"replace": {
"laminas-commons/lmc-rbac-mvc": "3.0.1"
},
"autoload": {
"psr-4": {
"LmcRbacMvc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LmcRbacMvcTest\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover ./build/logs/clover.xml --exclude-group Functional",
"upload-coverage": "php-coveralls -v",
"cs-check": "phpcs -n --standard=PSR2 ./src/",
"cs-fix": "phpcbf ./src/"
}
}