This repository has been archived by the owner on Apr 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
57 lines (57 loc) · 1.54 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
{
"name": "nicolasbeauvais/laravel-botscout",
"description": "botscout.com protection for laravel",
"keywords": [
"botscout",
"laravel",
"bot",
"protection"
],
"homepage": "https://github.com/nicolasbeauvais/laravel-botscout",
"license": "MIT",
"authors": [
{
"name": "Nicolas Beauvais",
"email": "nicolasbeauvais1@gmail.com",
"homepage": "http://nicolas-beauvais.com",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"illuminate/contracts": "~5.1.0|~5.2.0|~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/support": "~5.1.0|~5.2.0|~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"nicolasbeauvais/botscout-client": "^1.0"
},
"require-dev": {
"orchestra/testbench": "~3.5.0",
"phpunit/phpunit": "^6.0",
"mockery/mockery": "^0.9.8"
},
"autoload": {
"psr-4": {
"NicolasBeauvais\\LaravelBotScout\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NicolasBeauvais\\LaravelBotScout\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"NicolasBeauvais\\LaravelBotScout\\BotScoutServiceProvider"
],
"aliases": {
"BotScout": "NicolasBeauvais\\LaravelBotScout\\BotScoutFacade"
}
}
}
}