-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
33 lines (33 loc) · 921 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
{
"name": "davidepastore/slim-restrict-route",
"description": "A Slim middleware to restrict ip addresses that will access to your routes",
"keywords": ["slim","framework","middleware","ip", "address", "restriction", "restrict"],
"type": "library",
"authors": [
{
"name": "Davide Pastore",
"email": "pasdavide@gmail.com"
}
],
"require": {
"php": ">=5.5.0",
"akrabat/ip-address-middleware": "~0.4",
"respect/validation": "^1.0"
},
"require-dev": {
"slim/slim": "~3.0",
"phpunit/phpunit": "^4.0",
"scrutinizer/ocular": "~1.1"
},
"autoload": {
"psr-4": {
"DavidePastore\\Slim\\RestrictRoute\\": "src"
}
},
"license" : "GPL-2.0+",
"autoload-dev": {
"psr-4": {
"DavidePastore\\Slim\\RestrictRoute\\Tests\\": "tests"
}
}
}