-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.69 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": "rattfieldnz/safe-urls",
"description": "A laravel package to check URLs with Google's Safe Browsing API.",
"license": "MIT",
"authors": [
{
"name": "Robert Attfield",
"email": "[email protected]",
"homepage": "https://github.com/rattfieldnz/"
}
],
"homepage": "https://github.com/rattfieldnz/safe-urls",
"keywords": ["Laravel", "safe-urls", "Google", "Safe Browsing API"],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"illuminate/support": "~5",
"curl/curl": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "~7.5",
"mockery/mockery": "^1.2",
"sempro/phpunit-pretty-print": "^1.0",
"barryvdh/laravel-ide-helper": "2.6.*",
"squizlabs/php_codesniffer": "^3.4",
"fzaninotto/faker": "~1.8",
"php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1",
"phpunit/php-code-coverage": "~6.1",
"mihaeu/test-generator": "^1.0",
"orchestra/testbench": "^3.8",
"phpspec/prophecy": "^1.8"
},
"autoload": {
"psr-4": {
"RattfieldNz\\SafeUrls\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RattfieldNz\\SafeUrls\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"RattfieldNz\\SafeUrls\\SafeUrlsServiceProvider"
],
"aliases": {
"SafeUrls": "RattfieldNz\\SafeUrls\\Facades\\SafeUrlsFacade"
}
}
},
"scripts": {
"pre-install-cmd": [
"chmod u+rwx run_phpunit"
]
}
}