From 7b5304df3739b0681d58e9072d45c513938b0ce9 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 28 Dec 2021 22:28:55 +0100 Subject: [PATCH] Add JS facade and update packages to latest versions --- composer.lock | 40 ++++++++++++++++++++-------------------- config/app.php | 2 ++ 2 files changed, 22 insertions(+), 20 deletions(-) diff --git a/composer.lock b/composer.lock index d4665da31..b973f5b82 100644 --- a/composer.lock +++ b/composer.lock @@ -5159,22 +5159,22 @@ }, { "name": "mhor/php-mediainfo", - "version": "5.4.1", + "version": "5.4.2", "source": { "type": "git", "url": "https://github.com/mhor/php-mediainfo.git", - "reference": "737a00dbd0662d28f58276feb797e20cf9a250d0" + "reference": "37240c10936caebe9a6004b59430965233d65938" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mhor/php-mediainfo/zipball/737a00dbd0662d28f58276feb797e20cf9a250d0", - "reference": "737a00dbd0662d28f58276feb797e20cf9a250d0", + "url": "https://api.github.com/repos/mhor/php-mediainfo/zipball/37240c10936caebe9a6004b59430965233d65938", + "reference": "37240c10936caebe9a6004b59430965233d65938", "shasum": "" }, "require": { "php": ">=7.2", - "symfony/filesystem": "~3.4|~4.0|~5.0", - "symfony/process": "~3.4|~4.0|~5.0" + "symfony/filesystem": "~3.4|~4.0|~5.0|~6.0", + "symfony/process": "~3.4|~4.0|~5.0|~6.0" }, "require-dev": { "phpunit/phpunit": "~8.5" @@ -5209,9 +5209,9 @@ ], "support": { "issues": "https://github.com/mhor/php-mediainfo/issues", - "source": "https://github.com/mhor/php-mediainfo/tree/5.4.1" + "source": "https://github.com/mhor/php-mediainfo/tree/5.4.2" }, - "time": "2020-12-16T13:29:24+00:00" + "time": "2021-12-27T16:46:09+00:00" }, { "name": "monicahq/laravel-cloudflare", @@ -13265,16 +13265,16 @@ }, { "name": "facade/ignition", - "version": "2.17.2", + "version": "2.17.4", "source": { "type": "git", "url": "https://github.com/facade/ignition.git", - "reference": "af3cd70d58ca3ef5189ff0e59efbe5a5c043e2d2" + "reference": "95c80bd35ee6858e9e1439b2f6a698295eeb2070" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/ignition/zipball/af3cd70d58ca3ef5189ff0e59efbe5a5c043e2d2", - "reference": "af3cd70d58ca3ef5189ff0e59efbe5a5c043e2d2", + "url": "https://api.github.com/repos/facade/ignition/zipball/95c80bd35ee6858e9e1439b2f6a698295eeb2070", + "reference": "95c80bd35ee6858e9e1439b2f6a698295eeb2070", "shasum": "" }, "require": { @@ -13339,7 +13339,7 @@ "issues": "https://github.com/facade/ignition/issues", "source": "https://github.com/facade/ignition" }, - "time": "2021-11-29T14:04:22+00:00" + "time": "2021-12-27T15:11:24+00:00" }, { "name": "facade/ignition-contracts", @@ -14986,16 +14986,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.5.10", + "version": "9.5.11", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a" + "reference": "2406855036db1102126125537adb1406f7242fdd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c814a05837f2edb0d1471d6e3f4ab3501ca3899a", - "reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2406855036db1102126125537adb1406f7242fdd", + "reference": "2406855036db1102126125537adb1406f7242fdd", "shasum": "" }, "require": { @@ -15073,11 +15073,11 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.10" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.11" }, "funding": [ { - "url": "https://phpunit.de/donate.html", + "url": "https://phpunit.de/sponsors.html", "type": "custom" }, { @@ -15085,7 +15085,7 @@ "type": "github" } ], - "time": "2021-09-25T07:38:51+00:00" + "time": "2021-12-25T07:07:57+00:00" }, { "name": "sebastian/cli-parser", diff --git a/config/app.php b/config/app.php index 9ade23a55..59821b34d 100644 --- a/config/app.php +++ b/config/app.php @@ -198,6 +198,8 @@ return [ 'File' => Illuminate\Support\Facades\File::class, 'Gate' => Illuminate\Support\Facades\Gate::class, 'Hash' => Illuminate\Support\Facades\Hash::class, + 'Http' => Illuminate\Support\Facades\Http::class, + 'Js' => Illuminate\Support\Js::class, 'Lang' => Illuminate\Support\Facades\Lang::class, 'Log' => Illuminate\Support\Facades\Log::class, 'Mail' => Illuminate\Support\Facades\Mail::class,