-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 939 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
{
"name": "ublaboo/simple-http-auth",
"type": "library",
"description": "Extension for Nette Framework: set user, password and presenters names to secure and they will be secured via simple http authentification",
"keywords": ["security", "simple-http-auth", "extension"],
"homepage": "https://ublaboo.org/simple-http-auth",
"license": ["MIT"],
"support": {
"issues": "https://github.com/ublaboo/simple-http-auth/issues"
},
"authors": [
{
"name": "Pavel Janda",
"homepage": "http://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Ublaboo\\SimpleHttpAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ublaboo\\SimpleHttpAuth\\Tests\\": "tests"
}
},
"require": {
"nette/di" : "^3.0",
"nette/application" : "^3.0",
"nette/http" : "^3.0"
},
"require-dev": {
"nette/tester" : "~2.2.0",
"mockery/mockery" : "dev-master"
},
"minimum-stability": "dev"
}