Skip to content

Commit 464851a

Browse files
Merge pull request #342 from laravel-shift/l11-compatibility
Laravel 11.x Compatibility
2 parents 3cf4d35 + d147975 commit 464851a

File tree

3 files changed

+26
-15
lines changed

3 files changed

+26
-15
lines changed

.github/workflows/phptest.yml

+16-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
on: [push]
1+
on:
2+
- push
23

3-
name: "CI PHP"
4+
name: CI PHP
45

56
jobs:
67
test:
7-
88
runs-on: ubuntu-latest
99

1010
strategy:
1111
matrix:
1212
php: [7.4, 8.0, 8.1, 8.2, 8.3]
13-
laravel: [8.*]
13+
laravel: ['8.*', '11.*']
1414
include:
1515
- php: 8.0
1616
laravel: 9.*
@@ -24,6 +24,15 @@ jobs:
2424
laravel: 10.*
2525
- php: 8.3
2626
laravel: 10.*
27+
- php: '8.2'
28+
laravel: 11.*
29+
exclude:
30+
- laravel: 11.*
31+
php: 7.4
32+
- laravel: 11.*
33+
php: 8.0
34+
- laravel: 11.*
35+
php: 8.1
2736

2837
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2938

@@ -47,12 +56,12 @@ jobs:
4756

4857
- name: Composer Install
4958
run: |
50-
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
51-
composer install
59+
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
60+
composer install
5261
5362
- name: PHPUNIT Tests
5463
run: |
55-
./vendor/bin/phpunit --coverage-clover=coverage.xml
64+
./vendor/bin/phpunit --coverage-clover=coverage.xml
5665
5766
- name: Upload to codecov
5867
uses: codecov/codecov-action@v3

.github/workflows/releaser.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
branches:
44
- master
55

6-
name: "CI Release Dist"
6+
name: CI Release Dist
77

88
jobs:
99
test:
@@ -13,13 +13,15 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-versions: [20]
16+
node-versions:
17+
- 20
1718

1819
steps:
1920
- name: Cancel Previous Runs
2021
uses: styfle/[email protected]
2122
with:
2223
access_token: ${{ github.token }}
24+
2325
- name: Checkout
2426
uses: actions/checkout@v3
2527
with:
@@ -47,7 +49,7 @@ jobs:
4749
uses: peter-evans/create-pull-request@v4
4850
with:
4951
commit-message: (action) Update dist
50-
title: "(action) update dist astro"
52+
title: (action) update dist astro
5153

5254
- name: Export dist to resources for gh-pages
5355
working-directory: ./ui

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
],
1818
"require": {
1919
"php": "^7.4|^8.0|^8.1|^8.2|^8.3",
20-
"illuminate/contracts": "^8.37|^9.0|^10.0",
20+
"illuminate/contracts": "^8.37|^9.0|^10.0|^11.0",
2121
"kitloong/laravel-app-logger": "^1.0",
2222
"spatie/laravel-package-tools": "^1.4.3",
2323
"ext-json": "*"
2424
},
2525
"require-dev": {
2626
"barryvdh/laravel-ide-helper": "^2.12|dev-master",
27-
"brianium/paratest": "^6.2",
27+
"brianium/paratest": "^6.2|^7.4",
2828
"friendsofphp/php-cs-fixer": "^3.5",
29-
"nunomaduro/collision": "^5.3|^6.0",
29+
"nunomaduro/collision": "^5.3|^6.0|^8.0",
3030
"nunomaduro/larastan": "^1.0|^2.4",
31-
"orchestra/testbench": "^6.15|^7.0|^8.0",
32-
"phpunit/phpunit": "^9.3",
31+
"orchestra/testbench": "^6.15|^7.0|^8.0|^9.0",
32+
"phpunit/phpunit": "^9.3|^10.5",
3333
"spatie/laravel-ray": "^1.23",
3434
"squizlabs/php_codesniffer": "^3.6",
3535
"vimeo/psalm": "^4.8|^5.6"

0 commit comments

Comments
 (0)