From 8a0a39b2d2fc6e9991cf36bef64d296bdc851ce2 Mon Sep 17 00:00:00 2001 From: Dinh Quoc Han Date: Tue, 3 Mar 2020 21:12:26 +0700 Subject: [PATCH] support laravel 7 --- README.md | 2 +- composer.json | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d568054..9664d83 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Allows you to use [Twig](https://twig.symfony.com/) in [Laravel](https://laravel ## Requirements -- PHP >= 7.2.0 +- PHP >= 7.2.5 - Laravel >= 6.x ## Installation diff --git a/composer.json b/composer.json index a0b51a6..f24cef3 100644 --- a/composer.json +++ b/composer.json @@ -12,15 +12,15 @@ } ], "require": { - "php": "^7.2.0", + "php": "^7.2.5", "ext-json": "*", - "illuminate/console": "^6", - "illuminate/support": "^6", - "illuminate/view": "^6", + "illuminate/console": "^6|^7", + "illuminate/support": "^6|^7", + "illuminate/view": "^6|^7", "twig/twig": "~3.0" }, "require-dev": { - "laravel/framework": "^6", + "laravel/framework": "^6|^7", "mockery/mockery": "^1.3.1", "phpunit/phpunit": "^8.4|^9.0" },