Skip to content

Commit

Permalink
Merge pull request #5 from Jefemy/master
Browse files Browse the repository at this point in the history
Allow PHP8
  • Loading branch information
abdumu authored Dec 9, 2020
2 parents ad0e32d + c3a79b5 commit e771e23
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.1, 7.2, 7.3, 7.4]
php: [7.1, 7.2, 7.3, 7.4, 8.0]
laravel: [5.8.*, ^6.0, ^7.0, ^8.0]
exclude:
- php: 7.1
Expand All @@ -24,6 +24,8 @@ jobs:
laravel: ^8.0
- php: 7.2
laravel: ^8.0
- php: 8.0
laravel: 5.8.*

name: P${{ matrix.php }} - L${{ matrix.laravel }}

Expand All @@ -44,4 +46,4 @@ jobs:
composer require "illuminate/contracts=${{ matrix.laravel }}" --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit --verbose
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"php": "^7.1.3",
"php": "^7.1.3|^8.0",
"guzzlehttp/guzzle": "^6.0|^7.0",
"illuminate/notifications": "~5.8.0|^6.0|^7.0|^8.0",
"laravel/slack-notification-channel": "^2.0"
Expand Down

0 comments on commit e771e23

Please sign in to comment.