File tree Expand file tree Collapse file tree 3 files changed +15
-22
lines changed Expand file tree Collapse file tree 3 files changed +15
-22
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ end_of_line = lf
11
11
insert_final_newline = true
12
12
trim_trailing_whitespace = true
13
13
14
- [{package.json, * .scss, * .css} ]
14
+ [* .yml ]
15
15
indent_size = 2
16
16
17
17
[* .md ]
Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : true
10
10
matrix :
11
- php : [ 8.1 , 8.2, 8.3 ]
12
- laravel : [ 10 .*, 11 .* ]
11
+ php : [ 8.3 , 8.4 ]
12
+ laravel : [ 11 .*, 12 .* ]
13
13
dependency-version : [ prefer-stable ]
14
- exclude :
15
- - laravel : 11.*
16
- php : 8.1
14
+ # exclude:
15
+ # - laravel: 11.*
16
+ # php: 8.1
17
17
include :
18
- - laravel : 10.*
19
- testbench : 8.*
20
18
- laravel : 11.*
21
19
testbench : 9.*
20
+ - laravel : 12.*
21
+ testbench : 10.*
22
22
23
23
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
24
24
25
25
steps :
26
26
- name : Checkout code
27
- uses : actions/checkout@v2
27
+ uses : actions/checkout@v4
28
28
29
29
- name : Cache dependencies
30
- uses : actions/cache@v2
30
+ uses : actions/cache@v4
31
31
with :
32
32
path : ~/.composer/cache/files
33
33
key : dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
44
44
45
45
- name : Execute tests
46
46
run : vendor/bin/phpunit --coverage-clover=coverage.xml
47
-
48
- - if : github.event_name == 'push'
49
- name : Run Codacy Coverage Reporter
50
- uses : codacy/codacy-coverage-reporter-action@master
51
- with :
52
- project-token : ${{ secrets.CODACY_PROJECT_TOKEN }}
53
- coverage-reports : coverage.xml
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " codezero /laravel-uri-translator" ,
2
+ "name" : " carandclassic /laravel-uri-translator" ,
3
3
"description" : " Translate a URI or individual slugs." ,
4
4
"keywords" : [
5
5
" php" ,
20
20
}
21
21
],
22
22
"require" : {
23
- "php" : " ^8.1 " ,
24
- "illuminate/support" : " ^10.0|^11.0"
23
+ "php" : " ^8.3 " ,
24
+ "illuminate/support" : " ^10.0|^11.0|^12.0 "
25
25
},
26
26
"require-dev" : {
27
- "orchestra/testbench" : " ^8.0|^9.0" ,
28
- "phpunit/phpunit" : " ^10.5"
27
+ "orchestra/testbench" : " ^8.0|^9.0|^10.0 " ,
28
+ "phpunit/phpunit" : " ^10.5|^11.0 "
29
29
},
30
30
"scripts" : {
31
31
"test" : " phpunit"
You can’t perform that action at this time.
0 commit comments