Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ on:
branches: [ "master" ]

jobs:
tests83:

tests84:

runs-on: ubuntu-latest

steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.3'
php-version: '8.4'
- uses: actions/checkout@v3
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand All @@ -28,14 +29,14 @@ jobs:
DB_DATABASE: database/database.sqlite
run: vendor/bin/phpunit

tests82:
tests83:

runs-on: ubuntu-latest

steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.2'
php-version: '8.3'
- uses: actions/checkout@v3
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## [3.0.0] - 2025-05-08

### Added
- Support for Laravel 12

## [2.0.0] - 2024-06-16

### Added
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ First, install the package using Composer:

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
}
],
"require": {
"php": ">=8.2.0",
"illuminate/support": "^11.0",
"illuminate/validation": "^11.0"
"php": ">=8.3.0",
"illuminate/support": "^12.0",
"illuminate/validation": "^12.0"
},
"require-dev": {
"orchestra/testbench": "^9.0"
"orchestra/testbench": "^10.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
php:
image: webdevops/php-dev:8.2
image: webdevops/php-dev:8.3
volumes:
- ./:/app/
working_dir: /app
Expand Down