Skip to content

Commit

Permalink
Add laravel 10 compatibility (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
musmanikram authored Apr 14, 2023
1 parent 17ada93 commit d332f10
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 8 deletions.
26 changes: 23 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,35 @@ jobs:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
php: [ 7.2.5, 8.0 ]
laravel: [ 6.*, 8.*, ^9.33 ]
testbench: [ ^4.0, ^6.6, ^7.0 ]
php: [ 7.2.5, 8.0, 8.1 ]
laravel: [ 6.*, 8.*, ^9.33, 10.* ]
testbench: [ ^4.0, ^6.6, ^7.0, ^8.0 ]
stability: [ prefer-lowest, prefer-stable ]
exclude:
- php: 7.2.5
laravel: 10.*
- php: 8.0
laravel: 10.*
- php: 8.1
laravel: 6.*
- php: 7.2.5
laravel: 8.*
- php: 7.2.5
laravel: ^9.33
- php: 7.2.5
testbench: ^8.0
- php: 7.2.5
testbench: ^6.6
- php: 7.2.5
testbench: ^7.0
- php: 8.0
testbench: ^8.0
- php: 8.1
testbench: ^4.0
- php: 8.1
testbench: ^6.6
- php: 8.1
testbench: ^7.0
- laravel: 6.*
testbench: ^6.6
- laravel: 6.*
Expand All @@ -30,10 +46,14 @@ jobs:
testbench: ^4.0
- laravel: 8.*
testbench: ^7.0
- laravel: 8.*
testbench: ^8.0
- laravel: ^9.33
testbench: ^4.0
- laravel: ^9.33
testbench: ^6.6
- laravel: ^9.33
testbench: ^8.0

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

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Localizator is a small tool for Laravel that gives you the ability to extract un
| 6.x LTS | ^0.3 |
| 8.x | * |
| 9.x | ^0.8 |
| 10.x | ^0.12 |

## Installation

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
"require": {
"php": "^7.2.5|^8.0",
"ext-json": "*",
"illuminate/config": "^6.0|^8.0|^9.0",
"illuminate/console": "^6.0|^8.0|^9.0",
"illuminate/support": "^6.0|^8.0|^9.0",
"illuminate/filesystem": "^6.0|^8.0|^9.0",
"illuminate/config": "^6.0|^8.0|^9.0|^10.0",
"illuminate/console": "^6.0|^8.0|^9.0|^10.0",
"illuminate/support": "^6.0|^8.0|^9.0|^10.0",
"illuminate/filesystem": "^6.0|^8.0|^9.0|^10.0",
"symfony/finder": "^4.4|^5.1|^6.0"
},
"require-dev": {
"mockery/mockery": "^1.3.3",
"orchestra/testbench": "^4.0|^6.6|^7.0",
"orchestra/testbench": "^4.0|^6.6|^7.0|^8.0",
"phpunit/phpunit": "^8.5|^9.5"
},
"autoload": {
Expand Down

0 comments on commit d332f10

Please sign in to comment.