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 1
/
composer.json
81 lines (81 loc) · 1.78 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
{
"name": "laminas-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/ZF-Commons/zfc-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]"
}
],
"require": {
"php": "^7.2",
"laminas/laminas-servicemanager": "^3.3",
"laminas/laminas-stdlib": "^3.1"
},
"require-dev": {
"malukenho/docheader": "^0.1.7",
"phpunit/phpunit": "^8.5.2",
"phpspec/prophecy": "^1.10",
"friendsofphp/php-cs-fixer": "^2.9.3",
"doctrine/common": "^2.4",
"satooshi/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": {
"LmcRbac\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LmcRbacTest\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
},
"laminas": {
"component": "LmcRbac",
"config-provider": "LmcRbac\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs",
"@test",
"@header"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit",
"header": "docheader check src test"
},
"abandoned": "lm-commons/lmc-rbac"
}