Skip to content

Commit 3c0c77e

Browse files
Laravel 10.x Compatibility (#43)
* Bump dependencies for Laravel 10 * Update GitHub Actions for Laravel 10
1 parent 40b86a9 commit 3c0c77e

File tree

2 files changed

+58
-58
lines changed

2 files changed

+58
-58
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
php: [7.4, 8.0, 8.1]
14-
laravel: [6.*, 7.*, 8.*, 9.*]
14+
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
1515
exclude:
1616
# excludes unsupported combinations
1717
- php: 7.4

composer.json

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
11
{
2-
"name": "jorijn/laravel-security-checker",
3-
"description": "Added Laravel functionality to the Enlightn Security Checker. Adds a command to check for, and optionally emails you, vulnerabilities when they affect you.",
4-
"license": "MIT",
5-
"keywords": [
6-
"laravel",
7-
"security",
8-
"composer",
9-
"dependencies"
10-
],
11-
"authors": [
12-
{
13-
"name": "Jorijn Schrijvershof",
14-
"email": "jorijn@jorijn.com"
2+
"name": "jorijn/laravel-security-checker",
3+
"description": "Added Laravel functionality to the Enlightn Security Checker. Adds a command to check for, and optionally emails you, vulnerabilities when they affect you.",
4+
"license": "MIT",
5+
"keywords": [
6+
"laravel",
7+
"security",
8+
"composer",
9+
"dependencies"
10+
],
11+
"authors": [
12+
{
13+
"name": "Jorijn Schrijvershof",
14+
"email": "jorijn@jorijn.com"
15+
}
16+
],
17+
"require": {
18+
"php": ">=7.2|^8.0",
19+
"guzzlehttp/guzzle": "^7.0",
20+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
21+
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
22+
"illuminate/bus": "^6.0|^7.0|^8.0|^9.0|^10.0",
23+
"illuminate/mail": "^6.0|^7.0|^8.0|^9.0|^10.0",
24+
"illuminate/queue": "^6.0|^7.0|^8.0|^9.0|^10.0",
25+
"illuminate/notifications": "^6.0|^7.0|^8.0|^9.0|^10.0",
26+
"ext-json": "*",
27+
"enlightn/security-checker": "^1.3"
28+
},
29+
"require-dev": {
30+
"laravel/slack-notification-channel": "^1.0|^2.0",
31+
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0",
32+
"squizlabs/php_codesniffer": "~2.3|^3.6",
33+
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
34+
"mockery/mockery": "^1.2"
35+
},
36+
"suggest": {
37+
"laravel/slack-notification-channel": "If you need slack notifications, you must install this package."
38+
},
39+
"autoload": {
40+
"psr-4": {
41+
"Jorijn\\LaravelSecurityChecker\\": "src/"
42+
}
43+
},
44+
"autoload-dev": {
45+
"psr-4": {
46+
"Jorijn\\LaravelSecurityChecker\\Tests\\": "tests"
47+
}
48+
},
49+
"scripts": {
50+
"test": "phpunit",
51+
"cs": "phpcs --standard=psr2 src/"
52+
},
53+
"extra": {
54+
"laravel": {
55+
"providers": [
56+
"Jorijn\\LaravelSecurityChecker\\ServiceProvider"
57+
]
58+
}
1559
}
16-
],
17-
"require": {
18-
"php": ">=7.2|^8.0",
19-
"guzzlehttp/guzzle": "^7.0",
20-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
21-
"illuminate/console": "^6.0|^7.0|^8.0|^9.0",
22-
"illuminate/bus": "^6.0|^7.0|^8.0|^9.0",
23-
"illuminate/mail": "^6.0|^7.0|^8.0|^9.0",
24-
"illuminate/queue": "^6.0|^7.0|^8.0|^9.0",
25-
"illuminate/notifications": "^6.0|^7.0|^8.0|^9.0",
26-
"ext-json": "*",
27-
"enlightn/security-checker": "^1.3"
28-
},
29-
"require-dev": {
30-
"laravel/slack-notification-channel": "^1.0|^2.0",
31-
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0",
32-
"squizlabs/php_codesniffer": "~2.3|^3.6",
33-
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
34-
"mockery/mockery": "^1.2"
35-
},
36-
"suggest": {
37-
"laravel/slack-notification-channel": "If you need slack notifications, you must install this package."
38-
},
39-
"autoload": {
40-
"psr-4": {
41-
"Jorijn\\LaravelSecurityChecker\\": "src/"
42-
}
43-
},
44-
"autoload-dev": {
45-
"psr-4": {
46-
"Jorijn\\LaravelSecurityChecker\\Tests\\": "tests"
47-
}
48-
},
49-
"scripts": {
50-
"test": "phpunit",
51-
"cs": "phpcs --standard=psr2 src/"
52-
},
53-
"extra": {
54-
"laravel": {
55-
"providers": [
56-
"Jorijn\\LaravelSecurityChecker\\ServiceProvider"
57-
]
58-
}
59-
}
6060
}

0 commit comments

Comments
 (0)