-
Notifications
You must be signed in to change notification settings - Fork 89
Laravel 13 compatibility + PHP 8.2 modernization #57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
navneetkumar-pim-webkul
wants to merge
17
commits into
andersao:master
Choose a base branch
from
navneetkumar-pim-webkul:laravel-13-compatibility
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
ad1ff55
Bump dependencies for Laravel 13 compatibility
navneetkumar-pim-webkul 87af947
Upgrade phpunit.xml to PHPUnit 11/12 schema
navneetkumar-pim-webkul 67e874a
Loosen phpunit failOn flags for cross-version deprecation tolerance
navneetkumar-pim-webkul 165bc98
Add Orchestra Testbench base test case
navneetkumar-pim-webkul cc6e741
Add test coverage for LaravelValidator public API
navneetkumar-pim-webkul 0aea284
Replace Travis CI with GitHub Actions matrix
navneetkumar-pim-webkul e460cd9
Document Laravel 13 support in README
navneetkumar-pim-webkul 9ad3888
Drop unused mockery/mockery dev dependency
navneetkumar-pim-webkul 017e1ab
Exclude PHP 8.4 + Laravel 10 from CI matrix (unsupported combo)
navneetkumar-pim-webkul 3b43938
Modernize source for PHP 8.2 / Laravel 13
navneetkumar-pim-webkul 4449b0c
Expand test coverage for fresh instance and exception payload
navneetkumar-pim-webkul feb32ca
Drop Laravel 10 support (EOL Feb 2026, incompatible with PHPUnit 11+)
navneetkumar-pim-webkul 3676aa7
Preserve empty exception message for backward compatibility
navneetkumar-pim-webkul 2e2db84
Add regression tests for unique-rule rewriter edge cases
navneetkumar-pim-webkul 75d10b8
Document breaking changes in README
navneetkumar-pim-webkul b73a1fb
Address Copilot review feedback
navneetkumar-pim-webkul 3d80491
Merge remote-tracking branch 'upstream/master' into laravel-13-compat…
navneetkumar-pim-webkul File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| name: tests | ||
|
|
||
| on: | ||
| push: | ||
| branches: [master, main] | ||
| pull_request: | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| php: ['8.2', '8.3', '8.4'] | ||
| laravel: ['11.*', '12.*', '13.*'] | ||
| exclude: | ||
| - php: '8.2' | ||
| laravel: '13.*' | ||
|
|
||
| name: PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }} | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup PHP | ||
| uses: shivammathur/setup-php@v2 | ||
| with: | ||
| php-version: ${{ matrix.php }} | ||
| coverage: none | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| composer require "illuminate/support:${{ matrix.laravel }}" "illuminate/validation:${{ matrix.laravel }}" --no-update --no-interaction | ||
| composer update --prefer-stable --prefer-dist --no-interaction | ||
|
|
||
| - name: Run tests | ||
| run: vendor/bin/phpunit | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| /vendor | ||
| composer.phar | ||
| .DS_Store | ||
| /.phpunit.cache | ||
| ### Composer template | ||
| vendor/ | ||
|
|
||
|
|
||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.