-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
59 lines (59 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "mchev/banhammer",
"description": "Banhammer for Laravel allows you to ban any Model by key and by IP.",
"keywords": [
"mchev",
"laravel",
"bans-for-laravel",
"ban",
"bannable",
"ip",
"country"
],
"homepage": "https://github.com/mchev/banhammer",
"license": "MIT",
"authors": [
{
"name": "mchev",
"email": "martin@pegase.io",
"role": "Developer"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.5|^11.0"
},
"autoload": {
"psr-4": {
"Mchev\\Banhammer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mchev\\Banhammer\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": false,
"phpstan/extension-installer": false
}
},
"extra": {
"laravel": {
"providers": [
"Mchev\\Banhammer\\BanhammerServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}