This repository has been archived by the owner on Feb 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
69 lines (69 loc) · 2.14 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": "laminas-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.2",
"laminas/laminas-config": "^3.1",
"laminas/laminas-eventmanager": "^3.0",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-servicemanager": "^3.0.3",
"zfr/rbac": "~1.2",
"laminas/laminas-dependency-plugin": "^1.0"
},
"require-dev": {
"laminas/laminas-authentication": "~2.2",
"laminas/laminas-developer-tools": "~1.1",
"laminas/laminas-log": "~2.2",
"laminas/laminas-http": "~2.2",
"laminas/laminas-i18n": "~2.7.3",
"laminas/laminas-serializer": "~2.2",
"laminas/laminas-view": "~2.2",
"phpunit/phpunit": "8.5.8",
"squizlabs/php_codesniffer": "3.5.5",
"php-coveralls/php-coveralls": "^2.2",
"doctrine/doctrine-orm-module": "2.1.7"
},
"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"
},
"autoload": {
"psr-4": {
"LmcRbacMvc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LmcRbacMvcTest\\": "tests"
}
},
"scripts": {
"test": "phpunit --coverage-clover ./build/logs/clover.xml --exclude-group Functional"
},
"abandoned": "lm-commons/lmc-rbac-mvc"
}