From c24818efacd322afd62a4cfe4053df610980c4ee Mon Sep 17 00:00:00 2001 From: eboye Date: Sat, 4 Apr 2020 05:24:48 +0200 Subject: [PATCH] Laravel 7 support --- .gitignore | 1 + composer.json | 20 ++++++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 0b105da..59a7578 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ composer.lock .DS_Store /node_modules /yarn.lock +.idea diff --git a/composer.json b/composer.json index 5a9819d..ff8a9c7 100644 --- a/composer.json +++ b/composer.json @@ -1,16 +1,20 @@ { - "name": "bkwld/croppa", + "name": "eboye/croppa", "description": "Image thumbnail creation through specially formatted URLs for Laravel", - "authors": [{ "name": "Robert Reinhard" } ], + "authors": [ + { + "name": "Robert Reinhard" + } + ], "license": "MIT", "require": { - "php": ">=5.5.0", - "illuminate/console": "4 - 6", - "illuminate/support": "4 - 6", - "illuminate/routing": "4 - 6", + "php": "^7.2.5", + "illuminate/console": "4 - 7", + "illuminate/support": "4 - 7", + "illuminate/routing": "4 - 7", "league/flysystem": "~1.0", - "symfony/http-foundation": "2 - 4", - "symfony/http-kernel": "2 - 4", + "symfony/http-foundation": "2 - 5", + "symfony/http-kernel": "2 - 5", "weotch/PHPThumb": "^1.0.5" }, "require-dev": {