-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
43 lines (43 loc) · 1.21 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
{
"name": "skydiver/laravel-route-blocker",
"description": "Block routes by IP",
"keywords": ["php", "laravel", "routes", "block", "security"],
"homepage": "https://github.com/skydiver/laravel-route-blocker",
"license": "MIT",
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^5.3",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Skydiver\\LaravelRouteBlocker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Skydiver\\LaravelRouteBlocker\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "./vendor/bin/phpcs --standard=PSR2 -v ./src",
"phpcbf": "./vendor/bin/phpcbf --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 -w -v ./src"
},
"extra": {
"laravel": {
"providers": [
"Skydiver\\LaravelRouteBlocker\\LaravelRouteBlockerServiceProvider"
]
}
},
"authors": [
{
"name": "Martín M.",
"homepage": "http://flydev.com",
"role": "Developer"
}
]
}