Skip to content

Commit

Permalink
Add Laravel 8 Support (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahvirag authored Sep 9, 2020
1 parent c380d7a commit b3e90a3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
max-parallel: 15
fail-fast: false
matrix:
laravel-version: ['5.8.*', '^6.0', '^7.0']
php-versions: ['7.2', '7.4']
laravel-version: ['5.8.*', '^6.0', '^7.0', '^8.0']
php-versions: ['7.3', '7.4']
name: PHP ${{ matrix.php-versions }} on Laravel ${{ matrix.laravel-version }}
steps:
- name: Checkout
Expand All @@ -34,3 +34,7 @@ jobs:
run: |
composer require --dev --no-interaction "orchestra/testbench:^5.1"
composer test:integration
if: matrix.laravel-version == '^8.0'
run: |
composer require --dev --no-interaction "orchestra/testbench:^6.0"
composer test:integration
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
"require": {
"php": ">=7.2",
"twilio/sdk": "~6.0",
"illuminate/notifications": "^5.8 || ^6.0 || ^7.0",
"illuminate/support": "^5.8 || ^6.0 || ^7.0",
"illuminate/events": "^5.8 || ^6.0 || ^7.0",
"illuminate/queue": "^5.8 || ^6.0 || ^7.0"
"illuminate/notifications": "^5.8 || ^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^5.8 || ^6.0 || ^7.0 || ^8.0",
"illuminate/events": "^5.8 || ^6.0 || ^7.0 || ^8.0",
"illuminate/queue": "^5.8 || ^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"mockery/mockery": "^1.3",
Expand Down

0 comments on commit b3e90a3

Please sign in to comment.