Skip to content

Commit

Permalink
Added Laravel 11 support and Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
golchha21 committed Jun 29, 2024
1 parent 3062992 commit cb0fc35
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to `golchha21/resmushit` will be documented in this file

## 1.3.1 - 2024-06-29

- Added Laravel 11 support
- Version bump

## 1.3.0 - 2024-03-02

- Merged a [pull request](https://github.com/golchha21/ReSmushIt/pull/1) from [@atastycookie](https://github.com/atastycookie) which improves security to avoid MITM attacks
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "golchha21/resmushit",
"version": "1.3.0",
"version": "1.3.1",
"description": "A Laravel package for the popular image optimization web service reSmush.it",
"keywords": [
"golchha21",
Expand Down Expand Up @@ -36,7 +36,7 @@
"ext-json": "*",
"ext-fileinfo": "*",
"ext-curl": "*",
"laravel/framework": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0"
"laravel/framework": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/ReSmushIt.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class ReSmushIt
{
private const VERSION = '1.3.0';
private const VERSION = '1.3.1';
private const ENDPOINT = 'https://api.resmush.it/';
private const TIMEOUT = 10;
private const MAX_FILE_SIZE = 5242880;
Expand Down

0 comments on commit cb0fc35

Please sign in to comment.