-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (49 loc) · 897 Bytes
/
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
{
"name": "srigi/ipub-security",
"description": "ACL permissions setter & checker for Nette Framework",
"keywords": [
"nette",
"acl",
"annotation",
"annotations",
"permission",
"permissions",
"library"
],
"type": "library",
"homepage": "https://github.com/srigi/ipub-security",
"license": [
"BSD-3-Clause",
"GPL-2.0",
"GPL-3.0"
],
"authors": [
{
"name": "Igor Hlina",
"homepage": "http://www.srigi.sk/"
},
{
"name": "iPublikuj:cms",
"email": "[email protected]",
"homepage": "http://www.ipublikuj.eu/"
}
],
"require": {
"php": ">=5.4",
"nette/application": "~2.2",
"nette/bootstrap": "~2.2",
"nette/di": "~2.2",
"nette/utils": "~2.2",
"nette/security": "~2.2",
"latte/latte": "~2.2"
},
"require-dev": {
"nette/tester": "~1.6",
"tracy/tracy": "~2.2"
},
"autoload": {
"psr-0": {
"IPub\\Security\\": "src/"
}
}
}