Skip to content

Commit b02d457

Browse files
committed
Add support for Laravel 10
1 parent 3f0c0b7 commit b02d457

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/run-tests.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
php: [ 8.0, 8.1 ]
12-
laravel: [ 8.*, 9.* ]
12+
laravel: [ 8.*, 9.*, 10.* ]
1313
dependency-version: [ prefer-stable ]
14+
exclude:
15+
- laravel: 10.*
16+
php: 8.0
1417
include:
1518
- laravel: 6.*
1619
php: 7.2
@@ -31,6 +34,8 @@ jobs:
3134
testbench: 6.*
3235
- laravel: 9.*
3336
testbench: 7.*
37+
- laravel: 10.*
38+
testbench: 8.*
3439

3540
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3641

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ I know you can get punished for this, but you are one of the hopes of those inno
1616
---
1717

1818
[![GitHub release](https://img.shields.io/github/release/codezero-be/laravel-unique-translation.svg?style=flat-square)](https://github.com/codezero-be/laravel-unique-translation/releases)
19-
[![Laravel](https://img.shields.io/badge/laravel-9-red?style=flat-square&logo=laravel&logoColor=white)](https://laravel.com)
19+
[![Laravel](https://img.shields.io/badge/laravel-10-red?style=flat-square&logo=laravel&logoColor=white)](https://laravel.com)
2020
[![License](https://img.shields.io/packagist/l/codezero/laravel-unique-translation.svg?style=flat-square)](LICENSE.md)
2121
[![Build Status](https://img.shields.io/github/actions/workflow/status/codezero-be/laravel-unique-translation/run-tests.yml?style=flat-square&logo=github&logoColor=white&label=tests)](https://github.com/codezero-be/laravel-unique-translation/actions)
2222
[![Code Coverage](https://img.shields.io/codacy/coverage/bb5f876fb1a94aa0a426fd31a2656e5b/master?style=flat-square)](https://app.codacy.com/gh/codezero-be/laravel-unique-translation)

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
"php": "^7.2|^8.0"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
28+
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
2929
"phpunit/phpunit": "^8.0|^9.0",
30-
"spatie/laravel-translatable": "^4.4|^5.0"
30+
"spatie/laravel-translatable": "^4.4|^5.0|^6.0"
3131
},
3232
"autoload": {
3333
"psr-4": {

0 commit comments

Comments
 (0)