forked from jorijn/laravel-security-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.67 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
60
{
"name": "jorijn/laravel-security-checker",
"description": "Added Laravel functionality to SensioLabs Security Checker. Adds a command to check for, and optionally emails you, vulnerabilities when they affect you.",
"license": "MIT",
"keywords": [
"laravel",
"security",
"composer",
"dependencies"
],
"authors": [
{
"name": "Jorijn Schrijvershof",
"email": "[email protected]"
}
],
"require": {
"sensiolabs/security-checker": "^5.0.0",
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.3",
"illuminate/support": "5.5.x|5.6.x|5.7.x|5.8.x",
"illuminate/console": "5.5.x|5.6.x|5.7.x|5.8.x",
"illuminate/mail": "5.5.x|5.6.x|5.7.x|5.8.x",
"laravel/framework": "5.5.x|5.6.x|5.7.x|5.8.x",
"ext-json": "*"
},
"require-dev": {
"illuminate/config": "5.5.x|5.6.x|5.7.x|5.8.x",
"illuminate/view": "5.5.x|5.6.x|5.7.x|5.8.x",
"phpunit/phpunit": "~6.0",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3",
"orchestra/testbench": "3.5.x|3.6.x|3.7.x|3.8.x",
"mockery/mockery": "^1.2"
},
"suggest": {
"laravel/slack-notification-channel": "In Laravel 5.8 they extracted the Slack notification channel into a first-party package. If you run 5.8, you will need to install this package too."
},
"autoload": {
"psr-4": {
"Jorijn\\LaravelSecurityChecker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jorijn\\LaravelSecurityChecker\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"cs": "phpcs --standard=psr2 src/"
},
"extra": {
"laravel": {
"providers": [
"Jorijn\\LaravelSecurityChecker\\ServiceProvider"
]
}
}
}