-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.18 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
{
"name": "jaspaul/safe-link-validator",
"description": "A Laravel validation rule for testing a link against the google safe browsing api",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jaspaul Bola",
"email": "[email protected]"
}
],
"require": {
"google/apiclient": "^2.2",
"google/apiclient-services": "^0.48.0",
"guzzlehttp/guzzle": "^6.3",
"illuminate/config": "^5.6",
"illuminate/support": "^5.6",
"illuminate/translation": "^5.6"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"mockery/mockery": "^1.0",
"squizlabs/php_codesniffer": "^3.2",
"satooshi/php-coveralls": "^2.0",
"orchestra/testbench": "^3.6"
},
"autoload": {
"psr-4": {
"Jaspaul\\SafeLinkValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Jaspaul\\SafeLinkValidator\\ServiceProvider"
]
}
}
}