Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHP 8.2 support #463

Merged
merged 4 commits into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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