Skip to content

Commit 568134b

Browse files
authored
Merge pull request #123 from joelbutcher/feature/laravel-9-support
Laravel 9 Support
2 parents a7a5096 + ca7a024 commit 568134b

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,19 @@ jobs:
3131
strategy:
3232
matrix:
3333
os: [ubuntu]
34-
php: [7.4, 7.3, 7.2]
35-
laravel: [^8, ^7, ^6]
34+
php: [8.1, 8.0 7.4, 7.3, 7.2]
35+
laravel: [^9, ^8, ^7, ^6]
3636
exclude:
3737
# Laravel 8 requires php 7.3+, so exclude all PHP versions prior to 7.3
3838
- laravel: ^8
3939
php: 7.2
40+
# Laravel 9 requires php ^8.0.2, so exclude all PHP versions prior to 8.0.2
41+
- laravel: ^9
42+
php: 7.2
43+
- laravel: ^9
44+
php: 7.3
45+
- laravel: ^9
46+
php: 7.4
4047
env:
4148
ROLLBAR_TOKEN: "ad865e76e7fb496fab096ac07b1dbabb"
4249
name: Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }} (${{ matrix.os }})

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
}
2323
],
2424
"require": {
25-
"php": ">=7.2",
26-
"illuminate/support": "^6.0|^7.0|^8.0",
25+
"php": ">=7.2|^8.0",
26+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
2727
"rollbar/rollbar": "^2"
2828
},
2929
"require-dev": {
30-
"orchestra/testbench": "^4.0|^5.0|^6.0",
30+
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
3131
"mockery/mockery": "^1",
3232
"php-coveralls/php-coveralls": "^2.2",
3333
"squizlabs/php_codesniffer": "3.*",
34-
"phpunit/phpunit": "^8"
34+
"phpunit/phpunit": "^8|^9.1"
3535
},
3636
"autoload": {
3737
"psr-4": {

0 commit comments

Comments
 (0)