Skip to content

Commit 90026ff

Browse files
committed
Update README and test suite for Laravel 12
1 parent c100365 commit 90026ff

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
os: [ubuntu-latest]
1111
php: [8.3, 8.2, 8.1]
12-
laravel: [9.*, 10.*, 11.*]
12+
laravel: [9.*, 10.*, 11.*, 12.*]
1313
dependency-version: [prefer-stable]
1414
include:
1515
- laravel: 9.*
@@ -18,9 +18,13 @@ jobs:
1818
testbench: 8.*
1919
- laravel: 11.*
2020
testbench: 9.*
21+
- laravel: 12.*
22+
testbench: 10.*
2123
exclude:
2224
- laravel: 11.*
2325
php: 8.1
26+
- laravel: 12.*
27+
php: 8.1
2428

2529
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2630

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<p align="center">
1010
<a href="https://packagist.org/packages/WendellAdriel/laravel-validated-dto"><img src="https://img.shields.io/packagist/v/WendellAdriel/laravel-validated-dto.svg?style=flat-square" alt="Packagist"></a>
1111
<a href="https://packagist.org/packages/WendellAdriel/laravel-validated-dto"><img src="https://img.shields.io/packagist/php-v/WendellAdriel/laravel-validated-dto.svg?style=flat-square" alt="PHP from Packagist"></a>
12-
<a href="https://packagist.org/packages/WendellAdriel/laravel-validated-dto"><img src="https://img.shields.io/badge/Laravel-9.x,%2010.x,%2011.x-brightgreen.svg?style=flat-square" alt="Laravel Version"></a>
12+
<a href="https://packagist.org/packages/WendellAdriel/laravel-validated-dto"><img src="https://img.shields.io/badge/Laravel-9.x,%2010.x,%2011.x,%2012.x-brightgreen.svg?style=flat-square" alt="Laravel Version"></a>
1313
<a href="https://github.com/WendellAdriel/laravel-validated-dto/actions"><img alt="GitHub Workflow Status (main)" src="https://img.shields.io/github/actions/workflow/status/WendellAdriel/laravel-validated-dto/tests.yml?branch=main&label=Tests"> </a>
1414
</p>
1515

@@ -21,7 +21,7 @@ Imagine that now you want to do the same action that you do in an endpoint on a
2121

2222
With this package you **define the validation once** and can **reuse it where you need**, making your application more **maintainable** and **decoupled**.
2323

24-
## Documentation
24+
## Documentation
2525
[![Docs Button]][Docs Link] [![DocsRepo Button]][DocsRepo Link]
2626

2727
## Installation

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
"illuminate/validation": "^9.0|^10.0|^11.0|^12.0"
3939
},
4040
"require-dev": {
41-
"laravel/pint": "^1.14",
41+
"laravel/pint": "^1.21",
4242
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
43-
"pestphp/pest": "^1.20|^2.0",
44-
"pestphp/pest-plugin-faker": "^1.0|^2.0"
43+
"pestphp/pest": "^1.20|^2.0|^3.0",
44+
"pestphp/pest-plugin-faker": "^1.0|^2.0|^3.0"
4545
},
4646
"scripts": {
4747
"lint": "pint",

0 commit comments

Comments
 (0)