Skip to content

Drop support for Laravel 5.6, 5.7, 5.8 and 6.x #76

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

Merged
merged 1 commit into from
Mar 12, 2023
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
15 changes: 0 additions & 15 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,6 @@ jobs:
- laravel: 10.*
php: 8.0
include:
- laravel: 5.6.*
php: 7.1
testbench: 3.6.*
- laravel: 5.7.*
php: 7.2
testbench: 3.7.*
- laravel: 5.8.*
php: 7.2
testbench: 3.8.*
- laravel: 6.*
php: 7.2
testbench: 4.*
- laravel: 6.*
php: 8.0
testbench: 4.*
- laravel: 7.*
php: 7.2
testbench: 5.*
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ I know you can get punished for this, but you are one of the hopes of those inno

## ✅ Requirements

- PHP >= 7.1
- Laravel >= 5.6
- PHP >= 7.2.5
- Laravel >= 7.0

## 📦 Install

Expand Down
7 changes: 7 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Upgrading To 3.0 From v2.x

### Minimum Requirements Updated

We dropped support for Laravel 5.6, 5.7, 5.8 and 6.x.

- The minimum PHP version required is now 7.2.5
- The minimum Laravel version required is now 7.0

### Middleware Changes

Applying the `CodeZero\LocalizedRoutes\Middleware\SetLocale` middleware is now more straightforward.
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
}
],
"require": {
"php": "^7.1|^8.0",
"php": "^7.2.5|^8.0",
"0.0.0/composer-include-files": "^1.5",
"codezero/laravel-localizer": "1.8.0",
"illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0"
"illuminate/support": "^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"mockery/mockery": "^1.3.3",
"orchestra/testbench": "^3.6|^4.0|^5.0|^6.0|^7.0|^8.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0"
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"scripts": {
"test": "phpunit"
Expand Down