Skip to content

Commit

Permalink
feat: Support PHP Version to 8.0 (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydowen authored Feb 13, 2021
1 parent a07a3b7 commit 3ccdec9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [7.4]
php-version: [8.0]

steps:
- name: Checkout sources
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [7.4]
php-version: [8.0]

steps:
- name: Checkout sources
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [7.3, 7.4]
php-version: [7.3, 7.4, 8.0]
illuminate_version: [6.*, 7.*, 8.*]
composer_flags: ['', '--prefer-lowest']
name: PHP ${{ matrix.php-version }} | Illuminate ${{ matrix.illuminate_version }} ${{ matrix.composer_flags }}
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
run: phpdbg -dmemory_limit=4G -qrr vendor/bin/phpunit -c phpunit.xml --log-junit ./results/results.xml --coverage-clover ./results/coverage.xml

- name: Store results
if: matrix.php-version == '7.4' && matrix.illuminate_version == '8.*' && matrix.composer_flags == ''
if: matrix.php-version == '8.0' && matrix.illuminate_version == '8.*' && matrix.composer_flags == ''
uses: actions/upload-artifact@v2
with:
name: results
Expand All @@ -83,7 +83,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [7.4]
php-version: [8.0]

steps:
- name: Checkout repository
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">= 7.2.0",
"php": "^7.2 || ^8.0",
"fideloper/proxy": "^4.4",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"illuminate/console": "^5.5 || ^6.0 || ^7.0 || ^8.0",
Expand All @@ -24,7 +24,7 @@
},
"require-dev": {
"laravel/framework": "^5.5 || ^6.0 || ^7.0 || ^8.0",
"mockery/mockery": "^1.2",
"mockery/mockery": "^1.4",
"nunomaduro/larastan": "^0",
"ocramius/package-versions": "^1.5 || ^2.1",
"orchestra/testbench": "^3.5 || ^5.0 || ^6.0 || ^4.0",
Expand Down

0 comments on commit 3ccdec9

Please sign in to comment.