Skip to content

Commit ad813d6

Browse files
authored
Merge pull request #7 from karoldabro/update-to-l12
Update to laravel 12
2 parents cc98f12 + 17cbe35 commit ad813d6

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

.github/workflows/laravel.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ on:
77
branches: [ "master" ]
88

99
jobs:
10-
tests83:
10+
11+
tests84:
1112

1213
runs-on: ubuntu-latest
1314

1415
steps:
1516
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
1617
with:
17-
php-version: '8.3'
18+
php-version: '8.4'
1819
- uses: actions/checkout@v3
1920
- name: Install Dependencies
2021
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
@@ -28,14 +29,14 @@ jobs:
2829
DB_DATABASE: database/database.sqlite
2930
run: vendor/bin/phpunit
3031

31-
tests82:
32+
tests83:
3233

3334
runs-on: ubuntu-latest
3435

3536
steps:
3637
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
3738
with:
38-
php-version: '8.2'
39+
php-version: '8.3'
3940
- uses: actions/checkout@v3
4041
- name: Install Dependencies
4142
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## [3.0.0] - 2025-05-08
4+
5+
### Added
6+
- Support for Laravel 12
7+
38
## [2.0.0] - 2024-06-16
49

510
### Added

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ First, install the package using Composer:
3232

3333
| PHP | Laravel | Package | Command |
3434
|------|---------|-------------------------------------------------------------------|----------------------------------------------------------|
35+
| ^8.3 | 12 | 3.0 | ```composer require "kdabrow/validation-codes: ^3.0"``` |
3536
| ^8.2 | 11 | 2.0 | ```composer require "kdabrow/validation-codes: ^2.0"``` |
3637
| ^8.1 | 10 | [1.1](https://github.com/karoldabro/validation-codes/tree/v1.1.0) | ```composer require "kdabrow/validation-codes: ^1.1" ``` |
3738

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
}
1818
],
1919
"require": {
20-
"php": ">=8.2.0",
21-
"illuminate/support": "^11.0",
22-
"illuminate/validation": "^11.0"
20+
"php": ">=8.3.0",
21+
"illuminate/support": "^12.0",
22+
"illuminate/validation": "^12.0"
2323
},
2424
"require-dev": {
25-
"orchestra/testbench": "^9.0"
25+
"orchestra/testbench": "^10.0"
2626
},
2727
"autoload": {
2828
"psr-4": {

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
php:
3-
image: webdevops/php-dev:8.2
3+
image: webdevops/php-dev:8.3
44
volumes:
55
- ./:/app/
66
working_dir: /app

0 commit comments

Comments
 (0)