Skip to content

Commit

Permalink
Moved Laravel/framework from require-dev to require.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulhas Vardhan Golchha committed May 8, 2022
1 parent 5ab193a commit f9c23b2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## 1.2.8 - 2022-05-08

- Moved Laravel/framework from require-dev to require
- Added Laravel 9 support
- Version bump

## 1.2.7 - 2022-01-14

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

0 comments on commit f9c23b2

Please sign in to comment.