-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.22 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
{
"name": "dab/phprbac",
"type": "library",
"description": "PHP-RBAC is the authorization library for PHP. It provides developers with NIST Level 2 Standard Role Based Access Control and more.",
"keywords": [
"rbac",
"owasp",
"security",
"permissions",
"roles"
],
"require": {
"php": ">=7",
"ext-PDO": "*",
"ext-sqlite3": "*",
"ext-mysqli": "*"
},
"homepage": "http://phprbac.net/",
"license": "Apache-2.0",
"authors": [
{
"name": "AbiusX",
"email": "me@abiusx.com",
"homepage": "http://abiusx.com/",
"role": "Lead Developer"
},
{
"name": "Jesse Burns",
"email": "jesse.burns@alliancecms.com",
"homepage": "http://www.jbwebware.com",
"role": "Developer"
},
{
"name": "Denys Bushulyak",
"email": "apollo128@gmail.com",
"role": "Forker & improver"
}
],
"autoload": {
"psr-0": {
"PhpRbac": "PhpRbac/src"
}
},
"repositories": [
{
"url": "git://github.com/Denys-Bushulyak/PhpRbac"
}
]
}