-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
55 lines (55 loc) · 1.28 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
{
"name": "snipe/safebrowsing",
"type": "library",
"description": "Laravel package to allow you to easily integrate the Google Safebrowing API into your application.",
"keywords": [
"snipe",
"Safebrowsing",
"Google",
"malware",
"RBL",
"URL"
],
"homepage": "https://github.com/snipe/safebrowsing",
"license": "GPL-3.0",
"authors": [
{
"name": "A. Gianotto",
"email": "[email protected]",
"homepage": "http://snipe.net",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.3"
},
"require-dev": {
"phpunit/phpunit" : "5.7.15"
},
"autoload": {
"psr-4": {
"Snipe\\Safebrowsing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Snipe\\Safebrowsing\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.0-dev"
},
"laravel": {
"providers": [
"Snipe\\Safebrowsing\\SafebrowsingServiceProvider"
],
"aliases": {
"Safebrowsing": "Snipe\\Safebrowsing\\Facade\\Safebrowsing"
}
}
}
}