From 59395061bedcb2fa33185a548c8ce677a3cd81e4 Mon Sep 17 00:00:00 2001 From: Gerben Date: Fri, 5 Oct 2018 20:01:01 +0200 Subject: [PATCH] Fix missing dependency The array class is used in the container and the contextual binding builder. If only the service container is required in another project, `Illuminate\Support\Arr` will not be present after updating or installing Composer dependencies. --- src/Illuminate/Container/composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Illuminate/Container/composer.json b/src/Illuminate/Container/composer.json index 3dd083c8c696..593f2fb6dc16 100755 --- a/src/Illuminate/Container/composer.json +++ b/src/Illuminate/Container/composer.json @@ -16,6 +16,7 @@ "require": { "php": "^7.1.3", "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", "psr/container": "^1.0" }, "autoload": {