Skip to content

Commit d332f10

Browse files
authored
Add laravel 10 compatibility (#55)
1 parent 17ada93 commit d332f10

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

Diff for: .github/workflows/tests.yml

+23-3
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,35 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ ubuntu-latest ]
12-
php: [ 7.2.5, 8.0 ]
13-
laravel: [ 6.*, 8.*, ^9.33 ]
14-
testbench: [ ^4.0, ^6.6, ^7.0 ]
12+
php: [ 7.2.5, 8.0, 8.1 ]
13+
laravel: [ 6.*, 8.*, ^9.33, 10.* ]
14+
testbench: [ ^4.0, ^6.6, ^7.0, ^8.0 ]
1515
stability: [ prefer-lowest, prefer-stable ]
1616
exclude:
17+
- php: 7.2.5
18+
laravel: 10.*
19+
- php: 8.0
20+
laravel: 10.*
21+
- php: 8.1
22+
laravel: 6.*
1723
- php: 7.2.5
1824
laravel: 8.*
1925
- php: 7.2.5
2026
laravel: ^9.33
27+
- php: 7.2.5
28+
testbench: ^8.0
2129
- php: 7.2.5
2230
testbench: ^6.6
2331
- php: 7.2.5
2432
testbench: ^7.0
33+
- php: 8.0
34+
testbench: ^8.0
35+
- php: 8.1
36+
testbench: ^4.0
37+
- php: 8.1
38+
testbench: ^6.6
39+
- php: 8.1
40+
testbench: ^7.0
2541
- laravel: 6.*
2642
testbench: ^6.6
2743
- laravel: 6.*
@@ -30,10 +46,14 @@ jobs:
3046
testbench: ^4.0
3147
- laravel: 8.*
3248
testbench: ^7.0
49+
- laravel: 8.*
50+
testbench: ^8.0
3351
- laravel: ^9.33
3452
testbench: ^4.0
3553
- laravel: ^9.33
3654
testbench: ^6.6
55+
- laravel: ^9.33
56+
testbench: ^8.0
3757

3858
name: php-${{ matrix.php }} - laravel-${{ matrix.laravel }} - testbench-${{ matrix.testbench }} - ${{ matrix.stability }} - ${{ matrix.os }}
3959

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Localizator is a small tool for Laravel that gives you the ability to extract un
2424
| 6.x LTS | ^0.3 |
2525
| 8.x | * |
2626
| 9.x | ^0.8 |
27+
| 10.x | ^0.12 |
2728

2829
## Installation
2930

Diff for: composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"require": {
1515
"php": "^7.2.5|^8.0",
1616
"ext-json": "*",
17-
"illuminate/config": "^6.0|^8.0|^9.0",
18-
"illuminate/console": "^6.0|^8.0|^9.0",
19-
"illuminate/support": "^6.0|^8.0|^9.0",
20-
"illuminate/filesystem": "^6.0|^8.0|^9.0",
17+
"illuminate/config": "^6.0|^8.0|^9.0|^10.0",
18+
"illuminate/console": "^6.0|^8.0|^9.0|^10.0",
19+
"illuminate/support": "^6.0|^8.0|^9.0|^10.0",
20+
"illuminate/filesystem": "^6.0|^8.0|^9.0|^10.0",
2121
"symfony/finder": "^4.4|^5.1|^6.0"
2222
},
2323
"require-dev": {
2424
"mockery/mockery": "^1.3.3",
25-
"orchestra/testbench": "^4.0|^6.6|^7.0",
25+
"orchestra/testbench": "^4.0|^6.6|^7.0|^8.0",
2626
"phpunit/phpunit": "^8.5|^9.5"
2727
},
2828
"autoload": {

0 commit comments

Comments
 (0)