Skip to content

Commit b3e90a3

Browse files
authored
Add Laravel 8 Support (#104)
1 parent c380d7a commit b3e90a3

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/php.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
max-parallel: 15
1010
fail-fast: false
1111
matrix:
12-
laravel-version: ['5.8.*', '^6.0', '^7.0']
13-
php-versions: ['7.2', '7.4']
12+
laravel-version: ['5.8.*', '^6.0', '^7.0', '^8.0']
13+
php-versions: ['7.3', '7.4']
1414
name: PHP ${{ matrix.php-versions }} on Laravel ${{ matrix.laravel-version }}
1515
steps:
1616
- name: Checkout
@@ -34,3 +34,7 @@ jobs:
3434
run: |
3535
composer require --dev --no-interaction "orchestra/testbench:^5.1"
3636
composer test:integration
37+
if: matrix.laravel-version == '^8.0'
38+
run: |
39+
composer require --dev --no-interaction "orchestra/testbench:^6.0"
40+
composer test:integration

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
"require": {
2525
"php": ">=7.2",
2626
"twilio/sdk": "~6.0",
27-
"illuminate/notifications": "^5.8 || ^6.0 || ^7.0",
28-
"illuminate/support": "^5.8 || ^6.0 || ^7.0",
29-
"illuminate/events": "^5.8 || ^6.0 || ^7.0",
30-
"illuminate/queue": "^5.8 || ^6.0 || ^7.0"
27+
"illuminate/notifications": "^5.8 || ^6.0 || ^7.0 || ^8.0",
28+
"illuminate/support": "^5.8 || ^6.0 || ^7.0 || ^8.0",
29+
"illuminate/events": "^5.8 || ^6.0 || ^7.0 || ^8.0",
30+
"illuminate/queue": "^5.8 || ^6.0 || ^7.0 || ^8.0"
3131
},
3232
"require-dev": {
3333
"mockery/mockery": "^1.3",

0 commit comments

Comments
 (0)