File tree Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 16
16
uses : actions/cache@v2
17
17
with :
18
18
path : ~/.composer/cache/files
19
- key : dependencies-php-8.1-illuminate-8 .*-composer-${{ hashFiles('composer.json') }}
19
+ key : dependencies-php-8.1-illuminate-9 .*-composer-${{ hashFiles('composer.json') }}
20
20
21
21
- name : Setup PHP
22
22
uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change 14
14
fail-fast : false
15
15
matrix :
16
16
php : [7.4, 8.0, 8.1]
17
- illuminate : [6.*, 7.*, ~8.74]
17
+ illuminate : [6.*, 7.*, ~8.74, ^9.0 ]
18
18
stability : [prefer-lowest, prefer-stable]
19
19
include :
20
20
- illuminate : 6.*
23
23
testbench : 5.*
24
24
- illuminate : ~8.74
25
25
testbench : 6.*
26
+ - illuminate : ^9.0
27
+ testbench : 7.*
26
28
exclude :
29
+ - php : 7.4
30
+ illuminate : ^9.0
27
31
- php : 8.1
28
32
illuminate : 7.*
29
33
- php : 8.1
@@ -33,10 +37,10 @@ jobs:
33
37
34
38
steps :
35
39
- name : Checkout code
36
- uses : actions/checkout@v2
40
+ uses : actions/checkout@v1
37
41
38
42
- name : Cache dependencies
39
- uses : actions/cache@v2
43
+ uses : actions/cache@v1
40
44
with :
41
45
path : ~/.composer/cache/files
42
46
key : dependencies-php-${{ matrix.php }}-illuminate-${{ matrix.illuminate }}-composer-${{ hashFiles('composer.json') }}
51
55
- name : Install dependencies
52
56
run : |
53
57
composer require "laravel/framework:${{ matrix.illuminate }}" --no-interaction --no-update
54
- composer require "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update --dev
58
+ composer require "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
55
59
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
56
60
57
61
- name : Execute tests
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased] ( https://github.com/markwalet/laravel-hashed-route/compare/v2.4.0...master )
4
4
5
+ ### Added
6
+ - Added Laravel 9 support.
7
+
5
8
## [ v2.6.0 (2021-12-22)] ( https://github.com/markwalet/laravel-hashed-route/compare/v2.5.0...v2.6.0 )
6
9
7
10
## Added
Original file line number Diff line number Diff line change 15
15
"require" : {
16
16
"php" : " ~7.4|8.*" ,
17
17
"hashids/hashids" : " 3.*|4.*" ,
18
- "laravel/framework" : " 6.*|7.*|~8.74" ,
18
+ "laravel/framework" : " 6.*|7.*|~8.74|^9.0 " ,
19
19
"jenssegers/optimus" : " ^0.2.3"
20
20
},
21
21
"require-dev" : {
22
- "orchestra/testbench" : " 4.*|5.*|6.*" ,
22
+ "orchestra/testbench" : " 4.*|5.*|6.*|7.* " ,
23
23
"phpunit/phpunit" : " ~9.3"
24
24
},
25
25
"autoload" : {
You can’t perform that action at this time.
0 commit comments