From dbb80a9d4ebd0f1d92e1c542870fd5e6cf2c9aaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Cort=C3=A9s?= Date: Wed, 9 Jun 2021 16:24:18 -0400 Subject: [PATCH] Cambios generales, a ver si volvemos al desarrollo --- backend/.env.example | 10 +- backend/app/Console/Kernel.php | 23 +- backend/app/Events/Event.php | 3 +- backend/app/Events/ExampleEvent.php | 13 +- backend/app/Exceptions/Handler.php | 33 +- backend/app/Http/Controllers/Controller.php | 3 +- backend/app/Http/Middleware/Authenticate.php | 28 +- .../app/Http/Middleware/ExampleMiddleware.php | 20 - backend/app/Jobs/ExampleJob.php | 23 +- backend/app/Jobs/Job.php | 14 +- backend/app/Listeners/ExampleListener.php | 24 +- backend/app/Providers/AppServiceProvider.php | 11 +- backend/app/Providers/AuthServiceProvider.php | 39 -- .../app/Providers/EventServiceProvider.php | 8 +- backend/app/Traits/UuidPrimaryKey.php | 12 +- backend/composer.lock | 559 +++++++++--------- backend/tests/TestCase.php | 11 +- 17 files changed, 314 insertions(+), 520 deletions(-) delete mode 100644 backend/app/Http/Middleware/ExampleMiddleware.php delete mode 100644 backend/app/Providers/AuthServiceProvider.php diff --git a/backend/.env.example b/backend/.env.example index 1e2fa8d..61e6873 100644 --- a/backend/.env.example +++ b/backend/.env.example @@ -3,25 +3,27 @@ APP_ENV=local APP_KEY= APP_DEBUG=true APP_URL=http://localhost + +APP_LOCALE=es APP_TIMEZONE=America/Santiago LOG_CHANNEL=stack -LOG_SLACK_WEBHOOK_URL= -DB_CONNECTION=postgresql +DB_CONNECTION=pgsql DB_HOST=127.0.0.1 DB_PORT=5432 DB_DATABASE=restaurant DB_USERNAME=user DB_PASSWORD=password -CACHE_DRIVER=file +CACHE_DRIVER=redis +REDIS_CLIENT=predis + QUEUE_CONNECTION=sync AUTH0_DOMAIN=https://super-domain.auth0.com/ AUTH0_AUD=https://audience - AUTH0_API_AUD=https://super-domain.auth0.com/api/v2/ AUTH0_CLIENT_ID=secret AUTH0_CLIENT_SECRET=secret diff --git a/backend/app/Console/Kernel.php b/backend/app/Console/Kernel.php index ad6e311..bcbfab6 100644 --- a/backend/app/Console/Kernel.php +++ b/backend/app/Console/Kernel.php @@ -5,25 +5,8 @@ namespace App\Console; use Illuminate\Console\Scheduling\Schedule; use Laravel\Lumen\Console\Kernel as ConsoleKernel; -class Kernel extends ConsoleKernel -{ - /** - * The Artisan commands provided by your application. - * - * @var array - */ - protected $commands = [ - // - ]; +class Kernel extends ConsoleKernel { + protected $commands = []; - /** - * Define the application's command schedule. - * - * @param \Illuminate\Console\Scheduling\Schedule $schedule - * @return void - */ - protected function schedule(Schedule $schedule) - { - // - } + protected function schedule(Schedule $schedule) {} } diff --git a/backend/app/Events/Event.php b/backend/app/Events/Event.php index b8230f0..d3b9e01 100644 --- a/backend/app/Events/Event.php +++ b/backend/app/Events/Event.php @@ -4,7 +4,6 @@ namespace App\Events; use Illuminate\Queue\SerializesModels; -abstract class Event -{ +abstract class Event { use SerializesModels; } diff --git a/backend/app/Events/ExampleEvent.php b/backend/app/Events/ExampleEvent.php index 4bd1268..420b940 100644 --- a/backend/app/Events/ExampleEvent.php +++ b/backend/app/Events/ExampleEvent.php @@ -2,15 +2,6 @@ namespace App\Events; -class ExampleEvent extends Event -{ - /** - * Create a new event instance. - * - * @return void - */ - public function __construct() - { - // - } +class ExampleEvent extends Event { + public function __construct() {} } diff --git a/backend/app/Exceptions/Handler.php b/backend/app/Exceptions/Handler.php index b375c61..c5d889f 100644 --- a/backend/app/Exceptions/Handler.php +++ b/backend/app/Exceptions/Handler.php @@ -9,13 +9,7 @@ use Laravel\Lumen\Exceptions\Handler as ExceptionHandler; use Symfony\Component\HttpKernel\Exception\HttpException; use Throwable; -class Handler extends ExceptionHandler -{ - /** - * A list of the exception types that should not be reported. - * - * @var array - */ +class Handler extends ExceptionHandler { protected $dontReport = [ AuthorizationException::class, HttpException::class, @@ -23,32 +17,11 @@ class Handler extends ExceptionHandler ValidationException::class, ]; - /** - * Report or log an exception. - * - * This is a great spot to send exceptions to Sentry, Bugsnag, etc. - * - * @param \Throwable $exception - * @return void - * - * @throws \Exception - */ - public function report(Throwable $exception) - { + public function report(Throwable $exception) { parent::report($exception); } - /** - * Render an exception into an HTTP response. - * - * @param \Illuminate\Http\Request $request - * @param \Throwable $exception - * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse - * - * @throws \Throwable - */ - public function render($request, Throwable $exception) - { + public function render($request, Throwable $exception) { return parent::render($request, $exception); } } diff --git a/backend/app/Http/Controllers/Controller.php b/backend/app/Http/Controllers/Controller.php index 2562b53..38c7a60 100644 --- a/backend/app/Http/Controllers/Controller.php +++ b/backend/app/Http/Controllers/Controller.php @@ -5,8 +5,7 @@ namespace App\Http\Controllers; use Illuminate\Http\Request; use Laravel\Lumen\Routing\Controller as BaseController; -class Controller extends BaseController -{ +class Controller extends BaseController { protected function buildFailedValidationResponse(Request $request, array $errors) { return ["error" => "validation_error", "message" => $errors]; } diff --git a/backend/app/Http/Middleware/Authenticate.php b/backend/app/Http/Middleware/Authenticate.php index 361a11e..4a88761 100644 --- a/backend/app/Http/Middleware/Authenticate.php +++ b/backend/app/Http/Middleware/Authenticate.php @@ -5,36 +5,14 @@ namespace App\Http\Middleware; use Closure; use Illuminate\Contracts\Auth\Factory as Auth; -class Authenticate -{ - /** - * The authentication guard factory instance. - * - * @var \Illuminate\Contracts\Auth\Factory - */ +class Authenticate { protected $auth; - /** - * Create a new middleware instance. - * - * @param \Illuminate\Contracts\Auth\Factory $auth - * @return void - */ - public function __construct(Auth $auth) - { + public function __construct(Auth $auth) { $this->auth = $auth; } - /** - * Handle an incoming request. - * - * @param \Illuminate\Http\Request $request - * @param \Closure $next - * @param string|null $guard - * @return mixed - */ - public function handle($request, Closure $next, $guard = null) - { + public function handle($request, Closure $next, $guard = null) { if ($this->auth->guard($guard)->guest()) { return response('Unauthorized.', 401); } diff --git a/backend/app/Http/Middleware/ExampleMiddleware.php b/backend/app/Http/Middleware/ExampleMiddleware.php deleted file mode 100644 index 166581c..0000000 --- a/backend/app/Http/Middleware/ExampleMiddleware.php +++ /dev/null @@ -1,20 +0,0 @@ -app->singleton(Auth0Service::class, function($app) { return new Auth0Service($app); }); diff --git a/backend/app/Providers/AuthServiceProvider.php b/backend/app/Providers/AuthServiceProvider.php deleted file mode 100644 index 8540053..0000000 --- a/backend/app/Providers/AuthServiceProvider.php +++ /dev/null @@ -1,39 +0,0 @@ -app['auth']->viaRequest('api', function ($request) { - if ($request->input('api_token')) { - return User::where('api_token', $request->input('api_token'))->first(); - } - }); - } -} diff --git a/backend/app/Providers/EventServiceProvider.php b/backend/app/Providers/EventServiceProvider.php index 6830e60..1135872 100644 --- a/backend/app/Providers/EventServiceProvider.php +++ b/backend/app/Providers/EventServiceProvider.php @@ -4,13 +4,7 @@ namespace App\Providers; use Laravel\Lumen\Providers\EventServiceProvider as ServiceProvider; -class EventServiceProvider extends ServiceProvider -{ - /** - * The event listener mappings for the application. - * - * @var array - */ +class EventServiceProvider extends ServiceProvider { protected $listen = [ \App\Events\ExampleEvent::class => [ \App\Listeners\ExampleListener::class, diff --git a/backend/app/Traits/UuidPrimaryKey.php b/backend/app/Traits/UuidPrimaryKey.php index cdb53bc..c9ce505 100644 --- a/backend/app/Traits/UuidPrimaryKey.php +++ b/backend/app/Traits/UuidPrimaryKey.php @@ -3,14 +3,6 @@ namespace App\Traits; trait UuidPrimaryKey { - - public function getKeyType() - { - return 'string'; - } - - public function getIncrementing() - { - return false; - } + public function getKeyType() { return 'string'; } + public function getIncrementing() { return false; } } diff --git a/backend/composer.lock b/backend/composer.lock index 9e3ed14..274c161 100644 --- a/backend/composer.lock +++ b/backend/composer.lock @@ -8,23 +8,23 @@ "packages": [ { "name": "auth0/auth0-php", - "version": "7.8.0", + "version": "7.9.0", "source": { "type": "git", "url": "https://github.com/auth0/auth0-PHP.git", - "reference": "05c538b6c56a57d6d214f6a90e2b6a5d00945a51" + "reference": "0611fbabcb802ac63533f1c0ff5bd765e22f4aa3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/auth0/auth0-PHP/zipball/05c538b6c56a57d6d214f6a90e2b6a5d00945a51", - "reference": "05c538b6c56a57d6d214f6a90e2b6a5d00945a51", + "url": "https://api.github.com/repos/auth0/auth0-PHP/zipball/0611fbabcb802ac63533f1c0ff5bd765e22f4aa3", + "reference": "0611fbabcb802ac63533f1c0ff5bd765e22f4aa3", "shasum": "" }, "require": { "auth0/php-jwt": "3.3.4", "ext-json": "*", "ext-openssl": "*", - "guzzlehttp/guzzle": "^7.2", + "guzzlehttp/guzzle": "^6.0|^7.0", "php": "^7.3 | ^8.0", "psr/simple-cache": "^1.0" }, @@ -60,9 +60,9 @@ "homepage": "https://github.com/auth0/auth0-PHP", "support": { "issues": "https://github.com/auth0/auth0-PHP/issues", - "source": "https://github.com/auth0/auth0-PHP/tree/7.8.0" + "source": "https://github.com/auth0/auth0-PHP/tree/7.9.0" }, - "time": "2021-04-01T20:29:08+00:00" + "time": "2021-05-04T00:30:48+00:00" }, { "name": "auth0/php-jwt", @@ -718,16 +718,16 @@ }, { "name": "guzzlehttp/psr7", - "version": "1.8.1", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1" + "reference": "dc960a912984efb74d0a90222870c72c87f10c91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/35ea11d335fd638b5882ff1725228b3d35496ab1", - "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91", + "reference": "dc960a912984efb74d0a90222870c72c87f10c91", "shasum": "" }, "require": { @@ -787,22 +787,22 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.8.1" + "source": "https://github.com/guzzle/psr7/tree/1.8.2" }, - "time": "2021-03-21T16:25:00+00:00" + "time": "2021-04-26T09:17:50+00:00" }, { "name": "illuminate/auth", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/auth.git", - "reference": "80bbc2b5a3f6abcb45a9401f15c6534a59517777" + "reference": "b3aa22ee1dd239f23a6fed1caeaa980bc9a01f74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/auth/zipball/80bbc2b5a3f6abcb45a9401f15c6534a59517777", - "reference": "80bbc2b5a3f6abcb45a9401f15c6534a59517777", + "url": "https://api.github.com/repos/illuminate/auth/zipball/b3aa22ee1dd239f23a6fed1caeaa980bc9a01f74", + "reference": "b3aa22ee1dd239f23a6fed1caeaa980bc9a01f74", "shasum": "" }, "require": { @@ -846,20 +846,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-03-26T18:39:16+00:00" + "time": "2021-05-19T18:02:19+00:00" }, { "name": "illuminate/broadcasting", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/broadcasting.git", - "reference": "4e838344ea793325f2f74e695e19a23922489612" + "reference": "312800b0345d92465e337a574f1e8c18501d2579" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/4e838344ea793325f2f74e695e19a23922489612", - "reference": "4e838344ea793325f2f74e695e19a23922489612", + "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/312800b0345d92465e337a574f1e8c18501d2579", + "reference": "312800b0345d92465e337a574f1e8c18501d2579", "shasum": "" }, "require": { @@ -873,7 +873,7 @@ "psr/log": "^1.0" }, "suggest": { - "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0)." + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0)." }, "type": "library", "extra": { @@ -902,20 +902,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-19T12:29:33+00:00" + "time": "2021-06-01T14:53:38+00:00" }, { "name": "illuminate/bus", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/bus.git", - "reference": "84628992cbf04cce3b337324200f41b7d25b1926" + "reference": "2156797125702623af47983867c05cc965490c19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/bus/zipball/84628992cbf04cce3b337324200f41b7d25b1926", - "reference": "84628992cbf04cce3b337324200f41b7d25b1926", + "url": "https://api.github.com/repos/illuminate/bus/zipball/2156797125702623af47983867c05cc965490c19", + "reference": "2156797125702623af47983867c05cc965490c19", "shasum": "" }, "require": { @@ -955,20 +955,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-18T20:23:32+00:00" + "time": "2021-05-18T12:49:19+00:00" }, { "name": "illuminate/cache", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/cache.git", - "reference": "8e7e15e726895a757f23602f410f4b28567214a8" + "reference": "499d15db9b58b5701aa85a4790ae1404d79009aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/cache/zipball/8e7e15e726895a757f23602f410f4b28567214a8", - "reference": "8e7e15e726895a757f23602f410f4b28567214a8", + "url": "https://api.github.com/repos/illuminate/cache/zipball/499d15db9b58b5701aa85a4790ae1404d79009aa", + "reference": "499d15db9b58b5701aa85a4790ae1404d79009aa", "shasum": "" }, "require": { @@ -1012,20 +1012,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-01T12:57:50+00:00" + "time": "2021-05-18T12:49:19+00:00" }, { "name": "illuminate/collections", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/collections.git", - "reference": "21690cd5591f2d42d792e5e4a687f9beba829f1d" + "reference": "deccb956d38710f3f8baf36dd876c3fa1585ec22" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/collections/zipball/21690cd5591f2d42d792e5e4a687f9beba829f1d", - "reference": "21690cd5591f2d42d792e5e4a687f9beba829f1d", + "url": "https://api.github.com/repos/illuminate/collections/zipball/deccb956d38710f3f8baf36dd876c3fa1585ec22", + "reference": "deccb956d38710f3f8baf36dd876c3fa1585ec22", "shasum": "" }, "require": { @@ -1066,11 +1066,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-14T11:48:08+00:00" + "time": "2021-04-22T21:08:09+00:00" }, { "name": "illuminate/config", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/config.git", @@ -1118,16 +1118,16 @@ }, { "name": "illuminate/console", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/console.git", - "reference": "dcc1fd330b7ea8fcf259bbf73243bfedc98e45a3" + "reference": "1f1ff88a2efbfc85f87ea7d8283acbefc5b56191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/console/zipball/dcc1fd330b7ea8fcf259bbf73243bfedc98e45a3", - "reference": "dcc1fd330b7ea8fcf259bbf73243bfedc98e45a3", + "url": "https://api.github.com/repos/illuminate/console/zipball/1f1ff88a2efbfc85f87ea7d8283acbefc5b56191", + "reference": "1f1ff88a2efbfc85f87ea7d8283acbefc5b56191", "shasum": "" }, "require": { @@ -1174,20 +1174,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-03-16T21:53:44+00:00" + "time": "2021-06-04T13:29:57+00:00" }, { "name": "illuminate/container", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/container.git", - "reference": "0e38ee1632d470e56aece0079e6e22d13e6bea8e" + "reference": "07342efca88cf9fff4f2fa0e3c378ea6ee86e5e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/container/zipball/0e38ee1632d470e56aece0079e6e22d13e6bea8e", - "reference": "0e38ee1632d470e56aece0079e6e22d13e6bea8e", + "url": "https://api.github.com/repos/illuminate/container/zipball/07342efca88cf9fff4f2fa0e3c378ea6ee86e5e2", + "reference": "07342efca88cf9fff4f2fa0e3c378ea6ee86e5e2", "shasum": "" }, "require": { @@ -1225,20 +1225,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-03-16T19:42:20+00:00" + "time": "2021-05-18T12:49:19+00:00" }, { "name": "illuminate/contracts", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/contracts.git", - "reference": "5764f703ea8f74ced163125d810951cd5ef2b7e1" + "reference": "199fcedc161ba4a0b83feaddc4629f395dbf1641" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/contracts/zipball/5764f703ea8f74ced163125d810951cd5ef2b7e1", - "reference": "5764f703ea8f74ced163125d810951cd5ef2b7e1", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/199fcedc161ba4a0b83feaddc4629f395dbf1641", + "reference": "199fcedc161ba4a0b83feaddc4629f395dbf1641", "shasum": "" }, "require": { @@ -1273,20 +1273,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-01T13:09:31+00:00" + "time": "2021-06-01T14:53:38+00:00" }, { "name": "illuminate/database", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/database.git", - "reference": "03c0525b693587f877f4d80dcc55597528c98fc0" + "reference": "a86efc94475ca00e1a11cfe7ee212699af9ddd61" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/database/zipball/03c0525b693587f877f4d80dcc55597528c98fc0", - "reference": "03c0525b693587f877f4d80dcc55597528c98fc0", + "url": "https://api.github.com/repos/illuminate/database/zipball/a86efc94475ca00e1a11cfe7ee212699af9ddd61", + "reference": "a86efc94475ca00e1a11cfe7ee212699af9ddd61", "shasum": "" }, "require": { @@ -1341,20 +1341,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-17T17:53:05+00:00" + "time": "2021-06-08T13:23:07+00:00" }, { "name": "illuminate/encryption", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/encryption.git", - "reference": "ca375feaf23335dd42a8a07bdd08f0f8e34219b6" + "reference": "5f8f933a65a60a7a0714981c56757b65aaaa3d2d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/encryption/zipball/ca375feaf23335dd42a8a07bdd08f0f8e34219b6", - "reference": "ca375feaf23335dd42a8a07bdd08f0f8e34219b6", + "url": "https://api.github.com/repos/illuminate/encryption/zipball/5f8f933a65a60a7a0714981c56757b65aaaa3d2d", + "reference": "5f8f933a65a60a7a0714981c56757b65aaaa3d2d", "shasum": "" }, "require": { @@ -1392,11 +1392,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-03-12T14:45:30+00:00" + "time": "2021-05-18T12:49:19+00:00" }, { "name": "illuminate/events", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/events.git", @@ -1451,16 +1451,16 @@ }, { "name": "illuminate/filesystem", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/filesystem.git", - "reference": "8ef5902052c5b3bb4a6c1c3afc399f30e7723cb8" + "reference": "7c7372874615475f46d484a2190f90e8effcd8b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/filesystem/zipball/8ef5902052c5b3bb4a6c1c3afc399f30e7723cb8", - "reference": "8ef5902052c5b3bb4a6c1c3afc399f30e7723cb8", + "url": "https://api.github.com/repos/illuminate/filesystem/zipball/7c7372874615475f46d484a2190f90e8effcd8b5", + "reference": "7c7372874615475f46d484a2190f90e8effcd8b5", "shasum": "" }, "require": { @@ -1509,11 +1509,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-05T18:45:36+00:00" + "time": "2021-05-18T12:49:19+00:00" }, { "name": "illuminate/hashing", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/hashing.git", @@ -1561,16 +1561,16 @@ }, { "name": "illuminate/http", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/http.git", - "reference": "31250d00cb652f315f88d91107e1e45beae4b1aa" + "reference": "5960bb86a9c9aa24ac4bde3684b9132803ef20ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/http/zipball/31250d00cb652f315f88d91107e1e45beae4b1aa", - "reference": "31250d00cb652f315f88d91107e1e45beae4b1aa", + "url": "https://api.github.com/repos/illuminate/http/zipball/5960bb86a9c9aa24ac4bde3684b9132803ef20ff", + "reference": "5960bb86a9c9aa24ac4bde3684b9132803ef20ff", "shasum": "" }, "require": { @@ -1615,11 +1615,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-20T12:42:40+00:00" + "time": "2021-06-04T18:36:12+00:00" }, { "name": "illuminate/log", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/log.git", @@ -1668,7 +1668,7 @@ }, { "name": "illuminate/macroable", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/macroable.git", @@ -1714,16 +1714,16 @@ }, { "name": "illuminate/pagination", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/pagination.git", - "reference": "11839988f114cb80d48b3ca088d65f19388d5a8d" + "reference": "dbbc35141cdd843520e1e67de320c1c1e6ff12cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/pagination/zipball/11839988f114cb80d48b3ca088d65f19388d5a8d", - "reference": "11839988f114cb80d48b3ca088d65f19388d5a8d", + "url": "https://api.github.com/repos/illuminate/pagination/zipball/dbbc35141cdd843520e1e67de320c1c1e6ff12cd", + "reference": "dbbc35141cdd843520e1e67de320c1c1e6ff12cd", "shasum": "" }, "require": { @@ -1760,11 +1760,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-13T12:54:24+00:00" + "time": "2021-05-24T13:13:32+00:00" }, { "name": "illuminate/pipeline", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/pipeline.git", @@ -1812,16 +1812,16 @@ }, { "name": "illuminate/queue", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/queue.git", - "reference": "55008cb4af2e0ede708a506e08ba3c404a8f37d7" + "reference": "7c8ae5f16ba03615671c789fcce21c111cb47b75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/queue/zipball/55008cb4af2e0ede708a506e08ba3c404a8f37d7", - "reference": "55008cb4af2e0ede708a506e08ba3c404a8f37d7", + "url": "https://api.github.com/repos/illuminate/queue/zipball/7c8ae5f16ba03615671c789fcce21c111cb47b75", + "reference": "7c8ae5f16ba03615671c789fcce21c111cb47b75", "shasum": "" }, "require": { @@ -1873,11 +1873,11 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-15T11:53:14+00:00" + "time": "2021-05-21T17:46:16+00:00" }, { "name": "illuminate/redis", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/redis.git", @@ -1931,16 +1931,16 @@ }, { "name": "illuminate/session", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/session.git", - "reference": "5fee71ca59ce9f8c89ea78a0a2904fcefca772f4" + "reference": "40b9a38558b7b232fe68a75c18fa7959a25dc9e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/session/zipball/5fee71ca59ce9f8c89ea78a0a2904fcefca772f4", - "reference": "5fee71ca59ce9f8c89ea78a0a2904fcefca772f4", + "url": "https://api.github.com/repos/illuminate/session/zipball/40b9a38558b7b232fe68a75c18fa7959a25dc9e5", + "reference": "40b9a38558b7b232fe68a75c18fa7959a25dc9e5", "shasum": "" }, "require": { @@ -1983,20 +1983,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-11T16:12:42+00:00" + "time": "2021-05-31T12:52:50+00:00" }, { "name": "illuminate/support", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/support.git", - "reference": "735391f31e145aad4f7aff3d9736ef70452dd1fe" + "reference": "79e1ec26d58426e4f06e5b548712a8a6dc1ffdca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/support/zipball/735391f31e145aad4f7aff3d9736ef70452dd1fe", - "reference": "735391f31e145aad4f7aff3d9736ef70452dd1fe", + "url": "https://api.github.com/repos/illuminate/support/zipball/79e1ec26d58426e4f06e5b548712a8a6dc1ffdca", + "reference": "79e1ec26d58426e4f06e5b548712a8a6dc1ffdca", "shasum": "" }, "require": { @@ -2051,20 +2051,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-15T11:51:39+00:00" + "time": "2021-06-08T13:14:36+00:00" }, { "name": "illuminate/testing", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/testing.git", - "reference": "35d3470c66033cb9dce57b172c401b1a3194d6ff" + "reference": "e7e26f49092521dcba88a815e01a355f7270743f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/testing/zipball/35d3470c66033cb9dce57b172c401b1a3194d6ff", - "reference": "35d3470c66033cb9dce57b172c401b1a3194d6ff", + "url": "https://api.github.com/repos/illuminate/testing/zipball/e7e26f49092521dcba88a815e01a355f7270743f", + "reference": "e7e26f49092521dcba88a815e01a355f7270743f", "shasum": "" }, "require": { @@ -2109,20 +2109,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-14T11:48:08+00:00" + "time": "2021-06-01T20:26:26+00:00" }, { "name": "illuminate/translation", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/translation.git", - "reference": "0fffa8b8f6eed8b4e17eac9d457befbcbae02b47" + "reference": "2af0b8af56468284d7ce4fb61e0fc7b3c0194fc8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/translation/zipball/0fffa8b8f6eed8b4e17eac9d457befbcbae02b47", - "reference": "0fffa8b8f6eed8b4e17eac9d457befbcbae02b47", + "url": "https://api.github.com/repos/illuminate/translation/zipball/2af0b8af56468284d7ce4fb61e0fc7b3c0194fc8", + "reference": "2af0b8af56468284d7ce4fb61e0fc7b3c0194fc8", "shasum": "" }, "require": { @@ -2161,20 +2161,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-03-21T13:42:27+00:00" + "time": "2021-05-18T12:49:19+00:00" }, { "name": "illuminate/validation", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/validation.git", - "reference": "e97e8f523559f085a56c0c4b18bf307351a4071b" + "reference": "679a8eec1a7e75eb7f89ec5d3ae20af750a0d818" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/validation/zipball/e97e8f523559f085a56c0c4b18bf307351a4071b", - "reference": "e97e8f523559f085a56c0c4b18bf307351a4071b", + "url": "https://api.github.com/repos/illuminate/validation/zipball/679a8eec1a7e75eb7f89ec5d3ae20af750a0d818", + "reference": "679a8eec1a7e75eb7f89ec5d3ae20af750a0d818", "shasum": "" }, "require": { @@ -2220,20 +2220,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-15T13:30:40+00:00" + "time": "2021-06-08T13:24:10+00:00" }, { "name": "illuminate/view", - "version": "v8.38.0", + "version": "v8.46.0", "source": { "type": "git", "url": "https://github.com/illuminate/view.git", - "reference": "696a1d6d2213be192429e97245a3d2bb4d6d1849" + "reference": "0aa62b8e2ed4ad0fd6b251f7eda9079364f1cba7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/view/zipball/696a1d6d2213be192429e97245a3d2bb4d6d1849", - "reference": "696a1d6d2213be192429e97245a3d2bb4d6d1849", + "url": "https://api.github.com/repos/illuminate/view/zipball/0aa62b8e2ed4ad0fd6b251f7eda9079364f1cba7", + "reference": "0aa62b8e2ed4ad0fd6b251f7eda9079364f1cba7", "shasum": "" }, "require": { @@ -2274,7 +2274,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2020-11-02T14:01:41+00:00" + "time": "2021-06-07T13:41:00+00:00" }, { "name": "laravel/lumen-framework", @@ -2471,16 +2471,16 @@ }, { "name": "nesbot/carbon", - "version": "2.46.0", + "version": "2.49.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4" + "reference": "93d9db91c0235c486875d22f1e08b50bdf3e6eee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4", - "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/93d9db91c0235c486875d22f1e08b50bdf3e6eee", + "reference": "93d9db91c0235c486875d22f1e08b50bdf3e6eee", "shasum": "" }, "require": { @@ -2560,7 +2560,7 @@ "type": "tidelift" } ], - "time": "2021-02-24T17:30:44+00:00" + "time": "2021-06-02T07:31:40+00:00" }, { "name": "nikic/fast-route", @@ -3017,16 +3017,16 @@ }, { "name": "psr/log", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", "shasum": "" }, "require": { @@ -3050,7 +3050,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for logging libraries", @@ -3061,9 +3061,9 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/1.1.3" + "source": "https://github.com/php-fig/log/tree/1.1.4" }, - "time": "2020-03-23T09:12:05+00:00" + "time": "2021-05-03T11:20:27+00:00" }, { "name": "psr/simple-cache", @@ -3331,20 +3331,21 @@ }, { "name": "symfony/console", - "version": "v5.2.6", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d" + "reference": "058553870f7809087fa80fa734704a21b9bcaeb2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/35f039df40a3b335ebf310f244cb242b3a83ac8d", - "reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d", + "url": "https://api.github.com/repos/symfony/console/zipball/058553870f7809087fa80fa734704a21b9bcaeb2", + "reference": "058553870f7809087fa80fa734704a21b9bcaeb2", "shasum": "" }, "require": { "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php73": "^1.8", "symfony/polyfill-php80": "^1.15", @@ -3408,7 +3409,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.2.6" + "source": "https://github.com/symfony/console/tree/v5.3.0" }, "funding": [ { @@ -3424,7 +3425,7 @@ "type": "tidelift" } ], - "time": "2021-03-28T09:42:18+00:00" + "time": "2021-05-26T17:43:10+00:00" }, { "name": "symfony/deprecation-contracts", @@ -3495,16 +3496,16 @@ }, { "name": "symfony/error-handler", - "version": "v5.2.6", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "bdb7fb4188da7f4211e4b88350ba0dfdad002b03" + "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/bdb7fb4188da7f4211e4b88350ba0dfdad002b03", - "reference": "bdb7fb4188da7f4211e4b88350ba0dfdad002b03", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/0e6768b8c0dcef26df087df2bbbaa143867a59b2", + "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2", "shasum": "" }, "require": { @@ -3544,7 +3545,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v5.2.6" + "source": "https://github.com/symfony/error-handler/tree/v5.3.0" }, "funding": [ { @@ -3560,20 +3561,20 @@ "type": "tidelift" } ], - "time": "2021-03-16T09:07:47+00:00" + "time": "2021-05-26T17:43:10+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.2.4", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "d08d6ec121a425897951900ab692b612a61d6240" + "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d08d6ec121a425897951900ab692b612a61d6240", - "reference": "d08d6ec121a425897951900ab692b612a61d6240", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/67a5f354afa8e2f231081b3fa11a5912f933c3ce", + "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce", "shasum": "" }, "require": { @@ -3629,7 +3630,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.4" + "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.0" }, "funding": [ { @@ -3645,7 +3646,7 @@ "type": "tidelift" } ], - "time": "2021-02-18T17:12:37+00:00" + "time": "2021-05-26T17:43:10+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -3728,16 +3729,16 @@ }, { "name": "symfony/finder", - "version": "v5.2.4", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "0d639a0943822626290d169965804f79400e6a04" + "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04", - "reference": "0d639a0943822626290d169965804f79400e6a04", + "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", + "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", "shasum": "" }, "require": { @@ -3769,7 +3770,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.2.4" + "source": "https://github.com/symfony/finder/tree/v5.3.0" }, "funding": [ { @@ -3785,7 +3786,7 @@ "type": "tidelift" } ], - "time": "2021-02-15T18:55:04+00:00" + "time": "2021-05-26T12:52:38+00:00" }, { "name": "symfony/http-client-contracts", @@ -3867,16 +3868,16 @@ }, { "name": "symfony/http-foundation", - "version": "v5.2.4", + "version": "v5.3.1", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "54499baea7f7418bce7b5ec92770fd0799e8e9bf" + "reference": "8827b90cf8806e467124ad476acd15216c2fceb6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/54499baea7f7418bce7b5ec92770fd0799e8e9bf", - "reference": "54499baea7f7418bce7b5ec92770fd0799e8e9bf", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8827b90cf8806e467124ad476acd15216c2fceb6", + "reference": "8827b90cf8806e467124ad476acd15216c2fceb6", "shasum": "" }, "require": { @@ -3920,7 +3921,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v5.2.4" + "source": "https://github.com/symfony/http-foundation/tree/v5.3.1" }, "funding": [ { @@ -3936,20 +3937,20 @@ "type": "tidelift" } ], - "time": "2021-02-25T17:16:57+00:00" + "time": "2021-06-02T09:32:00+00:00" }, { "name": "symfony/http-kernel", - "version": "v5.2.6", + "version": "v5.3.1", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "f34de4c61ca46df73857f7f36b9a3805bdd7e3b2" + "reference": "74eb022e3bac36b3d3a897951a98759f2b32b864" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f34de4c61ca46df73857f7f36b9a3805bdd7e3b2", - "reference": "f34de4c61ca46df73857f7f36b9a3805bdd7e3b2", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/74eb022e3bac36b3d3a897951a98759f2b32b864", + "reference": "74eb022e3bac36b3d3a897951a98759f2b32b864", "shasum": "" }, "require": { @@ -3959,7 +3960,7 @@ "symfony/error-handler": "^4.4|^5.0", "symfony/event-dispatcher": "^5.0", "symfony/http-client-contracts": "^1.1|^2", - "symfony/http-foundation": "^4.4|^5.0", + "symfony/http-foundation": "^5.3", "symfony/polyfill-ctype": "^1.8", "symfony/polyfill-php73": "^1.9", "symfony/polyfill-php80": "^1.15" @@ -3969,7 +3970,7 @@ "symfony/cache": "<5.0", "symfony/config": "<5.0", "symfony/console": "<4.4", - "symfony/dependency-injection": "<5.1.8", + "symfony/dependency-injection": "<5.3", "symfony/doctrine-bridge": "<5.0", "symfony/form": "<5.0", "symfony/http-client": "<5.0", @@ -3989,7 +3990,7 @@ "symfony/config": "^5.0", "symfony/console": "^4.4|^5.0", "symfony/css-selector": "^4.4|^5.0", - "symfony/dependency-injection": "^5.1.8", + "symfony/dependency-injection": "^5.3", "symfony/dom-crawler": "^4.4|^5.0", "symfony/expression-language": "^4.4|^5.0", "symfony/finder": "^4.4|^5.0", @@ -4032,7 +4033,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v5.2.6" + "source": "https://github.com/symfony/http-kernel/tree/v5.3.1" }, "funding": [ { @@ -4048,20 +4049,20 @@ "type": "tidelift" } ], - "time": "2021-03-29T05:16:58+00:00" + "time": "2021-06-02T10:07:12+00:00" }, { "name": "symfony/mime", - "version": "v5.2.6", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "1b2092244374cbe48ae733673f2ca0818b37197b" + "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/1b2092244374cbe48ae733673f2ca0818b37197b", - "reference": "1b2092244374cbe48ae733673f2ca0818b37197b", + "url": "https://api.github.com/repos/symfony/mime/zipball/ed710d297b181f6a7194d8172c9c2423d58e4852", + "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852", "shasum": "" }, "require": { @@ -4115,7 +4116,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v5.2.6" + "source": "https://github.com/symfony/mime/tree/v5.3.0" }, "funding": [ { @@ -4131,20 +4132,20 @@ "type": "tidelift" } ], - "time": "2021-03-12T13:18:39+00:00" + "time": "2021-05-26T17:43:10+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "c6c942b1ac76c82448322025e084cadc56048b4e" + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e", - "reference": "c6c942b1ac76c82448322025e084cadc56048b4e", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", "shasum": "" }, "require": { @@ -4156,7 +4157,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4194,7 +4195,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0" }, "funding": [ { @@ -4210,20 +4211,20 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170" + "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170", - "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab", + "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab", "shasum": "" }, "require": { @@ -4235,7 +4236,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4275,7 +4276,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0" }, "funding": [ { @@ -4291,20 +4292,20 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2021-05-27T09:17:38+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "2d63434d922daf7da8dd863e7907e67ee3031483" + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483", - "reference": "2d63434d922daf7da8dd863e7907e67ee3031483", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65", + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65", "shasum": "" }, "require": { @@ -4318,7 +4319,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4362,7 +4363,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0" }, "funding": [ { @@ -4378,20 +4379,20 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248" + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248", - "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", "shasum": "" }, "require": { @@ -4403,7 +4404,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4446,7 +4447,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0" }, "funding": [ { @@ -4462,20 +4463,20 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "5232de97ee3b75b0360528dae24e73db49566ab1" + "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1", - "reference": "5232de97ee3b75b0360528dae24e73db49566ab1", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1", + "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1", "shasum": "" }, "require": { @@ -4487,7 +4488,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4526,7 +4527,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0" }, "funding": [ { @@ -4542,20 +4543,20 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9" + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", - "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", "shasum": "" }, "require": { @@ -4564,7 +4565,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4602,7 +4603,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0" }, "funding": [ { @@ -4618,20 +4619,20 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2021-05-27T09:17:38+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2" + "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2", - "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010", + "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010", "shasum": "" }, "require": { @@ -4640,7 +4641,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4681,7 +4682,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0" }, "funding": [ { @@ -4697,20 +4698,20 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91" + "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91", - "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0", + "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0", "shasum": "" }, "require": { @@ -4719,7 +4720,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4764,7 +4765,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0" }, "funding": [ { @@ -4780,20 +4781,20 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/process", - "version": "v5.2.4", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f" + "reference": "53e36cb1c160505cdaf1ef201501669c4c317191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f", - "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f", + "url": "https://api.github.com/repos/symfony/process/zipball/53e36cb1c160505cdaf1ef201501669c4c317191", + "reference": "53e36cb1c160505cdaf1ef201501669c4c317191", "shasum": "" }, "require": { @@ -4826,7 +4827,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.2.4" + "source": "https://github.com/symfony/process/tree/v5.3.0" }, "funding": [ { @@ -4842,7 +4843,7 @@ "type": "tidelift" } ], - "time": "2021-01-27T10:15:41+00:00" + "time": "2021-05-26T12:52:38+00:00" }, { "name": "symfony/service-contracts", @@ -4925,16 +4926,16 @@ }, { "name": "symfony/string", - "version": "v5.2.6", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572" + "reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572", - "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572", + "url": "https://api.github.com/repos/symfony/string/zipball/a9a0f8b6aafc5d2d1c116dcccd1573a95153515b", + "reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b", "shasum": "" }, "require": { @@ -4988,7 +4989,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v5.2.6" + "source": "https://github.com/symfony/string/tree/v5.3.0" }, "funding": [ { @@ -5004,24 +5005,25 @@ "type": "tidelift" } ], - "time": "2021-03-17T17:12:15+00:00" + "time": "2021-05-26T17:43:10+00:00" }, { "name": "symfony/translation", - "version": "v5.2.6", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "2cc7f45d96db9adfcf89adf4401d9dfed509f4e1" + "reference": "251de0d921c42ef0a81494d8f37405421deefdf6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/2cc7f45d96db9adfcf89adf4401d9dfed509f4e1", - "reference": "2cc7f45d96db9adfcf89adf4401d9dfed509f4e1", + "url": "https://api.github.com/repos/symfony/translation/zipball/251de0d921c42ef0a81494d8f37405421deefdf6", + "reference": "251de0d921c42ef0a81494d8f37405421deefdf6", "shasum": "" }, "require": { "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php80": "^1.15", "symfony/translation-contracts": "^2.3" @@ -5044,6 +5046,7 @@ "symfony/finder": "^4.4|^5.0", "symfony/http-kernel": "^5.0", "symfony/intl": "^4.4|^5.0", + "symfony/polyfill-intl-icu": "^1.21", "symfony/service-contracts": "^1.1.2|^2", "symfony/yaml": "^4.4|^5.0" }, @@ -5081,7 +5084,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v5.2.6" + "source": "https://github.com/symfony/translation/tree/v5.3.0" }, "funding": [ { @@ -5097,7 +5100,7 @@ "type": "tidelift" } ], - "time": "2021-03-23T19:33:48+00:00" + "time": "2021-05-29T22:28:28+00:00" }, { "name": "symfony/translation-contracts", @@ -5179,16 +5182,16 @@ }, { "name": "symfony/var-dumper", - "version": "v5.2.6", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "89412a68ea2e675b4e44f260a5666729f77f668e" + "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/89412a68ea2e675b4e44f260a5666729f77f668e", - "reference": "89412a68ea2e675b4e44f260a5666729f77f668e", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1d3953e627fe4b5f6df503f356b6545ada6351f3", + "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3", "shasum": "" }, "require": { @@ -5247,7 +5250,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.2.6" + "source": "https://github.com/symfony/var-dumper/tree/v5.3.0" }, "funding": [ { @@ -5263,7 +5266,7 @@ "type": "tidelift" } ], - "time": "2021-03-28T09:42:18+00:00" + "time": "2021-05-27T12:28:50+00:00" }, { "name": "vlucas/phpdotenv", @@ -5796,16 +5799,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.10.4", + "version": "v4.10.5", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e" + "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e", - "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f", + "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f", "shasum": "" }, "require": { @@ -5846,9 +5849,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5" }, - "time": "2020-12-20T10:01:03+00:00" + "time": "2021-05-03T19:11:20+00:00" }, { "name": "phar-io/manifest", @@ -6506,16 +6509,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.5.4", + "version": "9.5.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "c73c6737305e779771147af66c96ca6a7ed8a741" + "reference": "89ff45ea9d70e35522fb6654a2ebc221158de276" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c73c6737305e779771147af66c96ca6a7ed8a741", - "reference": "c73c6737305e779771147af66c96ca6a7ed8a741", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/89ff45ea9d70e35522fb6654a2ebc221158de276", + "reference": "89ff45ea9d70e35522fb6654a2ebc221158de276", "shasum": "" }, "require": { @@ -6545,7 +6548,7 @@ "sebastian/global-state": "^5.0.1", "sebastian/object-enumerator": "^4.0.3", "sebastian/resource-operations": "^3.0.3", - "sebastian/type": "^2.3", + "sebastian/type": "^2.3.2", "sebastian/version": "^3.0.2" }, "require-dev": { @@ -6593,7 +6596,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.4" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.5" }, "funding": [ { @@ -6605,7 +6608,7 @@ "type": "github" } ], - "time": "2021-03-23T07:16:29+00:00" + "time": "2021-06-05T04:49:07+00:00" }, { "name": "sebastian/cli-parser", @@ -7464,16 +7467,16 @@ }, { "name": "sebastian/type", - "version": "2.3.1", + "version": "2.3.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2" + "reference": "0d1c587401514d17e8f9258a27e23527cb1b06c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2", - "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0d1c587401514d17e8f9258a27e23527cb1b06c1", + "reference": "0d1c587401514d17e8f9258a27e23527cb1b06c1", "shasum": "" }, "require": { @@ -7508,7 +7511,7 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/2.3.1" + "source": "https://github.com/sebastianbergmann/type/tree/2.3.2" }, "funding": [ { @@ -7516,7 +7519,7 @@ "type": "github" } ], - "time": "2020-10-26T13:18:59+00:00" + "time": "2021-06-04T13:02:07+00:00" }, { "name": "sebastian/version", @@ -7631,5 +7634,5 @@ "php": "^7.3|^8.0" }, "platform-dev": [], - "plugin-api-version": "2.0.0" + "plugin-api-version": "2.1.0" } diff --git a/backend/tests/TestCase.php b/backend/tests/TestCase.php index 136846b..739af2f 100644 --- a/backend/tests/TestCase.php +++ b/backend/tests/TestCase.php @@ -2,15 +2,8 @@ use Laravel\Lumen\Testing\TestCase as BaseTestCase; -abstract class TestCase extends BaseTestCase -{ - /** - * Creates the application. - * - * @return \Laravel\Lumen\Application - */ - public function createApplication() - { +abstract class TestCase extends BaseTestCase { + public function createApplication() { return require __DIR__.'/../bootstrap/app.php'; } }