File tree Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ jobs:
10
10
fail-fast : false
11
11
matrix :
12
12
php : [ '7.4', '8.0', '8.1' ]
13
- laravel : [ '6 .*', '7 .*', '8.*', '9 .*' ]
13
+ laravel : [ '8 .*', '9 .*', '10 .*' ]
14
14
stability : [ prefer-lowest, prefer-stable ]
15
15
exclude :
16
- - laravel : ' 6.*'
17
- php : ' 8.1'
18
- - laravel : ' 7.*'
19
- php : ' 8.1'
20
16
- laravel : ' 9.*'
21
17
php : ' 7.4'
18
+ - laravel : ' 10.*'
19
+ php : ' 7.4'
20
+ - laravel : ' 10.*'
21
+ php : ' 8.0'
22
22
23
23
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
24
24
49
49
50
50
- name : Install dependencies
51
51
run : |
52
- composer require "illuminate/contracts :${{ matrix.laravel }}" "swisnl/ illuminate-collections :${{ matrix.laravel }}" --no-interaction --no-update
52
+ composer require "illuminate/collections :${{ matrix.laravel }}" "illuminate/contracts :${{ matrix.laravel }}" --no-interaction --no-update
53
53
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
54
54
55
55
- name : Execute tests
Original file line number Diff line number Diff line change @@ -6,9 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [ Unreleased]
8
8
9
+ ### Added
10
+
11
+ * Added support for Laravel 10.
12
+
9
13
### Removed
10
14
11
15
* Dropped PHP <7.4 support.
16
+ * Dropped Laravel <8 support.
12
17
13
18
## [ 2.2.0] - 2022-09-08
14
19
Original file line number Diff line number Diff line change 5
5
"require" : {
6
6
"php" : " ^7.4|^8.0" ,
7
7
"ext-json" : " *" ,
8
- "illuminate/contracts" : " ^6.0|^7.0|^8.0|^9.0" ,
8
+ "illuminate/collections" : " ^8.0|^9.0|^10.0" ,
9
+ "illuminate/contracts" : " ^8.0|^9.0|^10.0" ,
9
10
"php-http/discovery" : " ^1.9" ,
10
11
"psr/http-client" : " ^1.0" ,
11
12
"psr/http-client-implementation" : " ^1.0" ,
12
13
"psr/http-factory" : " ^1.0" ,
13
14
"psr/http-factory-implementation" : " ^1.0" ,
14
- "psr/http-message" : " ^1.0" ,
15
- "swisnl/illuminate-collections" : " ^6.0|^7.0|^8.0|^9.0"
15
+ "psr/http-message" : " ^1.0"
16
16
},
17
17
"require-dev" : {
18
18
"friendsofphp/php-cs-fixer" : " ^3.0" ,
You can’t perform that action at this time.
0 commit comments