Skip to content

Commit

Permalink
Add support for php 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.claeys committed Feb 11, 2021
1 parent b1e8374 commit c36b636
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 7.4, 7.3 ]
php: [ 8.0 ,7.4, 7.3 ]
laravel: [ 8.*, 7.* ]
dependency-version: [ prefer-lowest, prefer-stable ]
include:
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*

exclude:
- php: 8.0
dependency-version: prefer-lowest
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ All notable changes to `laravel-poeditor-sync` will be documented in this file

## 0.1.0 - 2020-05-08

- initial release
- Initial release
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
}
],
"require": {
"php": "^7.3",
"php": "^7.3|^8.0",
"guzzlehttp/guzzle": "^6.5|^7.0",
"illuminate/filesystem": "^7.0|^8.0",
"illuminate/support": "^7.0|^8.0",
"symfony/var-exporter": "^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"friendsofphp/php-cs-fixer": "^2.17",
"orchestra/testbench": "^5.0|^6.0",
"phpunit/phpunit": "^9.1"
},
Expand Down

0 comments on commit c36b636

Please sign in to comment.