Skip to content

Commit

Permalink
Added support for Laravel 10 and version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulhas Vardhan Golchha committed May 6, 2023
1 parent f9c23b2 commit 3bf577b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 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.2.9 - 2023-05-06

- Added Laravel 10 support
- Version bump

## 1.2.8 - 2022-05-08

- Moved Laravel/framework from require-dev to require
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "golchha21/resmushit",
"version": "1.2.8",
"version": "1.2.9",
"description": "A Laravel package for the popular image optimization web service reSmush.it",
"keywords": [
"golchha21",
Expand Down Expand Up @@ -32,11 +32,11 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1|^7.2.5|^7.3|^8.0",
"php": "^7.1|^7.2.5|^7.3|^8.0|^8.1",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-curl": "*",
"laravel/framework": "^5.8|^6.0|^7.0|^8.0|^9.0"
"laravel/framework": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.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.2.8';
private const VERSION = '1.2.9';
private const ENDPOINT = 'http://api.resmush.it/';
private const TIMEOUT = 10;
private const MAX_FILE_SIZE = 5242880;
Expand Down

0 comments on commit 3bf577b

Please sign in to comment.