Skip to content

Commit

Permalink
PHP 8.2 support (#463)
Browse files Browse the repository at this point in the history
* Allow PHP 8.2

* Update workflow for PHP 8.2

* Formatting

* Set minimum PHP 8.2 versions

Co-authored-by: Jonathan Reinink <jonathan@reinink.ca>
  • Loading branch information
driesvints and reinink authored Nov 8, 2022
1 parent 540b953 commit b00fe8c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
29 changes: 22 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"

jobs:
tests:
runs-on: ubuntu-20.04
strategy:
fail-fast: true
matrix:
php: [ 7.2, 7.3, 7.4, '8.0', 8.1 ]
laravel: [ 6, 7, 8, 9 ]
stability: ['prefer-lowest', 'prefer-stable']
php: [7.2, 7.3, 7.4, "8.0", 8.1, 8.2]
laravel: [6, 7, 8, 9]
stability: ["prefer-lowest", "prefer-stable"]
exclude:
- php: 7.2
laravel: 8
Expand All @@ -28,6 +28,12 @@ jobs:
laravel: 6
- php: 8.1
laravel: 7
- php: 8.2
laravel: 6
- php: 8.2
laravel: 7
- php: 8.2
laravel: 8

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} (w/ ${{ matrix.stability }})
steps:
Expand All @@ -42,7 +48,7 @@ jobs:
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none

- name: Set Minimum PHP 8.1 Versions
uses: nick-invision/retry@v1
with:
Expand All @@ -52,14 +58,23 @@ jobs:
composer require phpunit/phpunit:^9.5.8 --dev --${{ matrix.stability }} --no-update --no-interaction
composer require vlucas/phpdotenv:^5.3.1 --${{ matrix.stability }} --no-update --no-interaction
if: matrix.php >= 8.1 && matrix.stability == 'prefer-lowest'


- name: Set Minimum PHP 8.2 Versions
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 5
command: |
composer require nesbot/carbon:^2.62.1 --dev --${{ matrix.stability }} --no-update --no-interaction
if: matrix.php >= 8.2 && matrix.stability == 'prefer-lowest'

- name: Set Laravel version
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 5
command: composer require "laravel/framework=^${{ matrix.laravel }}" --no-interaction --no-update

- name: Install dependencies
uses: nick-invision/retry@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}
},
"require": {
"php": "^7.2|~8.0.0|~8.1.0",
"php": "^7.2|~8.0.0|~8.1.0|~8.2.0",
"ext-json": "*",
"laravel/framework": "^6.0|^7.0|^8.74|^9.0"
},
Expand Down

0 comments on commit b00fe8c

Please sign in to comment.