Skip to content

Commit 1aa5c20

Browse files
committed
Bring back support for Laravel 6 and 7
1 parent add50fd commit 1aa5c20

File tree

4 files changed

+23
-13
lines changed

4 files changed

+23
-13
lines changed

.github/workflows/run-tests.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,18 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest]
1515
payload:
16-
- { queue: 'github-actions-laravel9-php81', laravel: '10.*', php: '8.2', 'testbench': '8.*' }
17-
- { queue: 'github-actions-laravel9-php81', laravel: '10.*', php: '8.1', 'testbench': '8.*' }
18-
- { queue: 'github-actions-laravel9-php81', laravel: '9.*', php: '8.2', 'testbench': '7.*' }
19-
- { queue: 'github-actions-laravel9-php81', laravel: '9.*', php: '8.1', 'testbench': '7.*' }
20-
- { queue: 'github-actions-laravel9-php80', laravel: '9.*', php: '8.0', 'testbench': '7.*' }
21-
- { queue: 'github-actions-laravel8-php81', laravel: '8.*', php: '8.1', 'testbench': '6.*' }
22-
- { queue: 'github-actions-laravel8-php80', laravel: '8.*', php: '8.0', 'testbench': '6.*' }
23-
- { queue: 'github-actions-laravel8-php74', laravel: '8.*', php: '7.4', 'testbench': '6.*' }
16+
- { laravel: '10.*', php: '8.2', 'testbench': '8.*'}
17+
- { laravel: '10.*', php: '8.1', 'testbench': '8.*'}
18+
- { laravel: '9.*', php: '8.2', 'testbench': '7.*'}
19+
- { laravel: '9.*', php: '8.1', 'testbench': '7.*'}
20+
- { laravel: '9.*', php: '8.0', 'testbench': '7.*'}
21+
- { laravel: '8.*', php: '8.1', 'testbench': '6.*'}
22+
- { laravel: '8.*', php: '8.0', 'testbench': '6.*'}
23+
- { laravel: '8.*', php: '7.4', 'testbench': '6.*'}
24+
- { laravel: '7.*', php: '8.0', 'testbench': '5.*' }
25+
- { laravel: '7.*', php: '7.4', 'testbench': '5.*' }
26+
- { laravel: '6.*', php: '8.0', 'testbench': '4.*' }
27+
- { laravel: '6.*', php: '7.4', 'testbench': '4.*' }
2428

2529
name: PHP ${{ matrix.payload.php }} - Laravel ${{ matrix.payload.laravel }}
2630

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99
**Changed**
1010

1111
- Added support for Laravel 10
12-
- Dropped support for Laravel 6 and 7
1312

1413
## 6.0.0 - 2022-02-10
1514

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ We feel the package is currently feature complete, but feel free to send a pull
1919

2020
# Requirements
2121

22-
This package requires Laravel 8.0 or higher.
22+
This package requires Laravel 6.0 or higher.
2323

2424
Please check the [Laravel support policy](https://laravel.com/docs/master/releases#support-policy) table for supported Laravel and PHP versions.
2525

composer.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@
2626
}
2727
},
2828
"require": {
29-
"ext-json": "*",
30-
"illuminate/support": "^8.0|^9.0|^10.0"
29+
"ext-json": "*"
3130
},
3231
"require-dev": {
3332
"mockery/mockery": "^1.2",
34-
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0"
33+
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0"
3534
},
3635
"minimum-stability": "dev",
3736
"prefer-stable": true,
@@ -47,6 +46,14 @@
4746
"l8": [
4847
"composer require laravel/framework:8.* orchestra/testbench:6.* --no-interaction --no-update",
4948
"composer update --prefer-stable --prefer-dist --no-interaction --no-suggest"
49+
],
50+
"l7": [
51+
"composer require laravel/framework:8.* orchestra/testbench:6.* --no-interaction --no-update",
52+
"composer update --prefer-stable --prefer-dist --no-interaction --no-suggest"
53+
],
54+
"l6": [
55+
"composer require laravel/framework:8.* orchestra/testbench:6.* --no-interaction --no-update",
56+
"composer update --prefer-stable --prefer-dist --no-interaction --no-suggest"
5057
]
5158
}
5259
}

0 commit comments

Comments
 (0)