mirror of https://github.com/kcal-app/kcal.git
Update composer dependencies
This commit is contained in:
parent
2b3f0c31f6
commit
3916a1a56d
349
_ide_helper.php
349
_ide_helper.php
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A helper file for Laravel, to provide autocomplete information to your IDE
|
* A helper file for Laravel, to provide autocomplete information to your IDE
|
||||||
* Generated for Laravel 8.33.1.
|
* Generated for Laravel 8.35.1.
|
||||||
*
|
*
|
||||||
* This file should not be included in your code, only analyzed by your IDE!
|
* This file should not be included in your code, only analyzed by your IDE!
|
||||||
*
|
*
|
||||||
|
@ -1718,6 +1718,29 @@
|
||||||
{
|
{
|
||||||
/** @var \Illuminate\Auth\AuthManager $instance */
|
/** @var \Illuminate\Auth\AuthManager $instance */
|
||||||
return $instance->hasResolvedGuards();
|
return $instance->hasResolvedGuards();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Forget all of the resolved guard instances.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Auth\AuthManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function forgetGuards()
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Auth\AuthManager $instance */
|
||||||
|
return $instance->forgetGuards();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Set the application instance used by the manager.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Contracts\Foundation\Application $app
|
||||||
|
* @return \Illuminate\Auth\AuthManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function setApplication($app)
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Auth\AuthManager $instance */
|
||||||
|
return $instance->setApplication($app);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Create the user provider implementation for the driver.
|
* Create the user provider implementation for the driver.
|
||||||
|
@ -2692,6 +2715,40 @@
|
||||||
{
|
{
|
||||||
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
|
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
|
||||||
return $instance->extend($driver, $callback);
|
return $instance->extend($driver, $callback);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Get the application instance used by the manager.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\Foundation\Application
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function getApplication()
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
|
||||||
|
return $instance->getApplication();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Set the application instance used by the manager.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Contracts\Foundation\Application $app
|
||||||
|
* @return \Illuminate\Broadcasting\BroadcastManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function setApplication($app)
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
|
||||||
|
return $instance->setApplication($app);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Forget all of the resolved driver instances.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Broadcasting\BroadcastManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function forgetDrivers()
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Broadcasting\BroadcastManager $instance */
|
||||||
|
return $instance->forgetDrivers();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -3976,6 +4033,17 @@
|
||||||
{
|
{
|
||||||
/** @var \Illuminate\Cookie\CookieJar $instance */
|
/** @var \Illuminate\Cookie\CookieJar $instance */
|
||||||
return $instance->getQueuedCookies();
|
return $instance->getQueuedCookies();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Flush the cookies which have been queued for the next request.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Cookie\CookieJar
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function flushQueuedCookies()
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Cookie\CookieJar $instance */
|
||||||
|
return $instance->flushQueuedCookies();
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Register a custom macro.
|
* Register a custom macro.
|
||||||
|
@ -5283,6 +5351,19 @@
|
||||||
public static function hasMacro($name)
|
public static function hasMacro($name)
|
||||||
{
|
{
|
||||||
return \Illuminate\Events\Dispatcher::hasMacro($name);
|
return \Illuminate\Events\Dispatcher::hasMacro($name);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Assert if an event has a listener attached to it.
|
||||||
|
*
|
||||||
|
* @param string $expectedEvent
|
||||||
|
* @param string $expectedListener
|
||||||
|
* @return void
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function assertListening($expectedEvent, $expectedListener)
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Support\Testing\Fakes\EventFake $instance */
|
||||||
|
$instance->assertListening($expectedEvent, $expectedListener);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Assert if an event was dispatched based on a truth-test callback.
|
* Assert if an event was dispatched based on a truth-test callback.
|
||||||
|
@ -6199,6 +6280,18 @@
|
||||||
{
|
{
|
||||||
/** @var \Illuminate\Auth\Access\Gate $instance */
|
/** @var \Illuminate\Auth\Access\Gate $instance */
|
||||||
return $instance->policies();
|
return $instance->policies();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Set the container instance used by the gate.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Contracts\Container\Container $container
|
||||||
|
* @return \Illuminate\Auth\Access\Gate
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function setContainer($container)
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Auth\Access\Gate $instance */
|
||||||
|
return $instance->setContainer($container);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -6340,6 +6433,40 @@
|
||||||
{ //Method inherited from \Illuminate\Support\Manager
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
/** @var \Illuminate\Hashing\HashManager $instance */
|
/** @var \Illuminate\Hashing\HashManager $instance */
|
||||||
return $instance->getDrivers();
|
return $instance->getDrivers();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Get the container instance used by the manager.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\Container\Container
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function getContainer()
|
||||||
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
|
/** @var \Illuminate\Hashing\HashManager $instance */
|
||||||
|
return $instance->getContainer();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Set the container instance used by the manager.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Contracts\Container\Container $container
|
||||||
|
* @return \Illuminate\Hashing\HashManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function setContainer($container)
|
||||||
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
|
/** @var \Illuminate\Hashing\HashManager $instance */
|
||||||
|
return $instance->setContainer($container);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Forget all of the resolved driver instances.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Hashing\HashManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function forgetDrivers()
|
||||||
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
|
/** @var \Illuminate\Hashing\HashManager $instance */
|
||||||
|
return $instance->forgetDrivers();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -7201,6 +7328,40 @@
|
||||||
{
|
{
|
||||||
/** @var \Illuminate\Mail\MailManager $instance */
|
/** @var \Illuminate\Mail\MailManager $instance */
|
||||||
return $instance->extend($driver, $callback);
|
return $instance->extend($driver, $callback);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Get the application instance used by the manager.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\Foundation\Application
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function getApplication()
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Mail\MailManager $instance */
|
||||||
|
return $instance->getApplication();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Set the application instance used by the manager.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Contracts\Foundation\Application $app
|
||||||
|
* @return \Illuminate\Mail\MailManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function setApplication($app)
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Mail\MailManager $instance */
|
||||||
|
return $instance->setApplication($app);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Forget all of the resolved mailer instances.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Mail\MailManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function forgetMailers()
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Mail\MailManager $instance */
|
||||||
|
return $instance->forgetMailers();
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Assert if a mailable was sent based on a truth-test callback.
|
* Assert if a mailable was sent based on a truth-test callback.
|
||||||
|
@ -7544,6 +7705,40 @@
|
||||||
{ //Method inherited from \Illuminate\Support\Manager
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
/** @var \Illuminate\Notifications\ChannelManager $instance */
|
/** @var \Illuminate\Notifications\ChannelManager $instance */
|
||||||
return $instance->getDrivers();
|
return $instance->getDrivers();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Get the container instance used by the manager.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\Container\Container
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function getContainer()
|
||||||
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
|
/** @var \Illuminate\Notifications\ChannelManager $instance */
|
||||||
|
return $instance->getContainer();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Set the container instance used by the manager.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Contracts\Container\Container $container
|
||||||
|
* @return \Illuminate\Notifications\ChannelManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function setContainer($container)
|
||||||
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
|
/** @var \Illuminate\Notifications\ChannelManager $instance */
|
||||||
|
return $instance->setContainer($container);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Forget all of the resolved driver instances.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Notifications\ChannelManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function forgetDrivers()
|
||||||
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
|
/** @var \Illuminate\Notifications\ChannelManager $instance */
|
||||||
|
return $instance->forgetDrivers();
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Assert if a notification was sent based on a truth-test callback.
|
* Assert if a notification was sent based on a truth-test callback.
|
||||||
|
@ -7892,6 +8087,29 @@
|
||||||
{
|
{
|
||||||
/** @var \Illuminate\Queue\QueueManager $instance */
|
/** @var \Illuminate\Queue\QueueManager $instance */
|
||||||
return $instance->getName($connection);
|
return $instance->getName($connection);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Get the application instance used by the manager.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\Foundation\Application
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function getApplication()
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Queue\QueueManager $instance */
|
||||||
|
return $instance->getApplication();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Set the application instance used by the manager.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Contracts\Foundation\Application $app
|
||||||
|
* @return \Illuminate\Queue\QueueManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function setApplication($app)
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Queue\QueueManager $instance */
|
||||||
|
return $instance->setApplication($app);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Assert if a job was pushed based on a truth-test callback.
|
* Assert if a job was pushed based on a truth-test callback.
|
||||||
|
@ -8174,6 +8392,17 @@
|
||||||
public static function createPayloadUsing($callback)
|
public static function createPayloadUsing($callback)
|
||||||
{ //Method inherited from \Illuminate\Queue\Queue
|
{ //Method inherited from \Illuminate\Queue\Queue
|
||||||
\Illuminate\Queue\SyncQueue::createPayloadUsing($callback);
|
\Illuminate\Queue\SyncQueue::createPayloadUsing($callback);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Get the container instance being used by the connection.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Container\Container
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function getContainer()
|
||||||
|
{ //Method inherited from \Illuminate\Queue\Queue
|
||||||
|
/** @var \Illuminate\Queue\SyncQueue $instance */
|
||||||
|
return $instance->getContainer();
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Set the IoC container instance.
|
* Set the IoC container instance.
|
||||||
|
@ -11530,6 +11759,18 @@
|
||||||
public static function uniqueMiddleware($middleware)
|
public static function uniqueMiddleware($middleware)
|
||||||
{
|
{
|
||||||
return \Illuminate\Routing\Router::uniqueMiddleware($middleware);
|
return \Illuminate\Routing\Router::uniqueMiddleware($middleware);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Set the container instance used by the router.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Container\Container $container
|
||||||
|
* @return \Illuminate\Routing\Router
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function setContainer($container)
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Routing\Router $instance */
|
||||||
|
return $instance->setContainer($container);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Register a custom macro.
|
* Register a custom macro.
|
||||||
|
@ -12015,6 +12256,40 @@
|
||||||
{ //Method inherited from \Illuminate\Support\Manager
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
/** @var \Illuminate\Session\SessionManager $instance */
|
/** @var \Illuminate\Session\SessionManager $instance */
|
||||||
return $instance->getDrivers();
|
return $instance->getDrivers();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Get the container instance used by the manager.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\Container\Container
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function getContainer()
|
||||||
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
|
/** @var \Illuminate\Session\SessionManager $instance */
|
||||||
|
return $instance->getContainer();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Set the container instance used by the manager.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Contracts\Container\Container $container
|
||||||
|
* @return \Illuminate\Session\SessionManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function setContainer($container)
|
||||||
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
|
/** @var \Illuminate\Session\SessionManager $instance */
|
||||||
|
return $instance->setContainer($container);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Forget all of the resolved driver instances.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Session\SessionManager
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function forgetDrivers()
|
||||||
|
{ //Method inherited from \Illuminate\Support\Manager
|
||||||
|
/** @var \Illuminate\Session\SessionManager $instance */
|
||||||
|
return $instance->forgetDrivers();
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Start the session, reading the data from a handler.
|
* Start the session, reading the data from a handler.
|
||||||
|
@ -13757,6 +14032,29 @@
|
||||||
{
|
{
|
||||||
/** @var \Illuminate\Validation\Factory $instance */
|
/** @var \Illuminate\Validation\Factory $instance */
|
||||||
$instance->setPresenceVerifier($presenceVerifier);
|
$instance->setPresenceVerifier($presenceVerifier);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Get the container instance used by the validation factory.
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\Container\Container
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function getContainer()
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Validation\Factory $instance */
|
||||||
|
return $instance->getContainer();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Set the container instance used by the validation factory.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Contracts\Container\Container $container
|
||||||
|
* @return \Illuminate\Validation\Factory
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function setContainer($container)
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Validation\Factory $instance */
|
||||||
|
return $instance->setContainer($container);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -14738,6 +15036,27 @@
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
*/
|
*/
|
||||||
|
public static function determineVersionUsing($determineVersionCallable)
|
||||||
|
{
|
||||||
|
/** @var \Facade\FlareClient\Flare $instance */
|
||||||
|
return $instance->determineVersionUsing($determineVersionCallable);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @return null|string
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function version()
|
||||||
|
{
|
||||||
|
/** @var \Facade\FlareClient\Flare $instance */
|
||||||
|
return $instance->version();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
public static function getMiddleware()
|
public static function getMiddleware()
|
||||||
{
|
{
|
||||||
/** @var \Facade\FlareClient\Flare $instance */
|
/** @var \Facade\FlareClient\Flare $instance */
|
||||||
|
@ -16247,6 +16566,34 @@ namespace {
|
||||||
return $instance->eachById($callback, $count, $column, $alias);
|
return $instance->eachById($callback, $count, $column, $alias);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query lazily, by chunks of the given size.
|
||||||
|
*
|
||||||
|
* @param int $chunkSize
|
||||||
|
* @return \Illuminate\Support\LazyCollection
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function lazy($chunkSize = 1000)
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Database\Eloquent\Builder $instance */
|
||||||
|
return $instance->lazy($chunkSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query lazily, by chunking the results of a query by comparing IDs.
|
||||||
|
*
|
||||||
|
* @param int $count
|
||||||
|
* @param string|null $column
|
||||||
|
* @param string|null $alias
|
||||||
|
* @return \Illuminate\Support\LazyCollection
|
||||||
|
* @static
|
||||||
|
*/
|
||||||
|
public static function lazyById($chunkSize = 1000, $column = null, $alias = null)
|
||||||
|
{
|
||||||
|
/** @var \Illuminate\Database\Eloquent\Builder $instance */
|
||||||
|
return $instance->lazyById($chunkSize, $column, $alias);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the query and get the first result.
|
* Execute the query and get the first result.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1054,26 +1054,25 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "elasticsearch/elasticsearch",
|
"name": "elasticsearch/elasticsearch",
|
||||||
"version": "v7.11.0",
|
"version": "v7.12.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/elastic/elasticsearch-php.git",
|
"url": "https://github.com/elastic/elasticsearch-php.git",
|
||||||
"reference": "277cd5e182827c59c23e146a836a30470c0f879d"
|
"reference": "25522ef4f16adcf49d7a1db149f2fcf010655b7f"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/277cd5e182827c59c23e146a836a30470c0f879d",
|
"url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/25522ef4f16adcf49d7a1db149f2fcf010655b7f",
|
||||||
"reference": "277cd5e182827c59c23e146a836a30470c0f879d",
|
"reference": "25522ef4f16adcf49d7a1db149f2fcf010655b7f",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"ext-json": ">=1.3.7",
|
"ext-json": ">=1.3.7",
|
||||||
"ezimuel/ringphp": "^1.1.2",
|
"ezimuel/ringphp": "^1.1.2",
|
||||||
"php": "^7.1 || ^8.0",
|
"php": "^7.3 || ^8.0",
|
||||||
"psr/log": "~1.0"
|
"psr/log": "~1.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"cpliakas/git-wrapper": "~2.0 || ~3.0",
|
|
||||||
"doctrine/inflector": "^1.3",
|
"doctrine/inflector": "^1.3",
|
||||||
"ext-yaml": "*",
|
"ext-yaml": "*",
|
||||||
"ext-zip": "*",
|
"ext-zip": "*",
|
||||||
|
@ -1082,7 +1081,8 @@
|
||||||
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
|
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
|
||||||
"squizlabs/php_codesniffer": "^3.4",
|
"squizlabs/php_codesniffer": "^3.4",
|
||||||
"symfony/finder": "~4.0",
|
"symfony/finder": "~4.0",
|
||||||
"symfony/yaml": "~4.0"
|
"symfony/yaml": "~4.0",
|
||||||
|
"symplify/git-wrapper": "~9.0"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"ext-curl": "*",
|
"ext-curl": "*",
|
||||||
|
@ -1117,9 +1117,9 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/elastic/elasticsearch-php/issues",
|
"issues": "https://github.com/elastic/elasticsearch-php/issues",
|
||||||
"source": "https://github.com/elastic/elasticsearch-php/tree/v7.11.0"
|
"source": "https://github.com/elastic/elasticsearch-php/tree/v7.12.0"
|
||||||
},
|
},
|
||||||
"time": "2021-02-11T11:04:51+00:00"
|
"time": "2021-03-23T18:08:45+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ezimuel/guzzlestreams",
|
"name": "ezimuel/guzzlestreams",
|
||||||
|
@ -1431,22 +1431,22 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "guzzlehttp/guzzle",
|
"name": "guzzlehttp/guzzle",
|
||||||
"version": "7.2.0",
|
"version": "7.3.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/guzzle/guzzle.git",
|
"url": "https://github.com/guzzle/guzzle.git",
|
||||||
"reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
|
"reference": "7008573787b430c1c1f650e3722d9bba59967628"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
|
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
|
||||||
"reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
|
"reference": "7008573787b430c1c1f650e3722d9bba59967628",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"guzzlehttp/promises": "^1.4",
|
"guzzlehttp/promises": "^1.4",
|
||||||
"guzzlehttp/psr7": "^1.7",
|
"guzzlehttp/psr7": "^1.7 || ^2.0",
|
||||||
"php": "^7.2.5 || ^8.0",
|
"php": "^7.2.5 || ^8.0",
|
||||||
"psr/http-client": "^1.0"
|
"psr/http-client": "^1.0"
|
||||||
},
|
},
|
||||||
|
@ -1454,6 +1454,7 @@
|
||||||
"psr/http-client-implementation": "1.0"
|
"psr/http-client-implementation": "1.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
"bamarni/composer-bin-plugin": "^1.4.1",
|
||||||
"ext-curl": "*",
|
"ext-curl": "*",
|
||||||
"php-http/client-integration-tests": "^3.0",
|
"php-http/client-integration-tests": "^3.0",
|
||||||
"phpunit/phpunit": "^8.5.5 || ^9.3.5",
|
"phpunit/phpunit": "^8.5.5 || ^9.3.5",
|
||||||
|
@ -1467,7 +1468,7 @@
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-master": "7.1-dev"
|
"dev-master": "7.3-dev"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
@ -1509,7 +1510,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/guzzle/guzzle/issues",
|
"issues": "https://github.com/guzzle/guzzle/issues",
|
||||||
"source": "https://github.com/guzzle/guzzle/tree/7.2.0"
|
"source": "https://github.com/guzzle/guzzle/tree/7.3.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -1529,7 +1530,7 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2020-10-10T11:47:56+00:00"
|
"time": "2021-03-23T11:33:13+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "guzzlehttp/promises",
|
"name": "guzzlehttp/promises",
|
||||||
|
@ -1737,16 +1738,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/framework",
|
"name": "laravel/framework",
|
||||||
"version": "v8.33.1",
|
"version": "v8.35.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laravel/framework.git",
|
"url": "https://github.com/laravel/framework.git",
|
||||||
"reference": "354c57b8cb457549114074c500944455a288d6cc"
|
"reference": "d118c0df39e7524131176aaf76493eae63a8a602"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laravel/framework/zipball/354c57b8cb457549114074c500944455a288d6cc",
|
"url": "https://api.github.com/repos/laravel/framework/zipball/d118c0df39e7524131176aaf76493eae63a8a602",
|
||||||
"reference": "354c57b8cb457549114074c500944455a288d6cc",
|
"reference": "d118c0df39e7524131176aaf76493eae63a8a602",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -1901,7 +1902,7 @@
|
||||||
"issues": "https://github.com/laravel/framework/issues",
|
"issues": "https://github.com/laravel/framework/issues",
|
||||||
"source": "https://github.com/laravel/framework"
|
"source": "https://github.com/laravel/framework"
|
||||||
},
|
},
|
||||||
"time": "2021-03-16T19:42:32+00:00"
|
"time": "2021-03-30T21:34:17+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/scout",
|
"name": "laravel/scout",
|
||||||
|
@ -2042,16 +2043,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/commonmark",
|
"name": "league/commonmark",
|
||||||
"version": "1.5.7",
|
"version": "1.5.8",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/thephpleague/commonmark.git",
|
"url": "https://github.com/thephpleague/commonmark.git",
|
||||||
"reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
|
"reference": "08fa59b8e4e34ea8a773d55139ae9ac0e0aecbaf"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
|
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/08fa59b8e4e34ea8a773d55139ae9ac0e0aecbaf",
|
||||||
"reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
|
"reference": "08fa59b8e4e34ea8a773d55139ae9ac0e0aecbaf",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -2139,7 +2140,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2020-10-31T13:49:32+00:00"
|
"time": "2021-03-28T18:51:39+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/flysystem",
|
"name": "league/flysystem",
|
||||||
|
@ -3991,16 +3992,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "spatie/laravel-medialibrary",
|
"name": "spatie/laravel-medialibrary",
|
||||||
"version": "9.4.4",
|
"version": "9.5.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/spatie/laravel-medialibrary.git",
|
"url": "https://github.com/spatie/laravel-medialibrary.git",
|
||||||
"reference": "9d27d602351516dc09c8d6e01b1430c2d1c2a7df"
|
"reference": "89d1d2e5b4b53137819cc18a166f43edaeaf7e52"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/9d27d602351516dc09c8d6e01b1430c2d1c2a7df",
|
"url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/89d1d2e5b4b53137819cc18a166f43edaeaf7e52",
|
||||||
"reference": "9d27d602351516dc09c8d6e01b1430c2d1c2a7df",
|
"reference": "89d1d2e5b4b53137819cc18a166f43edaeaf7e52",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -4079,7 +4080,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/spatie/laravel-medialibrary/issues",
|
"issues": "https://github.com/spatie/laravel-medialibrary/issues",
|
||||||
"source": "https://github.com/spatie/laravel-medialibrary/tree/9.4.4"
|
"source": "https://github.com/spatie/laravel-medialibrary/tree/9.5.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -4091,7 +4092,7 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-03-15T07:39:17+00:00"
|
"time": "2021-03-29T21:40:29+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "spatie/laravel-tags",
|
"name": "spatie/laravel-tags",
|
||||||
|
@ -4371,16 +4372,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/console",
|
"name": "symfony/console",
|
||||||
"version": "v5.2.5",
|
"version": "v5.2.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/console.git",
|
"url": "https://github.com/symfony/console.git",
|
||||||
"reference": "938ebbadae1b0a9c9d1ec313f87f9708609f1b79"
|
"reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/console/zipball/938ebbadae1b0a9c9d1ec313f87f9708609f1b79",
|
"url": "https://api.github.com/repos/symfony/console/zipball/35f039df40a3b335ebf310f244cb242b3a83ac8d",
|
||||||
"reference": "938ebbadae1b0a9c9d1ec313f87f9708609f1b79",
|
"reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -4448,7 +4449,7 @@
|
||||||
"terminal"
|
"terminal"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/console/tree/v5.2.5"
|
"source": "https://github.com/symfony/console/tree/v5.2.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -4464,7 +4465,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-03-06T13:42:15+00:00"
|
"time": "2021-03-28T09:42:18+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/css-selector",
|
"name": "symfony/css-selector",
|
||||||
|
@ -4600,16 +4601,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/error-handler",
|
"name": "symfony/error-handler",
|
||||||
"version": "v5.2.4",
|
"version": "v5.2.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/error-handler.git",
|
"url": "https://github.com/symfony/error-handler.git",
|
||||||
"reference": "b547d3babcab5c31e01de59ee33e9d9c1421d7d0"
|
"reference": "bdb7fb4188da7f4211e4b88350ba0dfdad002b03"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/error-handler/zipball/b547d3babcab5c31e01de59ee33e9d9c1421d7d0",
|
"url": "https://api.github.com/repos/symfony/error-handler/zipball/bdb7fb4188da7f4211e4b88350ba0dfdad002b03",
|
||||||
"reference": "b547d3babcab5c31e01de59ee33e9d9c1421d7d0",
|
"reference": "bdb7fb4188da7f4211e4b88350ba0dfdad002b03",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -4649,7 +4650,7 @@
|
||||||
"description": "Provides tools to manage errors and ease debugging PHP code",
|
"description": "Provides tools to manage errors and ease debugging PHP code",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/error-handler/tree/v5.2.4"
|
"source": "https://github.com/symfony/error-handler/tree/v5.2.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -4665,7 +4666,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-02-11T08:21:20+00:00"
|
"time": "2021-03-16T09:07:47+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/event-dispatcher",
|
"name": "symfony/event-dispatcher",
|
||||||
|
@ -5046,16 +5047,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-kernel",
|
"name": "symfony/http-kernel",
|
||||||
"version": "v5.2.5",
|
"version": "v5.2.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-kernel.git",
|
"url": "https://github.com/symfony/http-kernel.git",
|
||||||
"reference": "b8c63ef63c2364e174c3b3e0ba0bf83455f97f73"
|
"reference": "f34de4c61ca46df73857f7f36b9a3805bdd7e3b2"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/b8c63ef63c2364e174c3b3e0ba0bf83455f97f73",
|
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/f34de4c61ca46df73857f7f36b9a3805bdd7e3b2",
|
||||||
"reference": "b8c63ef63c2364e174c3b3e0ba0bf83455f97f73",
|
"reference": "f34de4c61ca46df73857f7f36b9a3805bdd7e3b2",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -5138,7 +5139,7 @@
|
||||||
"description": "Provides a structured process for converting a Request into a Response",
|
"description": "Provides a structured process for converting a Request into a Response",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/http-kernel/tree/v5.2.5"
|
"source": "https://github.com/symfony/http-kernel/tree/v5.2.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -5154,20 +5155,20 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-03-10T17:07:35+00:00"
|
"time": "2021-03-29T05:16:58+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/mime",
|
"name": "symfony/mime",
|
||||||
"version": "v5.2.5",
|
"version": "v5.2.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/mime.git",
|
"url": "https://github.com/symfony/mime.git",
|
||||||
"reference": "554ba128f1955038b45db5e1fa7e93bfc683b139"
|
"reference": "1b2092244374cbe48ae733673f2ca0818b37197b"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/mime/zipball/554ba128f1955038b45db5e1fa7e93bfc683b139",
|
"url": "https://api.github.com/repos/symfony/mime/zipball/1b2092244374cbe48ae733673f2ca0818b37197b",
|
||||||
"reference": "554ba128f1955038b45db5e1fa7e93bfc683b139",
|
"reference": "1b2092244374cbe48ae733673f2ca0818b37197b",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -5221,7 +5222,7 @@
|
||||||
"mime-type"
|
"mime-type"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/mime/tree/v5.2.5"
|
"source": "https://github.com/symfony/mime/tree/v5.2.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -5237,7 +5238,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-03-07T16:08:20+00:00"
|
"time": "2021-03-12T13:18:39+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/polyfill-ctype",
|
"name": "symfony/polyfill-ctype",
|
||||||
|
@ -6120,16 +6121,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/routing",
|
"name": "symfony/routing",
|
||||||
"version": "v5.2.4",
|
"version": "v5.2.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/routing.git",
|
"url": "https://github.com/symfony/routing.git",
|
||||||
"reference": "cafa138128dfd6ab6be1abf6279169957b34f662"
|
"reference": "31fba555f178afd04d54fd26953501b2c3f0c6e6"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/routing/zipball/cafa138128dfd6ab6be1abf6279169957b34f662",
|
"url": "https://api.github.com/repos/symfony/routing/zipball/31fba555f178afd04d54fd26953501b2c3f0c6e6",
|
||||||
"reference": "cafa138128dfd6ab6be1abf6279169957b34f662",
|
"reference": "31fba555f178afd04d54fd26953501b2c3f0c6e6",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -6190,7 +6191,7 @@
|
||||||
"url"
|
"url"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/routing/tree/v5.2.4"
|
"source": "https://github.com/symfony/routing/tree/v5.2.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -6206,7 +6207,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-02-22T15:48:39+00:00"
|
"time": "2021-03-14T13:53:33+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/service-contracts",
|
"name": "symfony/service-contracts",
|
||||||
|
@ -6289,16 +6290,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/string",
|
"name": "symfony/string",
|
||||||
"version": "v5.2.4",
|
"version": "v5.2.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/string.git",
|
"url": "https://github.com/symfony/string.git",
|
||||||
"reference": "4e78d7d47061fa183639927ec40d607973699609"
|
"reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/string/zipball/4e78d7d47061fa183639927ec40d607973699609",
|
"url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
|
||||||
"reference": "4e78d7d47061fa183639927ec40d607973699609",
|
"reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -6352,7 +6353,7 @@
|
||||||
"utf8"
|
"utf8"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/string/tree/v5.2.4"
|
"source": "https://github.com/symfony/string/tree/v5.2.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -6368,20 +6369,20 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-02-16T10:20:28+00:00"
|
"time": "2021-03-17T17:12:15+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/translation",
|
"name": "symfony/translation",
|
||||||
"version": "v5.2.5",
|
"version": "v5.2.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/translation.git",
|
"url": "https://github.com/symfony/translation.git",
|
||||||
"reference": "0947ab1e3aabd22a6bef393874b2555d2bb976da"
|
"reference": "2cc7f45d96db9adfcf89adf4401d9dfed509f4e1"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/translation/zipball/0947ab1e3aabd22a6bef393874b2555d2bb976da",
|
"url": "https://api.github.com/repos/symfony/translation/zipball/2cc7f45d96db9adfcf89adf4401d9dfed509f4e1",
|
||||||
"reference": "0947ab1e3aabd22a6bef393874b2555d2bb976da",
|
"reference": "2cc7f45d96db9adfcf89adf4401d9dfed509f4e1",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -6445,7 +6446,7 @@
|
||||||
"description": "Provides tools to internationalize your application",
|
"description": "Provides tools to internationalize your application",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/translation/tree/v5.2.5"
|
"source": "https://github.com/symfony/translation/tree/v5.2.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -6461,7 +6462,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-03-06T07:59:01+00:00"
|
"time": "2021-03-23T19:33:48+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/translation-contracts",
|
"name": "symfony/translation-contracts",
|
||||||
|
@ -6543,16 +6544,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/var-dumper",
|
"name": "symfony/var-dumper",
|
||||||
"version": "v5.2.5",
|
"version": "v5.2.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/var-dumper.git",
|
"url": "https://github.com/symfony/var-dumper.git",
|
||||||
"reference": "002ab5a36702adf0c9a11e6d8836623253e9045e"
|
"reference": "89412a68ea2e675b4e44f260a5666729f77f668e"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/002ab5a36702adf0c9a11e6d8836623253e9045e",
|
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/89412a68ea2e675b4e44f260a5666729f77f668e",
|
||||||
"reference": "002ab5a36702adf0c9a11e6d8836623253e9045e",
|
"reference": "89412a68ea2e675b4e44f260a5666729f77f668e",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -6611,7 +6612,7 @@
|
||||||
"dump"
|
"dump"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/var-dumper/tree/v5.2.5"
|
"source": "https://github.com/symfony/var-dumper/tree/v5.2.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -6627,7 +6628,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-03-06T07:59:01+00:00"
|
"time": "2021-03-28T09:42:18+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "tijsverkoyen/css-to-inline-styles",
|
"name": "tijsverkoyen/css-to-inline-styles",
|
||||||
|
@ -6898,16 +6899,16 @@
|
||||||
"packages-dev": [
|
"packages-dev": [
|
||||||
{
|
{
|
||||||
"name": "barryvdh/laravel-ide-helper",
|
"name": "barryvdh/laravel-ide-helper",
|
||||||
"version": "v2.9.1",
|
"version": "v2.9.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/barryvdh/laravel-ide-helper.git",
|
"url": "https://github.com/barryvdh/laravel-ide-helper.git",
|
||||||
"reference": "8d8302ff6adb55f8b844c798b8b1ffdee142f7e5"
|
"reference": "2f61602e7a7f88ad29b0f71355b4bb71396e923b"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/8d8302ff6adb55f8b844c798b8b1ffdee142f7e5",
|
"url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/2f61602e7a7f88ad29b0f71355b4bb71396e923b",
|
||||||
"reference": "8d8302ff6adb55f8b844c798b8b1ffdee142f7e5",
|
"reference": "2f61602e7a7f88ad29b0f71355b4bb71396e923b",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -6976,7 +6977,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
|
"issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
|
||||||
"source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.9.1"
|
"source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.9.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -6984,7 +6985,7 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-03-15T19:22:08+00:00"
|
"time": "2021-04-02T14:32:13+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "barryvdh/reflection-docblock",
|
"name": "barryvdh/reflection-docblock",
|
||||||
|
@ -7253,16 +7254,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "composer/composer",
|
"name": "composer/composer",
|
||||||
"version": "2.0.11",
|
"version": "2.0.12",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/composer/composer.git",
|
"url": "https://github.com/composer/composer.git",
|
||||||
"reference": "a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9"
|
"reference": "6c12ce263da71641903e399c3ce8ecb08fd375fb"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/composer/composer/zipball/a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9",
|
"url": "https://api.github.com/repos/composer/composer/zipball/6c12ce263da71641903e399c3ce8ecb08fd375fb",
|
||||||
"reference": "a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9",
|
"reference": "6c12ce263da71641903e399c3ce8ecb08fd375fb",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -7330,7 +7331,7 @@
|
||||||
"support": {
|
"support": {
|
||||||
"irc": "irc://irc.freenode.org/composer",
|
"irc": "irc://irc.freenode.org/composer",
|
||||||
"issues": "https://github.com/composer/composer/issues",
|
"issues": "https://github.com/composer/composer/issues",
|
||||||
"source": "https://github.com/composer/composer/tree/2.0.11"
|
"source": "https://github.com/composer/composer/tree/2.0.12"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -7346,7 +7347,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-02-24T13:57:23+00:00"
|
"time": "2021-04-01T08:14:59+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "composer/package-versions-deprecated",
|
"name": "composer/package-versions-deprecated",
|
||||||
|
@ -7583,16 +7584,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "composer/xdebug-handler",
|
"name": "composer/xdebug-handler",
|
||||||
"version": "1.4.5",
|
"version": "1.4.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/composer/xdebug-handler.git",
|
"url": "https://github.com/composer/xdebug-handler.git",
|
||||||
"reference": "f28d44c286812c714741478d968104c5e604a1d4"
|
"reference": "f27e06cd9675801df441b3656569b328e04aa37c"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
|
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f27e06cd9675801df441b3656569b328e04aa37c",
|
||||||
"reference": "f28d44c286812c714741478d968104c5e604a1d4",
|
"reference": "f27e06cd9675801df441b3656569b328e04aa37c",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -7600,7 +7601,8 @@
|
||||||
"psr/log": "^1.0"
|
"psr/log": "^1.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
|
"phpstan/phpstan": "^0.12.55",
|
||||||
|
"symfony/phpunit-bridge": "^4.2 || ^5"
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
@ -7626,7 +7628,7 @@
|
||||||
"support": {
|
"support": {
|
||||||
"irc": "irc://irc.freenode.org/composer",
|
"irc": "irc://irc.freenode.org/composer",
|
||||||
"issues": "https://github.com/composer/xdebug-handler/issues",
|
"issues": "https://github.com/composer/xdebug-handler/issues",
|
||||||
"source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
|
"source": "https://github.com/composer/xdebug-handler/tree/1.4.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -7642,7 +7644,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2020-11-13T08:04:11+00:00"
|
"time": "2021-03-25T17:01:18+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "doctrine/cache",
|
"name": "doctrine/cache",
|
||||||
|
@ -8020,16 +8022,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "facade/flare-client-php",
|
"name": "facade/flare-client-php",
|
||||||
"version": "1.4.0",
|
"version": "1.5.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/facade/flare-client-php.git",
|
"url": "https://github.com/facade/flare-client-php.git",
|
||||||
"reference": "ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546"
|
"reference": "9dd6f2b56486d939c4467b3f35475d44af57cf17"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/facade/flare-client-php/zipball/ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546",
|
"url": "https://api.github.com/repos/facade/flare-client-php/zipball/9dd6f2b56486d939c4467b3f35475d44af57cf17",
|
||||||
"reference": "ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546",
|
"reference": "9dd6f2b56486d939c4467b3f35475d44af57cf17",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -8073,7 +8075,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/facade/flare-client-php/issues",
|
"issues": "https://github.com/facade/flare-client-php/issues",
|
||||||
"source": "https://github.com/facade/flare-client-php/tree/1.4.0"
|
"source": "https://github.com/facade/flare-client-php/tree/1.5.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -8081,20 +8083,20 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-02-16T12:42:06+00:00"
|
"time": "2021-03-31T07:32:54+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "facade/ignition",
|
"name": "facade/ignition",
|
||||||
"version": "2.5.14",
|
"version": "2.7.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/facade/ignition.git",
|
"url": "https://github.com/facade/ignition.git",
|
||||||
"reference": "17097f7a83e200d90d1cf9f4d1b35c1001513a47"
|
"reference": "bdc8b0b32c888f6edc838ca641358322b3d9506d"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/facade/ignition/zipball/17097f7a83e200d90d1cf9f4d1b35c1001513a47",
|
"url": "https://api.github.com/repos/facade/ignition/zipball/bdc8b0b32c888f6edc838ca641358322b3d9506d",
|
||||||
"reference": "17097f7a83e200d90d1cf9f4d1b35c1001513a47",
|
"reference": "bdc8b0b32c888f6edc838ca641358322b3d9506d",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -8158,7 +8160,7 @@
|
||||||
"issues": "https://github.com/facade/ignition/issues",
|
"issues": "https://github.com/facade/ignition/issues",
|
||||||
"source": "https://github.com/facade/ignition"
|
"source": "https://github.com/facade/ignition"
|
||||||
},
|
},
|
||||||
"time": "2021-03-04T08:48:01+00:00"
|
"time": "2021-03-30T15:55:38+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "facade/ignition-contracts",
|
"name": "facade/ignition-contracts",
|
||||||
|
@ -8215,20 +8217,22 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fakerphp/faker",
|
"name": "fakerphp/faker",
|
||||||
"version": "v1.13.0",
|
"version": "v1.14.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/FakerPHP/Faker.git",
|
"url": "https://github.com/FakerPHP/Faker.git",
|
||||||
"reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
|
"reference": "ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
|
"url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1",
|
||||||
"reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
|
"reference": "ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^7.1 || ^8.0"
|
"php": "^7.1 || ^8.0",
|
||||||
|
"psr/container": "^1.0",
|
||||||
|
"symfony/deprecation-contracts": "^2.2"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"fzaninotto/faker": "*"
|
"fzaninotto/faker": "*"
|
||||||
|
@ -8236,9 +8240,20 @@
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"bamarni/composer-bin-plugin": "^1.4.1",
|
"bamarni/composer-bin-plugin": "^1.4.1",
|
||||||
"ext-intl": "*",
|
"ext-intl": "*",
|
||||||
"phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
|
"symfony/phpunit-bridge": "^4.4 || ^5.2"
|
||||||
|
},
|
||||||
|
"suggest": {
|
||||||
|
"ext-curl": "Required by Faker\\Provider\\Image to download images.",
|
||||||
|
"ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
|
||||||
|
"ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
|
||||||
|
"ext-mbstring": "Required for multibyte Unicode string functionality."
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-main": "v1.15-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"Faker\\": "src/Faker/"
|
"Faker\\": "src/Faker/"
|
||||||
|
@ -8261,22 +8276,22 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/FakerPHP/Faker/issues",
|
"issues": "https://github.com/FakerPHP/Faker/issues",
|
||||||
"source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
|
"source": "https://github.com/FakerPHP/Faker/tree/v.1.14.1"
|
||||||
},
|
},
|
||||||
"time": "2020-12-18T16:50:48+00:00"
|
"time": "2021-03-30T06:27:33+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "filp/whoops",
|
"name": "filp/whoops",
|
||||||
"version": "2.11.0",
|
"version": "2.12.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/filp/whoops.git",
|
"url": "https://github.com/filp/whoops.git",
|
||||||
"reference": "f6e14679f948d8a5cfb866fa7065a30c66bd64d3"
|
"reference": "d501fd2658d55491a2295ff600ae5978eaad7403"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/filp/whoops/zipball/f6e14679f948d8a5cfb866fa7065a30c66bd64d3",
|
"url": "https://api.github.com/repos/filp/whoops/zipball/d501fd2658d55491a2295ff600ae5978eaad7403",
|
||||||
"reference": "f6e14679f948d8a5cfb866fa7065a30c66bd64d3",
|
"reference": "d501fd2658d55491a2295ff600ae5978eaad7403",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -8326,7 +8341,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/filp/whoops/issues",
|
"issues": "https://github.com/filp/whoops/issues",
|
||||||
"source": "https://github.com/filp/whoops/tree/2.11.0"
|
"source": "https://github.com/filp/whoops/tree/2.12.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -8334,7 +8349,7 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-03-19T12:00:00+00:00"
|
"time": "2021-03-30T12:00:00+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "hamcrest/hamcrest-php",
|
"name": "hamcrest/hamcrest-php",
|
||||||
|
@ -8459,16 +8474,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/breeze",
|
"name": "laravel/breeze",
|
||||||
"version": "v1.1.3",
|
"version": "v1.1.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laravel/breeze.git",
|
"url": "https://github.com/laravel/breeze.git",
|
||||||
"reference": "cf91d78e154fd274273926d6773ed6750f7c2c2c"
|
"reference": "36f678dc65bdb09b5dbbb46051ab07d1a6f19962"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laravel/breeze/zipball/cf91d78e154fd274273926d6773ed6750f7c2c2c",
|
"url": "https://api.github.com/repos/laravel/breeze/zipball/36f678dc65bdb09b5dbbb46051ab07d1a6f19962",
|
||||||
"reference": "cf91d78e154fd274273926d6773ed6750f7c2c2c",
|
"reference": "36f678dc65bdb09b5dbbb46051ab07d1a6f19962",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -8511,7 +8526,7 @@
|
||||||
"issues": "https://github.com/laravel/breeze/issues",
|
"issues": "https://github.com/laravel/breeze/issues",
|
||||||
"source": "https://github.com/laravel/breeze"
|
"source": "https://github.com/laravel/breeze"
|
||||||
},
|
},
|
||||||
"time": "2021-02-18T15:47:31+00:00"
|
"time": "2021-03-23T17:01:27+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/sail",
|
"name": "laravel/sail",
|
||||||
|
@ -9368,16 +9383,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpunit/php-code-coverage",
|
"name": "phpunit/php-code-coverage",
|
||||||
"version": "9.2.5",
|
"version": "9.2.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
|
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
|
||||||
"reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
|
"reference": "f6293e1b30a2354e8428e004689671b83871edde"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
|
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde",
|
||||||
"reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
|
"reference": "f6293e1b30a2354e8428e004689671b83871edde",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -9433,7 +9448,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
|
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
|
||||||
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
|
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -9441,7 +9456,7 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2020-11-28T06:44:49+00:00"
|
"time": "2021-03-28T07:26:59+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpunit/php-file-iterator",
|
"name": "phpunit/php-file-iterator",
|
||||||
|
@ -9686,16 +9701,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpunit/phpunit",
|
"name": "phpunit/phpunit",
|
||||||
"version": "9.5.3",
|
"version": "9.5.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
||||||
"reference": "27241ac75fc37ecf862b6e002bf713b6566cbe41"
|
"reference": "c73c6737305e779771147af66c96ca6a7ed8a741"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/27241ac75fc37ecf862b6e002bf713b6566cbe41",
|
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c73c6737305e779771147af66c96ca6a7ed8a741",
|
||||||
"reference": "27241ac75fc37ecf862b6e002bf713b6566cbe41",
|
"reference": "c73c6737305e779771147af66c96ca6a7ed8a741",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -9773,7 +9788,7 @@
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
||||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.3"
|
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -9785,7 +9800,7 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-03-17T07:30:34+00:00"
|
"time": "2021-03-23T07:16:29+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sebastian/cli-parser",
|
"name": "sebastian/cli-parser",
|
||||||
|
@ -10942,16 +10957,16 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/filesystem",
|
"name": "symfony/filesystem",
|
||||||
"version": "v5.2.4",
|
"version": "v5.2.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/filesystem.git",
|
"url": "https://github.com/symfony/filesystem.git",
|
||||||
"reference": "710d364200997a5afde34d9fe57bd52f3cc1e108"
|
"reference": "8c86a82f51658188119e62cff0a050a12d09836f"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/filesystem/zipball/710d364200997a5afde34d9fe57bd52f3cc1e108",
|
"url": "https://api.github.com/repos/symfony/filesystem/zipball/8c86a82f51658188119e62cff0a050a12d09836f",
|
||||||
"reference": "710d364200997a5afde34d9fe57bd52f3cc1e108",
|
"reference": "8c86a82f51658188119e62cff0a050a12d09836f",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
@ -10984,7 +10999,7 @@
|
||||||
"description": "Provides basic utilities for the filesystem",
|
"description": "Provides basic utilities for the filesystem",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/filesystem/tree/v5.2.4"
|
"source": "https://github.com/symfony/filesystem/tree/v5.2.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
@ -11000,7 +11015,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-02-12T10:38:38+00:00"
|
"time": "2021-03-28T14:30:26+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/stopwatch",
|
"name": "symfony/stopwatch",
|
||||||
|
|
Loading…
Reference in New Issue