Skip to content

Commit

Permalink
Laravel 11.x Compatibility (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift authored Mar 14, 2024
1 parent 8a53aaf commit b322bbd
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 32 deletions.
71 changes: 43 additions & 28 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -1,51 +1,66 @@
name: PHP

on: [push, pull_request]
on:
- push
- pull_request

jobs:
run:
runs-on: ubuntu-latest

strategy:
max-parallel: 15
matrix:
php: ['7.4', '8.0', '8.1', '8.2']
laravel: ['6.*', '7.*', '8.*', '9.*', '10.*']
laravel: ['6.*', '7.*', '8.*', '9.*', '10.*', '11.*']
exclude:
- laravel: '6.*'
- laravel: 6.*
php: '8.0'
- laravel: '6.*'
- laravel: 6.*
php: '8.1'
- laravel: '6.*'
- laravel: 6.*
php: '8.2'
- laravel: '7.*'
- laravel: 7.*
php: '8.0'
- laravel: '7.*'
- laravel: 7.*
php: '8.1'
- laravel: '7.*'
- laravel: 7.*
php: '8.2'
- laravel: '8.*'
- laravel: 8.*
php: '8.2'
- laravel: '9.*'
- laravel: 9.*
php: '7.4'
- laravel: 10.*
php: '7.4'
- laravel: '10.*'
- laravel: 10.*
php: '8.0'
- laravel: 11.*
php: '7.4'
- laravel: '10.*'
- laravel: 11.*
php: '8.0'
- laravel: 11.*
php: '8.1'

name: PHP ${{ matrix.php }} on Laravel ${{ matrix.laravel }}

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, xdebug
coverage: xdebug
- name: Install dependencies
run: |
composer require --no-update --no-interaction "illuminate/notifications:${{ matrix.laravel }}"
composer update --no-interaction --prefer-dist --no-suggest
- name: Lint composer.json
run: composer validate
- name: Run Tests
run: composer test:ci
- name: Checkout
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, xdebug
coverage: xdebug

- name: Install dependencies
run: |
composer require --no-update --no-interaction "illuminate/notifications:${{ matrix.laravel }}"
composer update --no-interaction --prefer-dist --no-suggest
- name: Lint composer.json
run: composer validate

- name: Run Tests
run: composer test:ci
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"require": {
"php": "^7.2.5 || ^8.0",
"guzzlehttp/guzzle": "^6.2 || ^7.0",
"illuminate/notifications": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
"illuminate/notifications": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0"
"phpunit/phpunit": "^9.0 || ^10.5",
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit b322bbd

Please sign in to comment.