Skip to content

Commit

Permalink
Merge pull request #217 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
Laravel 11.x Compatibility
  • Loading branch information
aglipanci authored Mar 14, 2024
2 parents a310a50 + f27fe55 commit 0f753df
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 18 deletions.
53 changes: 39 additions & 14 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,34 @@ name: run-tests
on:
push:
branches:
- master
- master
pull_request:
branches:
- master
- master

jobs:
tests:
runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4, 8.0, 8.1]
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
php: [7.2, 7.3, 7.4, 8.0, 8.1, 8.2]
laravel: ['6.*', '7.*', '8.*', '9.*', '10.*', 11.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*
- laravel: 11.*
testbench: 9.*
exclude:
- php: 7.2
laravel: 8.*
Expand All @@ -51,26 +54,48 @@ jobs:
laravel: 6.*
- php: 8.1
laravel: 7.*
- php: 8.2
laravel: 6.*
- php: 8.2
laravel: 7.*
- php: 8.1
laravel: 8.*
- php: 8.2
laravel: 8.*
- laravel: 11.*
php: 7.2
- laravel: 11.*
php: 7.3
- laravel: 11.*
php: 7.4
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1

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

steps:
- name: Checkout code
uses: actions/checkout@v1

- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv
coverage: none

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/phpunit
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
],
"require": {
"php": ">=7.2",
"illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/database": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0"
"illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5.10",
"orchestra/testbench": "^5.0|^7.0|^8.0"
"phpunit/phpunit": "^8.5|^9.5.10|^10.5",
"orchestra/testbench": "^5.0|^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 0f753df

Please sign in to comment.