-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
60 lines (60 loc) · 1.91 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 the Enlightn 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": {
"php": ">=7.4|^8.0",
"guzzlehttp/guzzle": "^7.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/bus": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/mail": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/queue": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/notifications": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"ext-json": "*",
"enlightn/security-checker": "^1.3|^2.0"
},
"require-dev": {
"laravel/slack-notification-channel": "^1.0|^2.0|^3.2",
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0|^10.5",
"squizlabs/php_codesniffer": "~2.3|^3.6",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"mockery/mockery": "^1.2"
},
"suggest": {
"laravel/slack-notification-channel": "If you need slack notifications, you must install this package."
},
"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"
]
}
}
}