Skip to content
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

Added Laravel 10 support #12

Merged
merged 13 commits into from
Oct 2, 2023
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to `laravel-storyblok-file-proxy` will be documented in this file

## 1.3.0 - 2023-09-08
- Add Laravel 10 support

## 1.2.0 - 2021-02-21
- Add Laravel 9 & php 8 support

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"require": {
"php": "^8.0|^8.1",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PHP 8 mag je droppen, die is bijna EOL. php 8.2 ook ondersteunen

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ik vermoed aangezien we php 8.0 droppen moeten we ook Laravel 8 support droppen (support 8.1/2 niet).

"guzzlehttp/guzzle": "^7.0",
"illuminate/container": "^8.0|^9.0",
"illuminate/http": "^8.0|^9.0",
"illuminate/routing": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0",
"illuminate/container": "^8.0|^9.0|^10.0",
"illuminate/http": "^8.0|^9.0|^10.0",
"illuminate/routing": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0",
"ext-fileinfo": "*"
},
"require-dev": {
Expand Down
Loading
Loading