forked from Carrooi/Nette-Security
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 748 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 748 Bytes
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
{
"name": "carrooi/security",
"type": "library",
"description": "Modular security system for Nette framework",
"keywords": ["carrooi", "security", "authorization", "nette"],
"license": ["MIT"],
"authors": [
{
"name": "David Kudera",
"homepage": "http://davidkudera.com",
"email": "kudera.d@gmail.com"
}
],
"require": {
"nette/utils": "~2.2",
"nette/di": "~2.2",
"nette/security": "~2.2",
"nette/application": "~2.2"
},
"require-dev": {
"nette/tester": "~1.3",
"nette/bootstrap": "~2.2",
"nette/mail": "~2.2",
"nette/safe-stream": "~2.2",
"tracy/tracy": "~2.2",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-4": {
"Carrooi\\Security\\": "src"
},
"classmap": [
"src/exceptions.php"
]
}
}