From 7a27f196cad073f79136bba47d1edb21a2f7a847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Lo=CC=88sken?= Date: Tue, 3 Mar 2020 14:56:36 +0100 Subject: [PATCH] Fix #40, adding Laravel 7 --- composer.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index e58379c..99c047e 100644 --- a/composer.json +++ b/composer.json @@ -28,12 +28,13 @@ } }, "require": { - "php": ">=7.2", - "illuminate/support": "5.*|6.*" + "php": ">=7.3", + "illuminate/support": "^6.0|^7.0" }, "autoload": { "psr-4": { "Codedge\\Fpdf\\": "src/" } - } + }, + "minimum-stability": "dev" }