Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Commit 94f4c49

Browse files
committed
allow laravel 9
1 parent 92a5c03 commit 94f4c49

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
1616
php: [8.0, 8.1]
17-
laravel: [^8.67]
17+
laravel: [^8.71, 9.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20-
- laravel: ^8.67
21-
testbench: ^6.6
20+
- testbench: 7.*
21+
laravel: 9.*
22+
- testbench: ^6.6
23+
laravel: ^8.71
2224

2325
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2426

@@ -45,6 +47,3 @@ jobs:
4547
4648
- name: Execute tests
4749
run: vendor/bin/phpunit --coverage-clover build/clover.xml
48-
49-
- name: Verify code coverage
50-
run: vendor/bin/coverage-check build/clover.xml --require=100

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111
This package provides functionality to map your model attributes to local class properties with the same names.
1212

13-
The package requires PHP `^8.x` and Laravel `^8.67`.
13+
The package requires PHP `^8.x` and Laravel `^8.71`.
1414

1515
[![PHP Version](https://img.shields.io/badge/php-^8.x-777BB4?style=flat-square&logo=php)](https://php.net)
16-
[![Laravel Version](https://img.shields.io/badge/laravel-^8.67-FF2D20?style=flat-square&logo=laravel)](https://laravel.com)
16+
[![Laravel Version](https://img.shields.io/badge/laravel-^8.71-FF2D20?style=flat-square&logo=laravel)](https://laravel.com)
1717
[![Laravel Octane Compatible](https://img.shields.io/badge/octane-compatible-success?style=flat-square&logo=laravel)](https://github.com/laravel/octane)
1818

1919
## Installation

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,15 @@
1717
],
1818
"require": {
1919
"php": "^8.0|^8.1",
20-
"laravel/framework": "^8.67",
20+
"laravel/framework": "^8.71|^9.0",
2121
"spatie/laravel-package-tools": "^1.9"
2222
},
2323
"require-dev": {
24-
"nunomaduro/collision": "^5.10",
24+
"nunomaduro/collision": "^5.10|^6.0",
2525
"nunomaduro/larastan": "^1.0",
2626
"phpunit/phpunit": "^9.5",
27-
"orchestra/testbench": "^6.6",
27+
"orchestra/testbench": "^6.6|^7.0",
2828
"brianium/paratest": "^6.3",
29-
"permafrost-dev/coverage-check": "^1.2",
3029
"mockery/mockery": "^1.4.4",
3130
"squizlabs/php_codesniffer": "^3.6"
3231
},

0 commit comments

Comments
 (0)