Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6aa0e6a

Browse files
committed
Attempt to still support Laravel v6
1 parent 61a81e4 commit 6aa0e6a

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

.github/workflows/tests.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
phpunit:
1414
strategy:
1515
matrix:
16-
php: [ 8.1, 8.0, 7.4, 7.3 ]
17-
laravel: [ 10.*, 9.*, 8.* ]
16+
php: [ 8.2, 8.1, 8.0, 7.4, 7.3, 7.2 ]
17+
laravel: [ 10.*, 9.*, 8.*, 7.*, 6.* ]
1818
os: [ ubuntu-latest, windows-latest ]
1919

2020
# Unsupported combinations
@@ -38,6 +38,20 @@ jobs:
3838
- laravel: 8.*
3939
php: 7.2
4040

41+
- laravel: 7.*
42+
php: 8.2
43+
- laravel: 7.*
44+
php: 8.1
45+
- laravel: 7.*
46+
php: 8.0
47+
48+
- laravel: 6.*
49+
php: 8.2
50+
- laravel: 6.*
51+
php: 8.1
52+
- laravel: 6.*
53+
php: 8.0
54+
4155
# Continue running through matrix even if one combination fails
4256
fail-fast: false
4357

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Compatibility Chart
3939

4040
| Laravel | Laravel Breadcrumbs |
4141
|---------|---------------------|
42+
| 10.x | 7.x |
4243
| 9.x | 7.x |
4344
| 8.x | 7.x |
4445
| 7.x | 7.x |

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
],
2020
"license": "MIT",
2121
"require": {
22-
"php": "^7.3 || ^8.0",
22+
"php": "^7.2 || ^8.0",
2323
"facade/ignition-contracts": "^1.0",
24-
"laravel/framework": "^8.0 || ^9.0 || ^10.0"
24+
"laravel/framework": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
2525
},
2626
"require-dev": {
27-
"orchestra/testbench": "^6.4 || ^7.0 || ^8.0",
28-
"phpunit/phpunit": "^9.4 || ^10.0",
27+
"orchestra/testbench": "^4.10 || ^5.9 || ^6.4 || ^7.0 || ^8.0",
28+
"phpunit/phpunit": "^8.5 || ^9.4 || ^10.0",
2929
"php-coveralls/php-coveralls": "^2.4",
30-
"spatie/phpunit-snapshot-assertions": "^4.2"
30+
"spatie/phpunit-snapshot-assertions": "^2.2 || ^4.2"
3131
},
3232
"minimum-stability": "dev",
3333
"prefer-stable": true,

0 commit comments

Comments
 (0)