From 868a4e2ca453b452f40471053c607490709dc345 Mon Sep 17 00:00:00 2001 From: Andrei Petcu Date: Fri, 30 Jul 2021 14:20:06 +0300 Subject: [PATCH] #170 Upgrade to Laravel 8 and PHP 8 --- .docker/Dockerfile | 15 +- .docker/config/nginx/default | 2 +- .docker/config/supervisor/supervisor.conf | 4 +- .docker/webserver/Dockerfile | 2 +- .docker/webserver/config/nginx/default | 2 +- .../config/supervisor/supervisor.conf | 2 +- composer.json | 32 +- composer.lock | 2564 +++++++++++------ .../admin/css/main-buckets.b3760912.css | 2 +- public/assets/admin/twill-manifest.json | 24 +- 10 files changed, 1682 insertions(+), 967 deletions(-) diff --git a/.docker/Dockerfile b/.docker/Dockerfile index 563110f4..7fbf5ab4 100644 --- a/.docker/Dockerfile +++ b/.docker/Dockerfile @@ -1,4 +1,6 @@ -FROM citizennext/webserver:latest +FROM citizennext/webserver:php8 + +ENV DEBIAN_FRONTEND noninteractive ARG APP_ENV ARG APP_KEY @@ -85,12 +87,20 @@ ENV NOCAPTCHA_SECRET=${NOCAPTCHA_SECRET} ENV NOCAPTCHA_SITEKEY=${NOCAPTCHA_SITEKEY} ENV GOOGLE_MAPS_API_KEY=${GOOGLE_MAPS_API_KEY} +# install packages +RUN apt-get install --no-install-recommends -y curl + +RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer + # copy application file COPY . /var/www/html # create application environment file RUN cp .env.example .env +# run composer again to optimize autoload. +RUN composer install --optimize-autoloader --no-dev --no-cache + # prepare Laravel log RUN touch /var/www/html/storage/logs/laravel.log RUN chmod 777 /var/www/html/storage/logs/laravel.log @@ -103,8 +113,7 @@ COPY .docker/config/nginx/default /etc/nginx/sites-available/default COPY .docker/config/nginx/nginx.conf /etc/nginx/nginx.conf # configure php-fpm -COPY .docker/config/php-fpm/www.conf /etc/php/7.4/fpm/pool.d/www.conf - +COPY .docker/config/php-fpm/www.conf /etc/php/8.0/fpm/pool.d/www.conf EXPOSE 80 diff --git a/.docker/config/nginx/default b/.docker/config/nginx/default index 7c6a368c..bd16a9b9 100644 --- a/.docker/config/nginx/default +++ b/.docker/config/nginx/default @@ -38,7 +38,7 @@ server { client_max_body_size 128m; location ~ \.php$ { - fastcgi_pass unix:/run/php/php7.4-fpm.sock; + fastcgi_pass unix:/run/php/php8.0-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; include fastcgi_params; diff --git a/.docker/config/supervisor/supervisor.conf b/.docker/config/supervisor/supervisor.conf index e519f830..42e532d2 100644 --- a/.docker/config/supervisor/supervisor.conf +++ b/.docker/config/supervisor/supervisor.conf @@ -2,7 +2,7 @@ nodaemon=true [program:php-fpm] -command=/usr/sbin/php-fpm7.4 -F +command=/etc/init.d/php8.0-fpm start autostart=true autorestart=true log_stdout=true @@ -15,4 +15,4 @@ autostart=true autorestart=true log_stdout=true log_stderr=true -priority=100 \ No newline at end of file +priority=100 diff --git a/.docker/webserver/Dockerfile b/.docker/webserver/Dockerfile index 3f9b960d..f922df9e 100644 --- a/.docker/webserver/Dockerfile +++ b/.docker/webserver/Dockerfile @@ -1,4 +1,4 @@ -FROM citizennext/webserver:latest +FROM citizennext/webserver:php8 # install Nginx COPY config/nginx/default /etc/nginx/sites-available/default diff --git a/.docker/webserver/config/nginx/default b/.docker/webserver/config/nginx/default index 5593ba7b..f5a0b0f7 100644 --- a/.docker/webserver/config/nginx/default +++ b/.docker/webserver/config/nginx/default @@ -23,7 +23,7 @@ server { client_max_body_size 128m; location ~ \.php$ { - fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; + fastcgi_pass unix:/var/run/php/php8.0-fpm.sock; fastcgi_index index.php; fastcgi_read_timeout 300; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; diff --git a/.docker/webserver/config/supervisor/supervisor.conf b/.docker/webserver/config/supervisor/supervisor.conf index ffc25e22..42e532d2 100644 --- a/.docker/webserver/config/supervisor/supervisor.conf +++ b/.docker/webserver/config/supervisor/supervisor.conf @@ -2,7 +2,7 @@ nodaemon=true [program:php-fpm] -command=/usr/sbin/php-fpm7.4 -F +command=/etc/init.d/php8.0-fpm start autostart=true autorestart=true log_stdout=true diff --git a/composer.json b/composer.json index 4f431283..002b1930 100644 --- a/composer.json +++ b/composer.json @@ -5,42 +5,42 @@ "keywords": [], "license": "MIT", "require": { - "php": "^7.4", + "php": "^7.3|^8.0", "ext-curl": "*", "ext-intl": "*", "ext-json": "*", "ext-mysqli": "*", "ext-openssl": "*", "anhskohbo/no-captcha": "^3.3", - "area17/twill": "2.1.1", + "area17/twill": "^2.4", "aws/aws-sdk-php": "^3.149", "doctrine/dbal": "^2.10", - "fideloper/proxy": "^4.2", + "fideloper/proxy": "^4.4", "flynsarmy/csv-seeder": "^2.0", - "fruitcake/laravel-cors": "^1.0", + "fruitcake/laravel-cors": "^2.0", "giggsey/libphonenumber-for-php": "^8.12", - "guzzlehttp/guzzle": "^6.3", + "guzzlehttp/guzzle": "^7.0.1", "langleyfoxall/laravel-nist-password-rules": "^4.3", - "laravel/framework": "^7.0", - "laravel/tinker": "^2.0", - "laravel/ui": "^2.1", + "laravel/framework": "^8.40", + "laravel/tinker": "^2.5", + "laravel/ui": "^3.3", "league/flysystem-aws-s3-v3": "^1.0", - "owen-it/laravel-auditing": "^11.0", + "owen-it/laravel-auditing": "^12.0", "pragmarx/google2fa-laravel": "^1.3", "propaganistas/laravel-phone": "^4.2", "sentry/sentry-laravel": "^2.3", "spatie/laravel-cookie-consent": "^2.12", "spatie/laravel-permission": "^3.13", - "spatie/laravel-sluggable": "^2.5", - "teamtnt/laravel-scout-tntsearch-driver": "^9.0", + "spatie/laravel-sluggable": "^3.1", + "teamtnt/laravel-scout-tntsearch-driver": "^11.5", "yajra/laravel-datatables": "^1.5" }, "require-dev": { - "facade/ignition": "^2.0", - "fzaninotto/faker": "^1.9.1", - "mockery/mockery": "^1.3.1", - "nunomaduro/collision": "^4.1", - "phpunit/phpunit": "^8.5" + "facade/ignition": "^2.5", + "fakerphp/faker": "^1.9.1", + "mockery/mockery": "^1.4.2", + "nunomaduro/collision": "^5.0", + "phpunit/phpunit": "^9.3.3" }, "config": { "optimize-autoloader": true, diff --git a/composer.lock b/composer.lock index b2c1953b..3b498e70 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "da3e1a3be450762023ff3a81fde0b9b9", + "content-hash": "254d6d384e0243394def849e14340c1a", "packages": [ { "name": "anhskohbo/no-captcha", @@ -72,34 +72,34 @@ }, { "name": "area17/twill", - "version": "2.1.1", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/area17/twill.git", - "reference": "b420c6954250d18ad0446e65003715ef9ae8dca7" + "reference": "8066ad159798b778be9e36cbbeb3ddbd3b12bf70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/area17/twill/zipball/b420c6954250d18ad0446e65003715ef9ae8dca7", - "reference": "b420c6954250d18ad0446e65003715ef9ae8dca7", + "url": "https://api.github.com/repos/area17/twill/zipball/8066ad159798b778be9e36cbbeb3ddbd3b12bf70", + "reference": "8066ad159798b778be9e36cbbeb3ddbd3b12bf70", "shasum": "" }, "require": { "astrotomic/laravel-translatable": "^11.5", - "cartalyst/tags": "^6.0|^7.0|^8.0|^9.0|^10.0", + "cartalyst/tags": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "doctrine/dbal": "^2.9", "ext-json": "*", "ext-pdo": "*", - "guzzlehttp/guzzle": "^6.2", + "guzzlehttp/guzzle": "^6.2|^7.0", "imgix/imgix-php": "^3.0", - "laravel/framework": "~5.6|~5.7|~5.8|^6.0|^7.0", - "laravel/socialite": "^4.2", - "laravel/ui": "^1.0|^2.0", + "laravel/framework": "~5.6|~5.7|~5.8|^6.0|^7.0|^8.0", + "laravel/socialite": "^4.2|^5.0", + "laravel/ui": "^1.0|^2.0|^3.0", "league/flysystem-aws-s3-v3": "^1.0", "league/glide-laravel": "^1.0", "matthewbdaly/laravel-azure-storage": "^1.3", "myclabs/php-enum": "^1.5", - "php": "^7.1", + "php": "^7.1|^8.0", "pragmarx/google2fa-qrcode": "^1.0", "spatie/laravel-activitylog": "^2.5|^3.2", "spatie/laravel-analytics": "^3.6", @@ -108,8 +108,8 @@ "require-dev": { "friendsofphp/php-cs-fixer": "^2.16", "kalnoy/nestedset": "^5.0", - "nunomaduro/collision": "^3.0|^4.2", - "orchestra/testbench": "~3.3|~3.4|~3.5|~3.6|~3.7|~3.8|^4.0|^5.0", + "nunomaduro/collision": "^3.0|^4.2|^5.0", + "orchestra/testbench": "~3.3|~3.4|~3.5|~3.6|~3.7|~3.8|^4.0|^5.0|^6.0", "phpunit/phpunit": "~5.0|~6.0|~7.0|~8.0|~9.0" }, "type": "library", @@ -148,45 +148,45 @@ "twill" ], "support": { - "chat": "https://spectrum.chat/twill", + "chat": "https://discord.link/twill", "docs": "https://twill.io/docs", "issues": "https://github.com/ifox/twill/issues/", - "source": "https://github.com/area17/twill/tree/2.x" + "source": "https://github.com/area17/twill/tree/2.4.0" }, - "time": "2020-07-20T13:54:38+00:00" + "time": "2021-06-15T21:50:26+00:00" }, { "name": "asm89/stack-cors", - "version": "1.3.0", + "version": "v2.0.3", "source": { "type": "git", "url": "https://github.com/asm89/stack-cors.git", - "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08" + "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08", - "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714", + "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714", "shasum": "" }, "require": { - "php": ">=5.5.9", + "php": "^7.0|^8.0", "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0", "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0" }, "require-dev": { - "phpunit/phpunit": "^5.0 || ^4.8.10", - "squizlabs/php_codesniffer": "^2.3" + "phpunit/phpunit": "^6|^7|^8|^9", + "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2-dev" + "dev-master": "2.0-dev" } }, "autoload": { "psr-4": { - "Asm89\\Stack\\": "src/Asm89/Stack/" + "Asm89\\Stack\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -207,9 +207,9 @@ ], "support": { "issues": "https://github.com/asm89/stack-cors/issues", - "source": "https://github.com/asm89/stack-cors/tree/1.3.0" + "source": "https://github.com/asm89/stack-cors/tree/v2.0.3" }, - "time": "2019-12-24T22:41:47+00:00" + "time": "2021-03-11T06:42:03+00:00" }, { "name": "astrotomic/laravel-translatable", @@ -298,16 +298,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.185.14", + "version": "3.186.2", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "9faaa7f7fafe569049bbb615767d8e3fa83d9fb7" + "reference": "ce90f6e5c322f2ce600d818b7949dbfcbf192359" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/9faaa7f7fafe569049bbb615767d8e3fa83d9fb7", - "reference": "9faaa7f7fafe569049bbb615767d8e3fa83d9fb7", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/ce90f6e5c322f2ce600d818b7949dbfcbf192359", + "reference": "ce90f6e5c322f2ce600d818b7949dbfcbf192359", "shasum": "" }, "require": { @@ -382,9 +382,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.185.14" + "source": "https://github.com/aws/aws-sdk-php/tree/3.186.2" }, - "time": "2021-07-15T18:15:50+00:00" + "time": "2021-07-29T18:14:25+00:00" }, { "name": "bacon/bacon-qr-code", @@ -497,33 +497,33 @@ }, { "name": "cartalyst/tags", - "version": "v10.0.1", + "version": "v11.1.0", "source": { "type": "git", - "url": "git@github.com:cartalyst/tags.git", - "reference": "27b4f07b1abc72ad57507a0c52eba370caf5973d" + "url": "https://github.com/cartalyst/tags.git", + "reference": "bbf7cfa544328f438f5191291ec8daa44484d4c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cartalyst/tags/zipball/27b4f07b1abc72ad57507a0c52eba370caf5973d", - "reference": "27b4f07b1abc72ad57507a0c52eba370caf5973d", + "url": "https://api.github.com/repos/cartalyst/tags/zipball/bbf7cfa544328f438f5191291ec8daa44484d4c5", + "reference": "bbf7cfa544328f438f5191291ec8daa44484d4c5", "shasum": "" }, "require": { - "illuminate/database": "^7.0", - "php": "^7.2.5" + "illuminate/database": "^8.0", + "php": "^7.3 || ^8.0" }, "require-dev": { "cartalyst/php-cs-fixer-config": "^1.0", "mockery/mockery": "^1.0", - "orchestra/testbench": "^5.0", - "phpunit/phpunit": "^8.0" + "orchestra/testbench": "^6.0", + "phpunit/phpunit": "^9.0" }, "type": "library", "extra": { "component": "package", "branch-alias": { - "dev-master": "10.0.x-dev" + "dev-master": "11.0.x-dev" }, "laravel": { "providers": [ @@ -554,7 +554,11 @@ "php", "tags" ], - "time": "2020-03-06T17:13:27+00:00" + "support": { + "issues": "https://github.com/cartalyst/tags/issues", + "source": "https://github.com/cartalyst/tags/tree/v11.1.0" + }, + "time": "2020-12-22T22:21:56+00:00" }, { "name": "clue/stream-filter", @@ -669,6 +673,81 @@ }, "time": "2020-10-02T16:03:48+00:00" }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.0", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "e04ff030d24a33edc2421bef305e32919dd78fc3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/e04ff030d24a33edc2421bef305e32919dd78fc3", + "reference": "e04ff030d24a33edc2421bef305e32919dd78fc3", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^3.14" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.0" + }, + "time": "2021-01-01T22:08:42+00:00" + }, { "name": "divineomega/do-file-cache", "version": "v2.0.6", @@ -947,16 +1026,16 @@ }, { "name": "doctrine/cache", - "version": "2.1.0", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "ac77408b22cc6c4d0b4947d20a3889be3043566e" + "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/ac77408b22cc6c4d0b4947d20a3889be3043566e", - "reference": "ac77408b22cc6c4d0b4947d20a3889be3043566e", + "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce", + "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce", "shasum": "" }, "require": { @@ -1026,7 +1105,7 @@ ], "support": { "issues": "https://github.com/doctrine/cache/issues", - "source": "https://github.com/doctrine/cache/tree/2.1.0" + "source": "https://github.com/doctrine/cache/tree/2.1.1" }, "funding": [ { @@ -1042,7 +1121,7 @@ "type": "tidelift" } ], - "time": "2021-07-14T11:22:57+00:00" + "time": "2021-07-17T14:49:29+00:00" }, { "name": "doctrine/dbal", @@ -1466,30 +1545,32 @@ }, { "name": "dragonmantank/cron-expression", - "version": "v2.3.1", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/dragonmantank/cron-expression.git", - "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2" + "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2", - "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c", + "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c", "shasum": "" }, "require": { - "php": "^7.0|^8.0" + "php": "^7.2|^8.0", + "webmozart/assert": "^1.7.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" }, "require-dev": { - "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0" + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-webmozart-assert": "^0.12.7", + "phpunit/phpunit": "^7.0|^8.0|^9.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.3-dev" - } - }, "autoload": { "psr-4": { "Cron\\": "src/Cron/" @@ -1500,11 +1581,6 @@ "MIT" ], "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, { "name": "Chris Tankersley", "email": "chris@ctankersley.com", @@ -1518,7 +1594,7 @@ ], "support": { "issues": "https://github.com/dragonmantank/cron-expression/issues", - "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1" + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0" }, "funding": [ { @@ -1526,7 +1602,7 @@ "type": "github" } ], - "time": "2020-10-13T00:52:37+00:00" + "time": "2020-11-24T19:55:57+00:00" }, { "name": "egulias/email-validator", @@ -1827,37 +1903,36 @@ }, { "name": "fruitcake/laravel-cors", - "version": "v1.0.6", + "version": "v2.0.4", "source": { "type": "git", "url": "https://github.com/fruitcake/laravel-cors.git", - "reference": "1d127dbec313e2e227d65e0c483765d8d7559bf6" + "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/1d127dbec313e2e227d65e0c483765d8d7559bf6", - "reference": "1d127dbec313e2e227d65e0c483765d8d7559bf6", + "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a", + "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a", "shasum": "" }, "require": { - "asm89/stack-cors": "^1.3", - "illuminate/contracts": "^5.5|^6.0|^7.0|^8.0", - "illuminate/support": "^5.5|^6.0|^7.0|^8.0", - "php": ">=7", - "symfony/http-foundation": "^3.3|^4.0|^5.0", - "symfony/http-kernel": "^3.3|^4.0|^5.0" + "asm89/stack-cors": "^2.0.1", + "illuminate/contracts": "^6|^7|^8|^9", + "illuminate/support": "^6|^7|^8|^9", + "php": ">=7.2", + "symfony/http-foundation": "^4|^5", + "symfony/http-kernel": "^4.3.4|^5" }, "require-dev": { - "laravel/framework": "^5.5|^6.0|^7.0|^8.0", - "orchestra/testbench": "^3.5|^4.0|^5.0|^6.0", - "phpro/grumphp": "^0.16|^0.17", - "phpunit/phpunit": "^6.0|^7.0|^8.0", + "laravel/framework": "^6|^7|^8", + "orchestra/testbench-dusk": "^4|^5|^6|^7", + "phpunit/phpunit": "^6|^7|^8|^9", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "2.0-dev" }, "laravel": { "providers": [ @@ -1893,7 +1968,7 @@ ], "support": { "issues": "https://github.com/fruitcake/laravel-cors/issues", - "source": "https://github.com/fruitcake/laravel-cors/tree/1.0" + "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.4" }, "funding": [ { @@ -1901,20 +1976,20 @@ "type": "github" } ], - "time": "2020-04-28T08:47:37+00:00" + "time": "2021-04-26T11:24:25+00:00" }, { "name": "giggsey/libphonenumber-for-php", - "version": "8.12.26", + "version": "8.12.28", "source": { "type": "git", "url": "https://github.com/giggsey/libphonenumber-for-php.git", - "reference": "0c5804c09087e841d7594c3d7f72003f703abf69" + "reference": "f503d56d269e9b8572440820ef029e296dadaa1e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/0c5804c09087e841d7594c3d7f72003f703abf69", - "reference": "0c5804c09087e841d7594c3d7f72003f703abf69", + "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/f503d56d269e9b8572440820ef029e296dadaa1e", + "reference": "f503d56d269e9b8572440820ef029e296dadaa1e", "shasum": "" }, "require": { @@ -1974,7 +2049,7 @@ "issues": "https://github.com/giggsey/libphonenumber-for-php/issues", "source": "https://github.com/giggsey/libphonenumber-for-php" }, - "time": "2021-06-23T10:32:05+00:00" + "time": "2021-07-20T13:33:24+00:00" }, { "name": "giggsey/locale", @@ -2100,16 +2175,16 @@ }, { "name": "google/apiclient-services", - "version": "v0.203.0", + "version": "v0.205.0", "source": { "type": "git", "url": "https://github.com/googleapis/google-api-php-client-services.git", - "reference": "e397f35251a49e0f4284d5f7d934164ca1274066" + "reference": "75ff6a81838493bb9b5aad0458ebd4226e0c0557" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/e397f35251a49e0f4284d5f7d934164ca1274066", - "reference": "e397f35251a49e0f4284d5f7d934164ca1274066", + "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/75ff6a81838493bb9b5aad0458ebd4226e0c0557", + "reference": "75ff6a81838493bb9b5aad0458ebd4226e0c0557", "shasum": "" }, "require": { @@ -2138,9 +2213,9 @@ ], "support": { "issues": "https://github.com/googleapis/google-api-php-client-services/issues", - "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.203.0" + "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.205.0" }, - "time": "2021-07-10T11:20:23+00:00" + "time": "2021-07-24T11:20:23+00:00" }, { "name": "google/auth", @@ -2199,39 +2274,112 @@ }, "time": "2021-06-22T18:06:03+00:00" }, + { + "name": "graham-campbell/result-type", + "version": "v1.0.1", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb", + "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb", + "shasum": "" + }, + "require": { + "php": "^7.0|^8.0", + "phpoption/phpoption": "^1.7.3" + }, + "require-dev": { + "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "graham@alt-three.com" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2020-04-13T13:17:36+00:00" + }, { "name": "guzzlehttp/guzzle", - "version": "6.5.5", + "version": "7.3.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e" + "reference": "7008573787b430c1c1f650e3722d9bba59967628" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", - "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628", + "reference": "7008573787b430c1c1f650e3722d9bba59967628", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.6.1", - "php": ">=5.5", - "symfony/polyfill-intl-idn": "^1.17.0" + "guzzlehttp/promises": "^1.4", + "guzzlehttp/psr7": "^1.7 || ^2.0", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" }, "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", "ext-curl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "php-http/client-integration-tests": "^3.0", + "phpunit/phpunit": "^8.5.5 || ^9.3.5", "psr/log": "^1.1" }, "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", "psr/log": "Required for using the Log middleware" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "6.5-dev" + "dev-master": "7.3-dev" } }, "autoload": { @@ -2251,6 +2399,11 @@ "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" } ], "description": "Guzzle is a PHP HTTP client library", @@ -2261,14 +2414,34 @@ "framework", "http", "http client", + "psr-18", + "psr-7", "rest", "web service" ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/6.5" + "source": "https://github.com/guzzle/guzzle/tree/7.3.0" }, - "time": "2020-06-16T21:01:06+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://github.com/alexeyshockov", + "type": "github" + }, + { + "url": "https://github.com/gmponos", + "type": "github" + } + ], + "time": "2021-03-23T11:33:13+00:00" }, { "name": "guzzlehttp/promises", @@ -2402,28 +2575,32 @@ }, { "name": "http-interop/http-factory-guzzle", - "version": "1.0.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/http-interop/http-factory-guzzle.git", - "reference": "34861658efb9899a6618cef03de46e2a52c80fc0" + "reference": "8f06e92b95405216b237521cc64c804dd44c4a81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/http-interop/http-factory-guzzle/zipball/34861658efb9899a6618cef03de46e2a52c80fc0", - "reference": "34861658efb9899a6618cef03de46e2a52c80fc0", + "url": "https://api.github.com/repos/http-interop/http-factory-guzzle/zipball/8f06e92b95405216b237521cc64c804dd44c4a81", + "reference": "8f06e92b95405216b237521cc64c804dd44c4a81", "shasum": "" }, "require": { - "guzzlehttp/psr7": "^1.4.2", + "guzzlehttp/psr7": "^1.7||^2.0", + "php": ">=7.3", "psr/http-factory": "^1.0" }, "provide": { "psr/http-factory-implementation": "^1.0" }, "require-dev": { - "http-interop/http-factory-tests": "^0.5", - "phpunit/phpunit": "^6.5" + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^9.5" + }, + "suggest": { + "guzzlehttp/psr7": "Includes an HTTP factory starting in version 2.0" }, "type": "library", "autoload": { @@ -2450,9 +2627,9 @@ ], "support": { "issues": "https://github.com/http-interop/http-factory-guzzle/issues", - "source": "https://github.com/http-interop/http-factory-guzzle/tree/master" + "source": "https://github.com/http-interop/http-factory-guzzle/tree/1.2.0" }, - "time": "2018-07-31T19:32:56+00:00" + "time": "2021-07-21T13:50:14+00:00" }, { "name": "imgix/imgix-php", @@ -2496,16 +2673,16 @@ }, { "name": "intervention/image", - "version": "2.6.0", + "version": "2.6.1", "source": { "type": "git", "url": "https://github.com/Intervention/image.git", - "reference": "a2d7238069bb01322f9c2a661449955434fec9c6" + "reference": "0925f10b259679b5d8ca58f3a2add9255ffcda45" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Intervention/image/zipball/a2d7238069bb01322f9c2a661449955434fec9c6", - "reference": "a2d7238069bb01322f9c2a661449955434fec9c6", + "url": "https://api.github.com/repos/Intervention/image/zipball/0925f10b259679b5d8ca58f3a2add9255ffcda45", + "reference": "0925f10b259679b5d8ca58f3a2add9255ffcda45", "shasum": "" }, "require": { @@ -2564,7 +2741,7 @@ ], "support": { "issues": "https://github.com/Intervention/image/issues", - "source": "https://github.com/Intervention/image/tree/2.6.0" + "source": "https://github.com/Intervention/image/tree/2.6.1" }, "funding": [ { @@ -2576,7 +2753,7 @@ "type": "github" } ], - "time": "2021-07-06T13:35:54+00:00" + "time": "2021-07-22T14:31:53+00:00" }, { "name": "jean85/pretty-package-versions", @@ -2693,47 +2870,46 @@ }, { "name": "laravel/framework", - "version": "v7.30.4", + "version": "v8.52.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3" + "reference": "8fe9877d52e25f8aed36c51734e5a8510be967e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3", - "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3", + "url": "https://api.github.com/repos/laravel/framework/zipball/8fe9877d52e25f8aed36c51734e5a8510be967e6", + "reference": "8fe9877d52e25f8aed36c51734e5a8510be967e6", "shasum": "" }, "require": { "doctrine/inflector": "^1.4|^2.0", - "dragonmantank/cron-expression": "^2.3.1", + "dragonmantank/cron-expression": "^3.0.2", "egulias/email-validator": "^2.1.10", "ext-json": "*", "ext-mbstring": "*", "ext-openssl": "*", - "league/commonmark": "^1.3", + "league/commonmark": "^1.3|^2.0", "league/flysystem": "^1.1", "monolog/monolog": "^2.0", "nesbot/carbon": "^2.31", "opis/closure": "^3.6", - "php": "^7.2.5|^8.0", + "php": "^7.3|^8.0", "psr/container": "^1.0", "psr/simple-cache": "^1.0", - "ramsey/uuid": "^3.7|^4.0", + "ramsey/uuid": "^4.0", "swiftmailer/swiftmailer": "^6.0", - "symfony/console": "^5.0", - "symfony/error-handler": "^5.0", - "symfony/finder": "^5.0", - "symfony/http-foundation": "^5.0", - "symfony/http-kernel": "^5.0", - "symfony/mime": "^5.0", - "symfony/polyfill-php73": "^1.17", - "symfony/process": "^5.0", - "symfony/routing": "^5.0", - "symfony/var-dumper": "^5.0", + "symfony/console": "^5.1.4", + "symfony/error-handler": "^5.1.4", + "symfony/finder": "^5.1.4", + "symfony/http-foundation": "^5.1.4", + "symfony/http-kernel": "^5.1.4", + "symfony/mime": "^5.1.4", + "symfony/process": "^5.1.4", + "symfony/routing": "^5.1.4", + "symfony/var-dumper": "^5.1.4", "tijsverkoyen/css-to-inline-styles": "^2.2.2", - "vlucas/phpdotenv": "^4.0", + "vlucas/phpdotenv": "^5.2", "voku/portable-ascii": "^1.4.8" }, "conflict": { @@ -2747,6 +2923,7 @@ "illuminate/broadcasting": "self.version", "illuminate/bus": "self.version", "illuminate/cache": "self.version", + "illuminate/collections": "self.version", "illuminate/config": "self.version", "illuminate/console": "self.version", "illuminate/container": "self.version", @@ -2759,6 +2936,7 @@ "illuminate/hashing": "self.version", "illuminate/http": "self.version", "illuminate/log": "self.version", + "illuminate/macroable": "self.version", "illuminate/mail": "self.version", "illuminate/notifications": "self.version", "illuminate/pagination": "self.version", @@ -2775,21 +2953,21 @@ }, "require-dev": { "aws/aws-sdk-php": "^3.155", - "doctrine/dbal": "^2.6", + "doctrine/dbal": "^2.6|^3.0", "filp/whoops": "^2.8", - "guzzlehttp/guzzle": "^6.3.1|^7.0.1", + "guzzlehttp/guzzle": "^6.5.5|^7.0.1", "league/flysystem-cached-adapter": "^1.0", - "mockery/mockery": "~1.3.3|^1.4.2", - "moontoast/math": "^1.1", - "orchestra/testbench-core": "^5.8", + "mockery/mockery": "^1.4.2", + "orchestra/testbench-core": "^6.23", "pda/pheanstalk": "^4.0", - "phpunit/phpunit": "^8.4|^9.3.3", - "predis/predis": "^1.1.1", - "symfony/cache": "^5.0" + "phpunit/phpunit": "^8.5.8|^9.3.3", + "predis/predis": "^1.1.2", + "symfony/cache": "^5.1.4" }, "suggest": { "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).", - "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).", + "brianium/paratest": "Required to run tests in parallel (^6.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).", "ext-ftp": "Required to use the Flysystem FTP driver.", "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", "ext-memcached": "Required to use the memcache cache driver.", @@ -2798,37 +2976,42 @@ "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", "filp/whoops": "Required for friendly error pages in development (^2.8).", - "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).", + "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).", "laravel/tinker": "Required to use the tinker console command (^2.0).", "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).", "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).", "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).", - "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).", - "moontoast/math": "Required to use ordered UUIDs (^1.1).", + "mockery/mockery": "Required to use mocking (^1.4.2).", "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", - "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).", + "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).", "predis/predis": "Required to use the predis connector (^1.1.2).", "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", - "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).", - "symfony/cache": "Required to PSR-6 cache bridge (^5.0).", - "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).", "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).", "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "7.x-dev" + "dev-master": "8.x-dev" } }, "autoload": { "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", "src/Illuminate/Foundation/helpers.php", "src/Illuminate/Support/helpers.php" ], "psr-4": { - "Illuminate\\": "src/Illuminate/" + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/" + ] } }, "notification-url": "https://packagist.org/downloads/", @@ -2851,43 +3034,46 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-01-21T14:10:48+00:00" + "time": "2021-07-27T13:03:29+00:00" }, { "name": "laravel/scout", - "version": "v8.6.1", + "version": "v9.2.3", "source": { "type": "git", "url": "https://github.com/laravel/scout.git", - "reference": "7fb1c860a2fd904f0e084a7cc3641eb1448ba278" + "reference": "5d62c83ea11b98f1f89ee78bdb82d7b8a1791e67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/scout/zipball/7fb1c860a2fd904f0e084a7cc3641eb1448ba278", - "reference": "7fb1c860a2fd904f0e084a7cc3641eb1448ba278", + "url": "https://api.github.com/repos/laravel/scout/zipball/5d62c83ea11b98f1f89ee78bdb82d7b8a1791e67", + "reference": "5d62c83ea11b98f1f89ee78bdb82d7b8a1791e67", "shasum": "" }, "require": { - "illuminate/bus": "^6.0|^7.0|^8.0", - "illuminate/contracts": "^6.0|^7.0|^8.0", - "illuminate/database": "^6.0|^7.0|^8.0", - "illuminate/http": "^6.0|^7.0|^8.0", - "illuminate/pagination": "^6.0|^7.0|^8.0", - "illuminate/queue": "^6.0|^7.0|^8.0", - "illuminate/support": "^6.0|^7.0|^8.0", - "php": "^7.2|^8.0" + "illuminate/bus": "^8.0", + "illuminate/contracts": "^8.0", + "illuminate/database": "^8.0", + "illuminate/http": "^8.0", + "illuminate/pagination": "^8.0", + "illuminate/queue": "^8.0", + "illuminate/support": "^8.0", + "php": "^7.3|^8.0" }, "require-dev": { + "meilisearch/meilisearch-php": "^0.17", "mockery/mockery": "^1.0", - "phpunit/phpunit": "^8.0|^9.3" + "orchestra/testbench": "^6.17", + "phpunit/phpunit": "^9.3" }, "suggest": { - "algolia/algoliasearch-client-php": "Required to use the Algolia engine (^2.2)." + "algolia/algoliasearch-client-php": "Required to use the Algolia engine (^2.2).", + "meilisearch/meilisearch-php": "Required to use the MeiliSearch engine (^0.17)." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "8.x-dev" + "dev-master": "9.x-dev" }, "laravel": { "providers": [ @@ -2920,40 +3106,40 @@ "issues": "https://github.com/laravel/scout/issues", "source": "https://github.com/laravel/scout" }, - "time": "2021-04-06T14:35:41+00:00" + "time": "2021-07-13T16:13:35+00:00" }, { "name": "laravel/socialite", - "version": "v4.4.1", + "version": "v5.2.3", "source": { "type": "git", "url": "https://github.com/laravel/socialite.git", - "reference": "80951df0d93435b773aa00efe1fad6d5015fac75" + "reference": "1960802068f81e44b2ae9793932181cf1cb91b5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/socialite/zipball/80951df0d93435b773aa00efe1fad6d5015fac75", - "reference": "80951df0d93435b773aa00efe1fad6d5015fac75", + "url": "https://api.github.com/repos/laravel/socialite/zipball/1960802068f81e44b2ae9793932181cf1cb91b5c", + "reference": "1960802068f81e44b2ae9793932181cf1cb91b5c", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/guzzle": "^6.0|^7.0", - "illuminate/http": "~5.7.0|~5.8.0|^6.0|^7.0", - "illuminate/support": "~5.7.0|~5.8.0|^6.0|^7.0", + "illuminate/http": "^6.0|^7.0|^8.0", + "illuminate/support": "^6.0|^7.0|^8.0", "league/oauth1-client": "^1.0", - "php": "^7.1.3" + "php": "^7.2|^8.0" }, "require-dev": { - "illuminate/contracts": "~5.7.0|~5.8.0|^6.0|^7.0", + "illuminate/contracts": "^6.0|^7.0", "mockery/mockery": "^1.0", - "orchestra/testbench": "^3.7|^3.8|^4.0|^5.0", - "phpunit/phpunit": "^7.0|^8.0" + "orchestra/testbench": "^4.0|^5.0|^6.0", + "phpunit/phpunit": "^8.0|^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev" + "dev-master": "5.x-dev" }, "laravel": { "providers": [ @@ -2989,7 +3175,7 @@ "issues": "https://github.com/laravel/socialite/issues", "source": "https://github.com/laravel/socialite" }, - "time": "2020-06-03T13:30:03+00:00" + "time": "2021-04-06T14:38:16+00:00" }, { "name": "laravel/tinker", @@ -3061,26 +3247,30 @@ }, { "name": "laravel/ui", - "version": "v2.5.0", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/laravel/ui.git", - "reference": "d01a705763c243b07be795e9d1bb47f89260f73d" + "reference": "07d725813350c695c779382cbd6dac0ab8665537" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d", - "reference": "d01a705763c243b07be795e9d1bb47f89260f73d", + "url": "https://api.github.com/repos/laravel/ui/zipball/07d725813350c695c779382cbd6dac0ab8665537", + "reference": "07d725813350c695c779382cbd6dac0ab8665537", "shasum": "" }, "require": { - "illuminate/console": "^7.0", - "illuminate/filesystem": "^7.0", - "illuminate/support": "^7.0", - "php": "^7.2.5|^8.0" + "illuminate/console": "^8.42", + "illuminate/filesystem": "^8.42", + "illuminate/support": "^8.42", + "illuminate/validation": "^8.42", + "php": "^7.3|^8.0" }, "type": "library", "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + }, "laravel": { "providers": [ "Laravel\\Ui\\UiServiceProvider" @@ -3109,10 +3299,9 @@ "ui" ], "support": { - "issues": "https://github.com/laravel/ui/issues", - "source": "https://github.com/laravel/ui/tree/v2.5.0" + "source": "https://github.com/laravel/ui/tree/v3.3.0" }, - "time": "2020-11-03T19:45:19+00:00" + "time": "2021-05-25T16:45:33+00:00" }, { "name": "laravelcollective/html", @@ -3188,42 +3377,51 @@ }, { "name": "league/commonmark", - "version": "1.6.5", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "44ffd8d3c4a9133e4bd0548622b09c55af39db5f" + "reference": "167142baf9a6b946f99ad9325b06028606f8238e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/44ffd8d3c4a9133e4bd0548622b09c55af39db5f", - "reference": "44ffd8d3c4a9133e4bd0548622b09c55af39db5f", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/167142baf9a6b946f99ad9325b06028606f8238e", + "reference": "167142baf9a6b946f99ad9325b06028606f8238e", "shasum": "" }, "require": { "ext-mbstring": "*", - "php": "^7.1 || ^8.0" - }, - "conflict": { - "scrutinizer/ocular": "1.7.*" + "league/config": "^1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/polyfill-php80": "^1.15" }, "require-dev": { - "cebe/markdown": "~1.0", - "commonmark/commonmark.js": "0.29.2", - "erusev/parsedown": "~1.0", + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.30.0", + "commonmark/commonmark.js": "0.30.0", + "composer/package-versions-deprecated": "^1.8", + "erusev/parsedown": "^1.0", "ext-json": "*", "github/gfm": "0.29.0", - "michelf/php-markdown": "~1.4", - "mikehaertl/php-shellcommand": "^1.4", - "phpstan/phpstan": "^0.12.90", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2", - "scrutinizer/ocular": "^1.5", - "symfony/finder": "^4.2" + "michelf/php-markdown": "^1.4", + "phpstan/phpstan": "^0.12.88", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" }, - "bin": [ - "bin/commonmark" - ], "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.1-dev" + } + }, "autoload": { "psr-4": { "League\\CommonMark\\": "src" @@ -3241,7 +3439,7 @@ "role": "Lead Developer" } ], - "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)", + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", "homepage": "https://commonmark.thephpleague.com", "keywords": [ "commonmark", @@ -3255,6 +3453,7 @@ ], "support": { "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", "issues": "https://github.com/thephpleague/commonmark/issues", "rss": "https://github.com/thephpleague/commonmark/releases.atom", "source": "https://github.com/thephpleague/commonmark" @@ -3285,80 +3484,162 @@ "type": "tidelift" } ], - "time": "2021-06-26T11:57:13+00:00" + "time": "2021-07-24T20:12:58+00:00" }, { - "name": "league/flysystem", - "version": "1.1.4", + "name": "league/config", + "version": "v1.1.0", "source": { "type": "git", - "url": "https://github.com/thephpleague/flysystem.git", - "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32" + "url": "https://github.com/thephpleague/config.git", + "reference": "20d42d88f12a76ff862e17af4f14a5a4bbfd0925" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32", - "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32", + "url": "https://api.github.com/repos/thephpleague/config/zipball/20d42d88f12a76ff862e17af4f14a5a4bbfd0925", + "reference": "20d42d88f12a76ff862e17af4f14a5a4bbfd0925", "shasum": "" }, "require": { - "ext-fileinfo": "*", - "league/mime-type-detection": "^1.3", - "php": "^7.2.5 || ^8.0" - }, - "conflict": { - "league/flysystem-sftp": "<1.0.6" + "dflydev/dot-access-data": "^3.0", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" }, "require-dev": { - "phpspec/prophecy": "^1.11.1", - "phpunit/phpunit": "^8.5.8" - }, - "suggest": { - "ext-ftp": "Allows you to use FTP server storage", - "ext-openssl": "Allows you to use FTPS server storage", - "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", - "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", - "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", - "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", - "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", - "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", - "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", - "league/flysystem-webdav": "Allows you to use WebDAV storage", - "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter", - "spatie/flysystem-dropbox": "Allows you to use Dropbox storage", - "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications" + "phpstan/phpstan": "^0.12.90", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-main": "1.2-dev" } }, "autoload": { "psr-4": { - "League\\Flysystem\\": "src/" + "League\\Config\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Frank de Jonge", - "email": "info@frenky.net" + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" } ], - "description": "Filesystem abstraction: Many filesystems, one API.", + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", "keywords": [ - "Cloud Files", - "WebDAV", - "abstraction", - "aws", - "cloud", - "copy.com", - "dropbox", - "file systems", + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2021-06-19T15:52:37+00:00" + }, + { + "name": "league/flysystem", + "version": "1.1.4", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32", + "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/mime-type-detection": "^1.3", + "php": "^7.2.5 || ^8.0" + }, + "conflict": { + "league/flysystem-sftp": "<1.0.6" + }, + "require-dev": { + "phpspec/prophecy": "^1.11.1", + "phpunit/phpunit": "^8.5.8" + }, + "suggest": { + "ext-ftp": "Allows you to use FTP server storage", + "ext-openssl": "Allows you to use FTPS server storage", + "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", + "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", + "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", + "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", + "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", + "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", + "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", + "league/flysystem-webdav": "Allows you to use WebDAV storage", + "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter", + "spatie/flysystem-dropbox": "Allows you to use Dropbox storage", + "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frenky.net" + } + ], + "description": "Filesystem abstraction: Many filesystems, one API.", + "keywords": [ + "Cloud Files", + "WebDAV", + "abstraction", + "aws", + "cloud", + "copy.com", + "dropbox", + "file systems", "files", "filesystem", "filesystems", @@ -3893,16 +4174,16 @@ }, { "name": "maatwebsite/excel", - "version": "3.1.31", + "version": "3.1.32", "source": { "type": "git", "url": "https://github.com/Maatwebsite/Laravel-Excel.git", - "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb" + "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/cbe6370af70f93bd017f77ef92d32bd492a47fcb", - "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb", + "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/9dc29b63a77fb7f2f514ef754af3a1b57e83cadf", + "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf", "shasum": "" }, "require": { @@ -3955,7 +4236,7 @@ ], "support": { "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues", - "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.31" + "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.32" }, "funding": [ { @@ -3967,7 +4248,7 @@ "type": "github" } ], - "time": "2021-06-02T17:31:29+00:00" + "time": "2021-07-08T10:11:21+00:00" }, { "name": "maennchen/zipstream-php", @@ -4372,16 +4653,16 @@ }, { "name": "monolog/monolog", - "version": "2.3.1", + "version": "2.3.2", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "9738e495f288eec0b187e310b7cdbbb285777dbe" + "reference": "71312564759a7db5b789296369c1a264efc43aad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/9738e495f288eec0b187e310b7cdbbb285777dbe", - "reference": "9738e495f288eec0b187e310b7cdbbb285777dbe", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/71312564759a7db5b789296369c1a264efc43aad", + "reference": "71312564759a7db5b789296369c1a264efc43aad", "shasum": "" }, "require": { @@ -4452,7 +4733,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.3.1" + "source": "https://github.com/Seldaek/monolog/tree/2.3.2" }, "funding": [ { @@ -4464,7 +4745,7 @@ "type": "tidelift" } ], - "time": "2021-07-14T11:56:39+00:00" + "time": "2021-07-23T07:42:52+00:00" }, { "name": "mtdowling/jmespath.php", @@ -4589,22 +4870,23 @@ }, { "name": "nesbot/carbon", - "version": "2.50.0", + "version": "2.51.1", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "f47f17d17602b2243414a44ad53d9f8b9ada5fdb" + "reference": "8619c299d1e0d4b344e1f98ca07a1ce2cfbf1922" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f47f17d17602b2243414a44ad53d9f8b9ada5fdb", - "reference": "f47f17d17602b2243414a44ad53d9f8b9ada5fdb", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8619c299d1e0d4b344e1f98ca07a1ce2cfbf1922", + "reference": "8619c299d1e0d4b344e1f98ca07a1ce2cfbf1922", "shasum": "" }, "require": { "ext-json": "*", "php": "^7.1.8 || ^8.0", "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16", "symfony/translation": "^3.4 || ^4.0 || ^5.0" }, "require-dev": { @@ -4623,8 +4905,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev", - "dev-3.x": "3.x-dev" + "dev-3.x": "3.x-dev", + "dev-master": "2.x-dev" }, "laravel": { "providers": [ @@ -4678,20 +4960,167 @@ "type": "tidelift" } ], - "time": "2021-06-28T22:38:45+00:00" + "time": "2021-07-28T13:16:28+00:00" + }, + { + "name": "nette/schema", + "version": "v1.2.1", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "f5ed39fc96358f922cedfd1e516f0dadf5d2be0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/f5ed39fc96358f922cedfd1e516f0dadf5d2be0d", + "reference": "f5ed39fc96358f922cedfd1e516f0dadf5d2be0d", + "shasum": "" + }, + "require": { + "nette/utils": "^3.1.4 || ^4.0", + "php": ">=7.1 <8.1" + }, + "require-dev": { + "nette/tester": "^2.3 || ^2.4", + "phpstan/phpstan-nette": "^0.12", + "tracy/tracy": "^2.7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.2.1" + }, + "time": "2021-03-04T17:51:11+00:00" + }, + { + "name": "nette/utils", + "version": "v3.2.2", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "967cfc4f9a1acd5f1058d76715a424c53343c20c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/967cfc4f9a1acd5f1058d76715a424c53343c20c", + "reference": "967cfc4f9a1acd5f1058d76715a424c53343c20c", + "shasum": "" + }, + "require": { + "php": ">=7.2 <8.1" + }, + "conflict": { + "nette/di": "<3.0.6" + }, + "require-dev": { + "nette/tester": "~2.0", + "phpstan/phpstan": "^0.12", + "tracy/tracy": "^2.3" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v3.2.2" + }, + "time": "2021-03-03T22:53:25+00:00" }, { "name": "nikic/php-parser", - "version": "v4.11.0", + "version": "v4.12.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "fe14cf3672a149364fb66dfe11bf6549af899f94" + "reference": "6608f01670c3cc5079e18c1dab1104e002579143" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/fe14cf3672a149364fb66dfe11bf6549af899f94", - "reference": "fe14cf3672a149364fb66dfe11bf6549af899f94", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143", + "reference": "6608f01670c3cc5079e18c1dab1104e002579143", "shasum": "" }, "require": { @@ -4732,22 +5161,22 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.11.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.12.0" }, - "time": "2021-07-03T13:36:55+00:00" + "time": "2021-07-21T10:44:31+00:00" }, { "name": "nyholm/psr7", - "version": "1.4.0", + "version": "1.4.1", "source": { "type": "git", "url": "https://github.com/Nyholm/psr7.git", - "reference": "23ae1f00fbc6a886cbe3062ca682391b9cc7c37b" + "reference": "2212385b47153ea71b1c1b1374f8cb5e4f7892ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Nyholm/psr7/zipball/23ae1f00fbc6a886cbe3062ca682391b9cc7c37b", - "reference": "23ae1f00fbc6a886cbe3062ca682391b9cc7c37b", + "url": "https://api.github.com/repos/Nyholm/psr7/zipball/2212385b47153ea71b1c1b1374f8cb5e4f7892ec", + "reference": "2212385b47153ea71b1c1b1374f8cb5e4f7892ec", "shasum": "" }, "require": { @@ -4761,7 +5190,7 @@ "psr/http-message-implementation": "1.0" }, "require-dev": { - "http-interop/http-factory-tests": "^0.8", + "http-interop/http-factory-tests": "^0.9", "php-http/psr7-integration-tests": "^1.0", "phpunit/phpunit": "^7.5 || 8.5 || 9.4", "symfony/error-handler": "^4.4" @@ -4799,7 +5228,7 @@ ], "support": { "issues": "https://github.com/Nyholm/psr7/issues", - "source": "https://github.com/Nyholm/psr7/tree/1.4.0" + "source": "https://github.com/Nyholm/psr7/tree/1.4.1" }, "funding": [ { @@ -4811,7 +5240,7 @@ "type": "github" } ], - "time": "2021-02-18T15:41:32+00:00" + "time": "2021-07-02T08:32:20+00:00" }, { "name": "opis/closure", @@ -4880,28 +5309,28 @@ }, { "name": "owen-it/laravel-auditing", - "version": "v11.0.0", + "version": "v12.0.0", "source": { "type": "git", "url": "https://github.com/owen-it/laravel-auditing.git", - "reference": "60fb60ae00a7fe38c29e224b3dc8ad94116ae00a" + "reference": "5659c736f17aa75805b60c0d0a23783f3bf5c2a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/owen-it/laravel-auditing/zipball/60fb60ae00a7fe38c29e224b3dc8ad94116ae00a", - "reference": "60fb60ae00a7fe38c29e224b3dc8ad94116ae00a", + "url": "https://api.github.com/repos/owen-it/laravel-auditing/zipball/5659c736f17aa75805b60c0d0a23783f3bf5c2a1", + "reference": "5659c736f17aa75805b60c0d0a23783f3bf5c2a1", "shasum": "" }, "require": { - "illuminate/console": "^5.8|^6.0|^7.0|^8.0", - "illuminate/database": "^5.8|^6.0|^7.0|^8.0", - "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0", - "php": "^7.3" + "illuminate/console": "^6.0|^7.0|^8.0", + "illuminate/database": "^6.0|^7.0|^8.0", + "illuminate/filesystem": "^6.0|^7.0|^8.0", + "php": "^7.3|^8.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^3.8", - "phpunit/phpunit": "^8.0", + "orchestra/testbench": "^4.0", + "phpunit/phpunit": "^9.0", "ramsey/uuid": "^3.0" }, "suggest": { @@ -4963,7 +5392,7 @@ "issues": "https://github.com/owen-it/laravel-auditing/issues", "source": "https://github.com/owen-it/laravel-auditing" }, - "time": "2020-09-13T23:51:26+00:00" + "time": "2020-12-15T19:19:43+00:00" }, { "name": "paragonie/certainty", @@ -5236,16 +5665,16 @@ }, { "name": "php-http/client-common", - "version": "2.3.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/php-http/client-common.git", - "reference": "e37e46c610c87519753135fb893111798c69076a" + "reference": "29e0c60d982f04017069483e832b92074d0a90b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/client-common/zipball/e37e46c610c87519753135fb893111798c69076a", - "reference": "e37e46c610c87519753135fb893111798c69076a", + "url": "https://api.github.com/repos/php-http/client-common/zipball/29e0c60d982f04017069483e832b92074d0a90b2", + "reference": "29e0c60d982f04017069483e832b92074d0a90b2", "shasum": "" }, "require": { @@ -5305,9 +5734,9 @@ ], "support": { "issues": "https://github.com/php-http/client-common/issues", - "source": "https://github.com/php-http/client-common/tree/2.3.0" + "source": "https://github.com/php-http/client-common/tree/2.4.0" }, - "time": "2020-07-21T10:04:13+00:00" + "time": "2021-07-05T08:19:25+00:00" }, { "name": "php-http/discovery", @@ -6099,26 +6528,28 @@ }, { "name": "propaganistas/laravel-phone", - "version": "4.2.7", + "version": "4.3.1", "source": { "type": "git", "url": "https://github.com/Propaganistas/Laravel-Phone.git", - "reference": "f2765e308977511c7ee42a48d635dca7026fa427" + "reference": "d85ce8af34d39afa39f96176c5ae645f0784e83c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Propaganistas/Laravel-Phone/zipball/f2765e308977511c7ee42a48d635dca7026fa427", - "reference": "f2765e308977511c7ee42a48d635dca7026fa427", + "url": "https://api.github.com/repos/Propaganistas/Laravel-Phone/zipball/d85ce8af34d39afa39f96176c5ae645f0784e83c", + "reference": "d85ce8af34d39afa39f96176c5ae645f0784e83c", "shasum": "" }, "require": { "giggsey/libphonenumber-for-php": "^7.0|^8.0", - "illuminate/support": "^6.0|^7.0|^8.0", - "illuminate/validation": "^6.0|^7.0|^8.0", + "illuminate/contracts": "^8.9", + "illuminate/support": "^8.0", + "illuminate/validation": "^8.0", "league/iso3166": "^2.0|^3.0", - "php": "^7.1|^8.0" + "php": "^7.3|^8.0" }, "require-dev": { + "nunomaduro/larastan": "^0.6.11", "orchestra/testbench": "*", "phpunit/phpunit": "*" }, @@ -6158,9 +6589,9 @@ ], "support": { "issues": "https://github.com/Propaganistas/Laravel-Phone/issues", - "source": "https://github.com/Propaganistas/Laravel-Phone/tree/4.2.7" + "source": "https://github.com/Propaganistas/Laravel-Phone/tree/4.3.1" }, - "time": "2020-12-06T10:57:11+00:00" + "time": "2021-05-10T07:25:05+00:00" }, { "name": "psr/cache", @@ -6691,16 +7122,16 @@ }, { "name": "ramsey/collection", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/ramsey/collection.git", - "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1" + "reference": "ab2237657ad99667a5143e32ba2683c8029563d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1", - "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1", + "url": "https://api.github.com/repos/ramsey/collection/zipball/ab2237657ad99667a5143e32ba2683c8029563d4", + "reference": "ab2237657ad99667a5143e32ba2683c8029563d4", "shasum": "" }, "require": { @@ -6752,7 +7183,7 @@ ], "support": { "issues": "https://github.com/ramsey/collection/issues", - "source": "https://github.com/ramsey/collection/tree/1.1.3" + "source": "https://github.com/ramsey/collection/tree/1.1.4" }, "funding": [ { @@ -6764,7 +7195,7 @@ "type": "tidelift" } ], - "time": "2021-01-21T17:40:04+00:00" + "time": "2021-07-30T00:58:27+00:00" }, { "name": "ramsey/uuid", @@ -6916,23 +7347,23 @@ }, { "name": "sentry/sentry", - "version": "3.3.1", + "version": "3.3.2", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-php.git", - "reference": "fafef24c1bc242e614a1afd9533d5dcb7e9c42fe" + "reference": "3d733139a3ba2d1d3a8011580e3acf0ba1d0dc9b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/fafef24c1bc242e614a1afd9533d5dcb7e9c42fe", - "reference": "fafef24c1bc242e614a1afd9533d5dcb7e9c42fe", + "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/3d733139a3ba2d1d3a8011580e3acf0ba1d0dc9b", + "reference": "3d733139a3ba2d1d3a8011580e3acf0ba1d0dc9b", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", "guzzlehttp/promises": "^1.4", - "guzzlehttp/psr7": "^1.7", + "guzzlehttp/psr7": "^1.7|^2.0", "jean85/pretty-package-versions": "^1.5|^2.0.1", "php": "^7.2|^8.0", "php-http/async-client-implementation": "^1.0", @@ -6942,7 +7373,7 @@ "php-http/message": "^1.5", "psr/http-factory": "^1.0", "psr/http-message-implementation": "^1.0", - "psr/log": "^1.0", + "psr/log": "^1.0|^2.0|^3.0", "symfony/options-resolver": "^3.4.43|^4.4.11|^5.0.11", "symfony/polyfill-php80": "^1.17", "symfony/polyfill-uuid": "^1.13.1" @@ -7004,7 +7435,7 @@ ], "support": { "issues": "https://github.com/getsentry/sentry-php/issues", - "source": "https://github.com/getsentry/sentry-php/tree/3.3.1" + "source": "https://github.com/getsentry/sentry-php/tree/3.3.2" }, "funding": [ { @@ -7016,7 +7447,7 @@ "type": "custom" } ], - "time": "2021-06-19T11:37:25+00:00" + "time": "2021-07-19T08:09:34+00:00" }, { "name": "sentry/sentry-laravel", @@ -7433,22 +7864,22 @@ }, { "name": "spatie/laravel-sluggable", - "version": "2.6.2", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-sluggable.git", - "reference": "297097239a675747d74fbd1ecb3ae0d4724a17de" + "reference": "03dd6b573efb66f2eb96892b3646a6a8b7722adf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-sluggable/zipball/297097239a675747d74fbd1ecb3ae0d4724a17de", - "reference": "297097239a675747d74fbd1ecb3ae0d4724a17de", + "url": "https://api.github.com/repos/spatie/laravel-sluggable/zipball/03dd6b573efb66f2eb96892b3646a6a8b7722adf", + "reference": "03dd6b573efb66f2eb96892b3646a6a8b7722adf", "shasum": "" }, "require": { "illuminate/database": "^7.30|^8.0", "illuminate/support": "^7.30|^8.0", - "php": "^7.4|^8.0" + "php": "^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.18", @@ -7482,7 +7913,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-sluggable/issues", - "source": "https://github.com/spatie/laravel-sluggable/tree/2.6.2" + "source": "https://github.com/spatie/laravel-sluggable/tree/3.1.0" }, "funding": [ { @@ -7490,7 +7921,7 @@ "type": "github" } ], - "time": "2021-03-20T18:07:00+00:00" + "time": "2021-06-04T13:53:45+00:00" }, { "name": "spatie/once", @@ -7631,25 +8062,25 @@ }, { "name": "symfony/cache", - "version": "v5.3.3", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "82962a497f090e95e3b357c21bf6f54991c9b1a5" + "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/82962a497f090e95e3b357c21bf6f54991c9b1a5", - "reference": "82962a497f090e95e3b357c21bf6f54991c9b1a5", + "url": "https://api.github.com/repos/symfony/cache/zipball/944db6004fc374fbe032d18e07cce51cc4e1e661", + "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661", "shasum": "" }, "require": { "php": ">=7.2.5", "psr/cache": "^1.0|^2.0", - "psr/log": "^1.1", + "psr/log": "^1.1|^2|^3", "symfony/cache-contracts": "^1.1.7|^2", "symfony/deprecation-contracts": "^2.1", - "symfony/polyfill-php80": "^1.15", + "symfony/polyfill-php80": "^1.16", "symfony/service-contracts": "^1.1|^2", "symfony/var-exporter": "^4.4|^5.0" }, @@ -7707,7 +8138,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v5.3.3" + "source": "https://github.com/symfony/cache/tree/v5.3.4" }, "funding": [ { @@ -7723,7 +8154,7 @@ "type": "tidelift" } ], - "time": "2021-06-24T08:13:00+00:00" + "time": "2021-07-23T15:55:36+00:00" }, { "name": "symfony/cache-contracts", @@ -7806,16 +8237,16 @@ }, { "name": "symfony/console", - "version": "v5.3.2", + "version": "v5.3.6", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1" + "reference": "51b71afd6d2dc8f5063199357b9880cea8d8bfe2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/649730483885ff2ca99ca0560ef0e5f6b03f2ac1", - "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1", + "url": "https://api.github.com/repos/symfony/console/zipball/51b71afd6d2dc8f5063199357b9880cea8d8bfe2", + "reference": "51b71afd6d2dc8f5063199357b9880cea8d8bfe2", "shasum": "" }, "require": { @@ -7823,11 +8254,12 @@ "symfony/deprecation-contracts": "^2.1", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php73": "^1.8", - "symfony/polyfill-php80": "^1.15", + "symfony/polyfill-php80": "^1.16", "symfony/service-contracts": "^1.1|^2", "symfony/string": "^5.1" }, "conflict": { + "psr/log": ">=3", "symfony/dependency-injection": "<4.4", "symfony/dotenv": "<5.1", "symfony/event-dispatcher": "<4.4", @@ -7835,10 +8267,10 @@ "symfony/process": "<4.4" }, "provide": { - "psr/log-implementation": "1.0" + "psr/log-implementation": "1.0|2.0" }, "require-dev": { - "psr/log": "~1.0", + "psr/log": "^1|^2", "symfony/config": "^4.4|^5.0", "symfony/dependency-injection": "^4.4|^5.0", "symfony/event-dispatcher": "^4.4|^5.0", @@ -7884,7 +8316,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.3.2" + "source": "https://github.com/symfony/console/tree/v5.3.6" }, "funding": [ { @@ -7900,24 +8332,25 @@ "type": "tidelift" } ], - "time": "2021-06-12T09:42:48+00:00" + "time": "2021-07-27T19:10:22+00:00" }, { "name": "symfony/css-selector", - "version": "v5.3.0", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814" + "reference": "7fb120adc7f600a59027775b224c13a33530dd90" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/fcd0b29a7a0b1bb5bfbedc6231583d77fea04814", - "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90", + "reference": "7fb120adc7f600a59027775b224c13a33530dd90", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -7949,7 +8382,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v5.3.0" + "source": "https://github.com/symfony/css-selector/tree/v5.3.4" }, "funding": [ { @@ -7965,7 +8398,7 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:40:38+00:00" + "time": "2021-07-21T12:38:00+00:00" }, { "name": "symfony/deprecation-contracts", @@ -8036,22 +8469,21 @@ }, { "name": "symfony/error-handler", - "version": "v5.3.3", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "43323e79c80719e8a4674e33484bca98270d223f" + "reference": "281f6c4660bcf5844bb0346fe3a4664722fe4c73" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/43323e79c80719e8a4674e33484bca98270d223f", - "reference": "43323e79c80719e8a4674e33484bca98270d223f", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/281f6c4660bcf5844bb0346fe3a4664722fe4c73", + "reference": "281f6c4660bcf5844bb0346fe3a4664722fe4c73", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/log": "^1.0", - "symfony/polyfill-php80": "^1.15", + "psr/log": "^1|^2|^3", "symfony/var-dumper": "^4.4|^5.0" }, "require-dev": { @@ -8085,7 +8517,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.3.3" + "source": "https://github.com/symfony/error-handler/tree/v5.3.4" }, "funding": [ { @@ -8101,27 +8533,27 @@ "type": "tidelift" } ], - "time": "2021-06-24T08:13:00+00:00" + "time": "2021-07-23T15:55:36+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.3.0", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce" + "reference": "f2fd2208157553874560f3645d4594303058c4bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/67a5f354afa8e2f231081b3fa11a5912f933c3ce", - "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f2fd2208157553874560f3645d4594303058c4bd", + "reference": "f2fd2208157553874560f3645d4594303058c4bd", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/deprecation-contracts": "^2.1", "symfony/event-dispatcher-contracts": "^2", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { "symfony/dependency-injection": "<4.4" @@ -8131,7 +8563,7 @@ "symfony/event-dispatcher-implementation": "2.0" }, "require-dev": { - "psr/log": "~1.0", + "psr/log": "^1|^2|^3", "symfony/config": "^4.4|^5.0", "symfony/dependency-injection": "^4.4|^5.0", "symfony/error-handler": "^4.4|^5.0", @@ -8170,7 +8602,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.3.0" + "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.4" }, "funding": [ { @@ -8186,7 +8618,7 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2021-07-23T15:55:36+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -8269,20 +8701,21 @@ }, { "name": "symfony/finder", - "version": "v5.3.0", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6" + "reference": "17f50e06018baec41551a71a15731287dbaab186" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", - "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", + "url": "https://api.github.com/repos/symfony/finder/zipball/17f50e06018baec41551a71a15731287dbaab186", + "reference": "17f50e06018baec41551a71a15731287dbaab186", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -8310,7 +8743,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.3.0" + "source": "https://github.com/symfony/finder/tree/v5.3.4" }, "funding": [ { @@ -8326,29 +8759,29 @@ "type": "tidelift" } ], - "time": "2021-05-26T12:52:38+00:00" + "time": "2021-07-23T15:54:19+00:00" }, { "name": "symfony/http-client", - "version": "v5.3.2", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "d2464f48482223c7c6826cd8c6ed7929d1ce6093" + "reference": "67c177d4df8601d9a71f9d615c52171c98d22d74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/d2464f48482223c7c6826cd8c6ed7929d1ce6093", - "reference": "d2464f48482223c7c6826cd8c6ed7929d1ce6093", + "url": "https://api.github.com/repos/symfony/http-client/zipball/67c177d4df8601d9a71f9d615c52171c98d22d74", + "reference": "67c177d4df8601d9a71f9d615c52171c98d22d74", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/log": "^1.0", + "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.1", "symfony/http-client-contracts": "^2.4", "symfony/polyfill-php73": "^1.11", - "symfony/polyfill-php80": "^1.15", + "symfony/polyfill-php80": "^1.16", "symfony/service-contracts": "^1.0|^2" }, "provide": { @@ -8397,7 +8830,7 @@ "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-client/tree/v5.3.2" + "source": "https://github.com/symfony/http-client/tree/v5.3.4" }, "funding": [ { @@ -8413,7 +8846,7 @@ "type": "tidelift" } ], - "time": "2021-06-12T10:15:17+00:00" + "time": "2021-07-23T15:55:36+00:00" }, { "name": "symfony/http-client-contracts", @@ -8495,23 +8928,23 @@ }, { "name": "symfony/http-foundation", - "version": "v5.3.3", + "version": "v5.3.6", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf" + "reference": "a8388f7b7054a7401997008ce9cd8c6b0ab7ac75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0e45ab1574caa0460d9190871a8ce47539e40ccf", - "reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a8388f7b7054a7401997008ce9cd8c6b0ab7ac75", + "reference": "a8388f7b7054a7401997008ce9cd8c6b0ab7ac75", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/deprecation-contracts": "^2.1", "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "require-dev": { "predis/predis": "~1.0", @@ -8548,7 +8981,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.3.3" + "source": "https://github.com/symfony/http-foundation/tree/v5.3.6" }, "funding": [ { @@ -8564,25 +8997,25 @@ "type": "tidelift" } ], - "time": "2021-06-27T09:19:40+00:00" + "time": "2021-07-27T17:08:17+00:00" }, { "name": "symfony/http-kernel", - "version": "v5.3.3", + "version": "v5.3.6", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8" + "reference": "60030f209018356b3b553b9dbd84ad2071c1b7e0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8", - "reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/60030f209018356b3b553b9dbd84ad2071c1b7e0", + "reference": "60030f209018356b3b553b9dbd84ad2071c1b7e0", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/log": "~1.0", + "psr/log": "^1|^2", "symfony/deprecation-contracts": "^2.1", "symfony/error-handler": "^4.4|^5.0", "symfony/event-dispatcher": "^5.0", @@ -8590,7 +9023,7 @@ "symfony/http-foundation": "^5.3", "symfony/polyfill-ctype": "^1.8", "symfony/polyfill-php73": "^1.9", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { "symfony/browser-kit": "<4.4", @@ -8609,7 +9042,7 @@ "twig/twig": "<2.13" }, "provide": { - "psr/log-implementation": "1.0" + "psr/log-implementation": "1.0|2.0" }, "require-dev": { "psr/cache": "^1.0|^2.0|^3.0", @@ -8660,7 +9093,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.3.3" + "source": "https://github.com/symfony/http-kernel/tree/v5.3.6" }, "funding": [ { @@ -8676,20 +9109,20 @@ "type": "tidelift" } ], - "time": "2021-06-30T08:27:49+00:00" + "time": "2021-07-29T07:06:27+00:00" }, { "name": "symfony/mime", - "version": "v5.3.2", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a" + "reference": "633e4e8afe9e529e5599d71238849a4218dd497b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/47dd7912152b82d0d4c8d9040dbc93d6232d472a", - "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a", + "url": "https://api.github.com/repos/symfony/mime/zipball/633e4e8afe9e529e5599d71238849a4218dd497b", + "reference": "633e4e8afe9e529e5599d71238849a4218dd497b", "shasum": "" }, "require": { @@ -8697,7 +9130,7 @@ "symfony/deprecation-contracts": "^2.1", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { "egulias/email-validator": "~3.0.0", @@ -8743,7 +9176,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v5.3.2" + "source": "https://github.com/symfony/mime/tree/v5.3.4" }, "funding": [ { @@ -8759,27 +9192,27 @@ "type": "tidelift" } ], - "time": "2021-06-09T10:58:01+00:00" + "time": "2021-07-21T12:40:44+00:00" }, { "name": "symfony/options-resolver", - "version": "v5.3.0", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5" + "reference": "a603e5701bd6e305cfc777a8b50bf081ef73105e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/162e886ca035869866d233a2bfef70cc28f9bbe5", - "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a603e5701bd6e305cfc777a8b50bf081ef73105e", + "reference": "a603e5701bd6e305cfc777a8b50bf081ef73105e", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/deprecation-contracts": "^2.1", "symfony/polyfill-php73": "~1.0", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -8812,7 +9245,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v5.3.0" + "source": "https://github.com/symfony/options-resolver/tree/v5.3.4" }, "funding": [ { @@ -8828,7 +9261,7 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2021-07-23T15:55:36+00:00" }, { "name": "symfony/polyfill-ctype", @@ -8991,16 +9424,16 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.23.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab" + "reference": "16880ba9c5ebe3642d1995ab866db29270b36535" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab", - "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535", + "reference": "16880ba9c5ebe3642d1995ab866db29270b36535", "shasum": "" }, "require": { @@ -9052,7 +9485,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1" }, "funding": [ { @@ -9068,7 +9501,7 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:17:38+00:00" + "time": "2021-05-27T12:26:48+00:00" }, { "name": "symfony/polyfill-intl-idn", @@ -9243,16 +9676,16 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.23.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1" + "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1", - "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6", + "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6", "shasum": "" }, "require": { @@ -9303,7 +9736,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1" }, "funding": [ { @@ -9319,7 +9752,7 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:27:20+00:00" + "time": "2021-05-27T12:26:48+00:00" }, { "name": "symfony/polyfill-php72", @@ -9478,16 +9911,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.23.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0" + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0", - "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be", + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be", "shasum": "" }, "require": { @@ -9541,7 +9974,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1" }, "funding": [ { @@ -9557,7 +9990,7 @@ "type": "tidelift" } ], - "time": "2021-02-19T12:13:01+00:00" + "time": "2021-07-28T13:41:28+00:00" }, { "name": "symfony/polyfill-uuid", @@ -9640,21 +10073,21 @@ }, { "name": "symfony/process", - "version": "v5.3.2", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "714b47f9196de61a196d86c4bad5f09201b307df" + "reference": "d16634ee55b895bd85ec714dadc58e4428ecf030" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/714b47f9196de61a196d86c4bad5f09201b307df", - "reference": "714b47f9196de61a196d86c4bad5f09201b307df", + "url": "https://api.github.com/repos/symfony/process/zipball/d16634ee55b895bd85ec714dadc58e4428ecf030", + "reference": "d16634ee55b895bd85ec714dadc58e4428ecf030", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -9682,7 +10115,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.3.2" + "source": "https://github.com/symfony/process/tree/v5.3.4" }, "funding": [ { @@ -9698,20 +10131,20 @@ "type": "tidelift" } ], - "time": "2021-06-12T10:15:01+00:00" + "time": "2021-07-23T15:54:19+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v2.1.0", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d" + "reference": "c9012994c4b4fb23e7c57dd86b763a417a04feba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/81db2d4ae86e9f0049828d9343a72b9523884e5d", - "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9012994c4b4fb23e7c57dd86b763a417a04feba", + "reference": "c9012994c4b4fb23e7c57dd86b763a417a04feba", "shasum": "" }, "require": { @@ -9721,7 +10154,7 @@ }, "require-dev": { "nyholm/psr7": "^1.1", - "psr/log": "^1.1", + "psr/log": "^1.1 || ^2 || ^3", "symfony/browser-kit": "^4.4 || ^5.0", "symfony/config": "^4.4 || ^5.0", "symfony/event-dispatcher": "^4.4 || ^5.0", @@ -9770,7 +10203,7 @@ ], "support": { "issues": "https://github.com/symfony/psr-http-message-bridge/issues", - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.0" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.1" }, "funding": [ { @@ -9786,26 +10219,26 @@ "type": "tidelift" } ], - "time": "2021-02-17T10:35:25+00:00" + "time": "2021-07-27T17:25:39+00:00" }, { "name": "symfony/routing", - "version": "v5.3.0", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "368e81376a8e049c37cb80ae87dbfbf411279199" + "reference": "0a35d2f57d73c46ab6d042ced783b81d09a624c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/368e81376a8e049c37cb80ae87dbfbf411279199", - "reference": "368e81376a8e049c37cb80ae87dbfbf411279199", + "url": "https://api.github.com/repos/symfony/routing/zipball/0a35d2f57d73c46ab6d042ced783b81d09a624c4", + "reference": "0a35d2f57d73c46ab6d042ced783b81d09a624c4", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/deprecation-contracts": "^2.1", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { "doctrine/annotations": "<1.12", @@ -9815,7 +10248,7 @@ }, "require-dev": { "doctrine/annotations": "^1.12", - "psr/log": "~1.0", + "psr/log": "^1|^2|^3", "symfony/config": "^5.3", "symfony/dependency-injection": "^4.4|^5.0", "symfony/expression-language": "^4.4|^5.0", @@ -9860,7 +10293,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v5.3.0" + "source": "https://github.com/symfony/routing/tree/v5.3.4" }, "funding": [ { @@ -9876,7 +10309,7 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2021-07-23T15:55:36+00:00" }, { "name": "symfony/service-contracts", @@ -10042,23 +10475,23 @@ }, { "name": "symfony/translation", - "version": "v5.3.3", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c" + "reference": "d89ad7292932c2699cbe4af98d72c5c6bbc504c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/380b8c9e944d0e364b25f28e8e555241eb49c01c", - "reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c", + "url": "https://api.github.com/repos/symfony/translation/zipball/d89ad7292932c2699cbe4af98d72c5c6bbc504c1", + "reference": "d89ad7292932c2699cbe4af98d72c5c6bbc504c1", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/deprecation-contracts": "^2.1", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.15", + "symfony/polyfill-php80": "^1.16", "symfony/translation-contracts": "^2.3" }, "conflict": { @@ -10072,7 +10505,7 @@ "symfony/translation-implementation": "2.3" }, "require-dev": { - "psr/log": "~1.0", + "psr/log": "^1|^2|^3", "symfony/config": "^4.4|^5.0", "symfony/console": "^4.4|^5.0", "symfony/dependency-injection": "^5.0", @@ -10117,7 +10550,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v5.3.3" + "source": "https://github.com/symfony/translation/tree/v5.3.4" }, "funding": [ { @@ -10133,7 +10566,7 @@ "type": "tidelift" } ], - "time": "2021-06-27T12:22:47+00:00" + "time": "2021-07-25T09:39:16+00:00" }, { "name": "symfony/translation-contracts", @@ -10215,22 +10648,22 @@ }, { "name": "symfony/var-dumper", - "version": "v5.3.3", + "version": "v5.3.6", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "46aa709affb9ad3355bd7a810f9662d71025c384" + "reference": "3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/46aa709affb9ad3355bd7a810f9662d71025c384", - "reference": "46aa709affb9ad3355bd7a810f9662d71025c384", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0", + "reference": "3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { "phpunit/phpunit": "<5.4.3", @@ -10283,7 +10716,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.3.3" + "source": "https://github.com/symfony/var-dumper/tree/v5.3.6" }, "funding": [ { @@ -10299,25 +10732,25 @@ "type": "tidelift" } ], - "time": "2021-06-24T08:13:00+00:00" + "time": "2021-07-27T01:56:02+00:00" }, { "name": "symfony/var-exporter", - "version": "v5.3.3", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "903c2c0babd6267de5bcb2995e8fc1efb5f01f1f" + "reference": "b7898a65fc91e7c41de7a88c7db9aee9c0d432f0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/903c2c0babd6267de5bcb2995e8fc1efb5f01f1f", - "reference": "903c2c0babd6267de5bcb2995e8fc1efb5f01f1f", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b7898a65fc91e7c41de7a88c7db9aee9c0d432f0", + "reference": "b7898a65fc91e7c41de7a88c7db9aee9c0d432f0", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "require-dev": { "symfony/var-dumper": "^4.4.9|^5.0.9" @@ -10356,7 +10789,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v5.3.3" + "source": "https://github.com/symfony/var-exporter/tree/v5.3.4" }, "funding": [ { @@ -10372,36 +10805,35 @@ "type": "tidelift" } ], - "time": "2021-06-27T09:16:08+00:00" + "time": "2021-07-21T12:38:00+00:00" }, { "name": "teamtnt/laravel-scout-tntsearch-driver", - "version": "v9.0.0", + "version": "v11.5.0", "source": { "type": "git", "url": "https://github.com/teamtnt/laravel-scout-tntsearch-driver.git", - "reference": "15497138d2cf454b2f7f92716a89e366c864e0f5" + "reference": "ea962275ee5b977af81dccc138a0fa87d062492b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/teamtnt/laravel-scout-tntsearch-driver/zipball/15497138d2cf454b2f7f92716a89e366c864e0f5", - "reference": "15497138d2cf454b2f7f92716a89e366c864e0f5", + "url": "https://api.github.com/repos/teamtnt/laravel-scout-tntsearch-driver/zipball/ea962275ee5b977af81dccc138a0fa87d062492b", + "reference": "ea962275ee5b977af81dccc138a0fa87d062492b", "shasum": "" }, "require": { - "illuminate/bus": "~5.4|^6.0|^7.0", - "illuminate/contracts": "~5.4|^6.0|^7.0", - "illuminate/database": "~5.4|^6.0|^7.0", - "illuminate/pagination": "~5.4|^6.0|^7.0", - "illuminate/queue": "~5.4|^6.0|^7.0", - "illuminate/support": "~5.4|^6.0|^7.0", - "laravel/scout": "7.*|^8.0", - "php": ">=7.1", - "teamtnt/tntsearch": "2.*" + "illuminate/bus": "~5.4|^6.0|^7.0|^8.0", + "illuminate/contracts": "~5.4|^6.0|^7.0|^8.0", + "illuminate/pagination": "~5.4|^6.0|^7.0|^8.0", + "illuminate/queue": "~5.4|^6.0|^7.0|^8.0", + "illuminate/support": "~5.4|^6.0|^7.0|^8.0", + "laravel/scout": "7.*|^8.0|^8.3|^9.0", + "php": ">=7.1|^8", + "teamtnt/tntsearch": "2.7.0" }, "require-dev": { - "mockery/mockery": "~0.9", - "phpunit/phpunit": "~5.0" + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" }, "suggest": { "teamtnt/tntsearch": "Required to use the TNTSearch engine." @@ -10441,22 +10873,22 @@ ], "support": { "issues": "https://github.com/teamtnt/laravel-scout-tntsearch-driver/issues", - "source": "https://github.com/teamtnt/laravel-scout-tntsearch-driver/tree/master" + "source": "https://github.com/teamtnt/laravel-scout-tntsearch-driver/tree/v11.5.0" }, - "time": "2020-07-01T16:51:16+00:00" + "time": "2021-06-04T12:00:35+00:00" }, { "name": "teamtnt/tntsearch", - "version": "v2.8.0", + "version": "v2.7.0", "source": { "type": "git", "url": "https://github.com/teamtnt/tntsearch.git", - "reference": "da6bda458ca96e784585d7940519be8483c56320" + "reference": "c7d0f67070ea22e835bb1416b85dee0f74780fdc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/teamtnt/tntsearch/zipball/da6bda458ca96e784585d7940519be8483c56320", - "reference": "da6bda458ca96e784585d7940519be8483c56320", + "url": "https://api.github.com/repos/teamtnt/tntsearch/zipball/c7d0f67070ea22e835bb1416b85dee0f74780fdc", + "reference": "c7d0f67070ea22e835bb1416b85dee0f74780fdc", "shasum": "" }, "require": { @@ -10505,7 +10937,7 @@ ], "support": { "issues": "https://github.com/teamtnt/tntsearch/issues", - "source": "https://github.com/teamtnt/tntsearch/tree/v2.8.0" + "source": "https://github.com/teamtnt/tntsearch/tree/v2.7.0" }, "funding": [ { @@ -10521,7 +10953,7 @@ "type": "patreon" } ], - "time": "2021-04-17T11:07:52+00:00" + "time": "2021-03-11T15:26:17+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -10578,37 +11010,39 @@ }, { "name": "vlucas/phpdotenv", - "version": "v4.2.0", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "da64796370fc4eb03cc277088f6fede9fde88482" + "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482", - "reference": "da64796370fc4eb03cc277088f6fede9fde88482", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b3eac5c7ac896e52deab4a99068e3f4ab12d9e56", + "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56", "shasum": "" }, "require": { - "php": "^5.5.9 || ^7.0 || ^8.0", - "phpoption/phpoption": "^1.7.3", - "symfony/polyfill-ctype": "^1.17" + "ext-pcre": "*", + "graham-campbell/result-type": "^1.0.1", + "php": "^7.1.3 || ^8.0", + "phpoption/phpoption": "^1.7.4", + "symfony/polyfill-ctype": "^1.17", + "symfony/polyfill-mbstring": "^1.17", + "symfony/polyfill-php80": "^1.17" }, "require-dev": { "bamarni/composer-bin-plugin": "^1.4.1", "ext-filter": "*", - "ext-pcre": "*", - "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20" + "phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5.1" }, "suggest": { - "ext-filter": "Required to use the boolean validator.", - "ext-pcre": "Required to use most of the library." + "ext-filter": "Required to use the boolean validator." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.1-dev" + "dev-master": "5.3-dev" } }, "autoload": { @@ -10640,7 +11074,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.3.0" }, "funding": [ { @@ -10652,7 +11086,7 @@ "type": "tidelift" } ], - "time": "2021-01-20T15:11:48+00:00" + "time": "2021-01-20T15:23:13+00:00" }, { "name": "voku/portable-ascii", @@ -10729,31 +11163,89 @@ "time": "2020-11-12T00:07:28+00:00" }, { - "name": "yajra/laravel-datatables", - "version": "v1.5.0", + "name": "webmozart/assert", + "version": "1.10.0", "source": { "type": "git", - "url": "https://github.com/yajra/datatables.git", - "reference": "50de5e20ef01da1a353e0a81c0ad5f9da6a985ec" + "url": "https://github.com/webmozarts/assert.git", + "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/yajra/datatables/zipball/50de5e20ef01da1a353e0a81c0ad5f9da6a985ec", - "reference": "50de5e20ef01da1a353e0a81c0ad5f9da6a985ec", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25", + "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25", "shasum": "" }, "require": { - "php": ">=7.0", - "yajra/laravel-datatables-buttons": "4.*", - "yajra/laravel-datatables-editor": "1.*", - "yajra/laravel-datatables-fractal": "1.*", - "yajra/laravel-datatables-html": "4.*", - "yajra/laravel-datatables-oracle": "8.*|9.*" + "php": "^7.2 || ^8.0", + "symfony/polyfill-ctype": "^1.8" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.10.0" + }, + "time": "2021-03-09T10:59:23+00:00" + }, + { + "name": "yajra/laravel-datatables", + "version": "v1.5.0", + "source": { + "type": "git", + "url": "https://github.com/yajra/datatables.git", + "reference": "50de5e20ef01da1a353e0a81c0ad5f9da6a985ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/yajra/datatables/zipball/50de5e20ef01da1a353e0a81c0ad5f9da6a985ec", + "reference": "50de5e20ef01da1a353e0a81c0ad5f9da6a985ec", + "shasum": "" + }, + "require": { + "php": ">=7.0", + "yajra/laravel-datatables-buttons": "4.*", + "yajra/laravel-datatables-editor": "1.*", + "yajra/laravel-datatables-fractal": "1.*", + "yajra/laravel-datatables-html": "4.*", + "yajra/laravel-datatables-oracle": "8.*|9.*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" } }, "notification-url": "https://packagist.org/downloads/", @@ -10780,16 +11272,16 @@ }, { "name": "yajra/laravel-datatables-buttons", - "version": "v4.13.0", + "version": "v4.13.1", "source": { "type": "git", "url": "https://github.com/yajra/laravel-datatables-buttons.git", - "reference": "3ac8d2bbfbb930852e75bdd3eb601ab629719247" + "reference": "3e48eca61ea5f23fd38517aa1ca5ab0bc2b2a32a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/yajra/laravel-datatables-buttons/zipball/3ac8d2bbfbb930852e75bdd3eb601ab629719247", - "reference": "3ac8d2bbfbb930852e75bdd3eb601ab629719247", + "url": "https://api.github.com/repos/yajra/laravel-datatables-buttons/zipball/3e48eca61ea5f23fd38517aa1ca5ab0bc2b2a32a", + "reference": "3e48eca61ea5f23fd38517aa1ca5ab0bc2b2a32a", "shasum": "" }, "require": { @@ -10842,7 +11334,7 @@ ], "support": { "issues": "https://github.com/yajra/laravel-datatables-buttons/issues", - "source": "https://github.com/yajra/laravel-datatables-buttons/tree/v4.13.0" + "source": "https://github.com/yajra/laravel-datatables-buttons/tree/v4.13.1" }, "funding": [ { @@ -10854,7 +11346,7 @@ "type": "patreon" } ], - "time": "2021-04-21T05:35:51+00:00" + "time": "2021-07-01T02:53:11+00:00" }, { "name": "yajra/laravel-datatables-editor", @@ -11291,16 +11783,16 @@ }, { "name": "facade/ignition", - "version": "2.10.2", + "version": "2.11.2", "source": { "type": "git", "url": "https://github.com/facade/ignition.git", - "reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4" + "reference": "7c4e7a7da184cd00c7ce6eacc590200bb9672de7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/ignition/zipball/43688227bbf27c43bc1ad83af224f135b6ef0ff4", - "reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4", + "url": "https://api.github.com/repos/facade/ignition/zipball/7c4e7a7da184cd00c7ce6eacc590200bb9672de7", + "reference": "7c4e7a7da184cd00c7ce6eacc590200bb9672de7", "shasum": "" }, "require": { @@ -11308,7 +11800,6 @@ "ext-mbstring": "*", "facade/flare-client-php": "^1.6", "facade/ignition-contracts": "^1.0.2", - "filp/whoops": "^2.4", "illuminate/support": "^7.0|^8.0", "monolog/monolog": "^2.0", "php": "^7.2.5|^8.0", @@ -11364,7 +11855,7 @@ "issues": "https://github.com/facade/ignition/issues", "source": "https://github.com/facade/ignition" }, - "time": "2021-06-11T06:57:25+00:00" + "time": "2021-07-20T14:01:22+00:00" }, { "name": "facade/ignition-contracts", @@ -11420,41 +11911,47 @@ "time": "2020-10-16T08:27:54+00:00" }, { - "name": "filp/whoops", - "version": "2.13.0", + "name": "fakerphp/faker", + "version": "v1.15.0", "source": { "type": "git", - "url": "https://github.com/filp/whoops.git", - "reference": "2edbc73a4687d9085c8f20f398eebade844e8424" + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "89c6201c74db25fa759ff16e78a4d8f32547770e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/2edbc73a4687d9085c8f20f398eebade844e8424", - "reference": "2edbc73a4687d9085c8f20f398eebade844e8424", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/89c6201c74db25fa759ff16e78a4d8f32547770e", + "reference": "89c6201c74db25fa759ff16e78a4d8f32547770e", "shasum": "" }, "require": { - "php": "^5.5.9 || ^7.0 || ^8.0", - "psr/log": "^1.0.1" + "php": "^7.1 || ^8.0", + "psr/container": "^1.0", + "symfony/deprecation-contracts": "^2.2" + }, + "conflict": { + "fzaninotto/faker": "*" }, "require-dev": { - "mockery/mockery": "^0.9 || ^1.0", - "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", - "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-intl": "*", + "symfony/phpunit-bridge": "^4.4 || ^5.2" }, "suggest": { - "symfony/var-dumper": "Pretty print complex values better with var-dumper available", - "whoops/soap": "Formats errors as SOAP responses" + "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", "extra": { "branch-alias": { - "dev-master": "2.7-dev" + "dev-main": "v1.15-dev" } }, "autoload": { "psr-4": { - "Whoops\\": "src/Whoops/" + "Faker\\": "src/Faker/" } }, "notification-url": "https://packagist.org/downloads/", @@ -11463,64 +11960,57 @@ ], "authors": [ { - "name": "Filipe Dobreira", - "homepage": "https://github.com/filp", - "role": "Developer" + "name": "François Zaninotto" } ], - "description": "php error handling for cool kids", - "homepage": "https://filp.github.io/whoops/", + "description": "Faker is a PHP library that generates fake data for you.", "keywords": [ - "error", - "exception", - "handling", - "library", - "throwable", - "whoops" + "data", + "faker", + "fixtures" ], "support": { - "issues": "https://github.com/filp/whoops/issues", - "source": "https://github.com/filp/whoops/tree/2.13.0" + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.15.0" }, - "funding": [ - { - "url": "https://github.com/denis-sokolov", - "type": "github" - } - ], - "time": "2021-06-04T12:00:00+00:00" + "time": "2021-07-06T20:39:40+00:00" }, { - "name": "fzaninotto/faker", - "version": "v1.9.2", + "name": "filp/whoops", + "version": "2.14.0", "source": { "type": "git", - "url": "https://github.com/fzaninotto/Faker.git", - "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e" + "url": "https://github.com/filp/whoops.git", + "reference": "fdf92f03e150ed84d5967a833ae93abffac0315b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e", - "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e", + "url": "https://api.github.com/repos/filp/whoops/zipball/fdf92f03e150ed84d5967a833ae93abffac0315b", + "reference": "fdf92f03e150ed84d5967a833ae93abffac0315b", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0" + "php": "^5.5.9 || ^7.0 || ^8.0", + "psr/log": "^1.0.1" }, "require-dev": { - "ext-intl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7", - "squizlabs/php_codesniffer": "^2.9.2" + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.9-dev" + "dev-master": "2.7-dev" } }, "autoload": { "psr-4": { - "Faker\\": "src/Faker/" + "Whoops\\": "src/Whoops/" } }, "notification-url": "https://packagist.org/downloads/", @@ -11529,21 +12019,32 @@ ], "authors": [ { - "name": "François Zaninotto" + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" } ], - "description": "Faker is a PHP library that generates fake data for you.", + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", "keywords": [ - "data", - "faker", - "fixtures" + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" ], "support": { - "issues": "https://github.com/fzaninotto/Faker/issues", - "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2" + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.14.0" }, - "abandoned": true, - "time": "2020-12-11T09:56:16+00:00" + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2021-07-13T12:00:00+00:00" }, { "name": "hamcrest/hamcrest-php", @@ -11728,35 +12229,35 @@ }, { "name": "nunomaduro/collision", - "version": "v4.3.0", + "version": "v5.6.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e" + "reference": "0122ac6b03c75279ef78d1c0ad49725dfc52a8d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e", - "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/0122ac6b03c75279ef78d1c0ad49725dfc52a8d2", + "reference": "0122ac6b03c75279ef78d1c0ad49725dfc52a8d2", "shasum": "" }, "require": { "facade/ignition-contracts": "^1.0", - "filp/whoops": "^2.4", - "php": "^7.2.5 || ^8.0", + "filp/whoops": "^2.7.2", + "php": "^7.3 || ^8.0", "symfony/console": "^5.0" }, "require-dev": { - "facade/ignition": "^2.0", - "fideloper/proxy": "^4.2", - "friendsofphp/php-cs-fixer": "^2.16", - "fruitcake/laravel-cors": "^1.0", - "laravel/framework": "^7.0", - "laravel/tinker": "^2.0", - "nunomaduro/larastan": "^0.6", - "orchestra/testbench": "^5.0", - "phpstan/phpstan": "^0.12.3", - "phpunit/phpunit": "^8.5.1 || ^9.0" + "brianium/paratest": "^6.1", + "fideloper/proxy": "^4.4.1", + "friendsofphp/php-cs-fixer": "^2.17.3", + "fruitcake/laravel-cors": "^2.0.3", + "laravel/framework": "^8.0 || ^9.0", + "nunomaduro/larastan": "^0.6.2", + "nunomaduro/mock-final-classes": "^1.0", + "orchestra/testbench": "^6.0 || ^7.0", + "phpstan/phpstan": "^0.12.64", + "phpunit/phpunit": "^9.5.0" }, "type": "library", "extra": { @@ -11812,20 +12313,20 @@ "type": "patreon" } ], - "time": "2020-10-29T15:12:23+00:00" + "time": "2021-07-26T20:39:06+00:00" }, { "name": "phar-io/manifest", - "version": "2.0.1", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/phar-io/manifest.git", - "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133" + "reference": "97803eca37d319dfa7826cc2437fc020857acb53" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133", - "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53", "shasum": "" }, "require": { @@ -11870,9 +12371,9 @@ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", "support": { "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/master" + "source": "https://github.com/phar-io/manifest/tree/2.0.3" }, - "time": "2020-06-27T14:33:11+00:00" + "time": "2021-07-20T11:28:43+00:00" }, { "name": "phar-io/version", @@ -12152,40 +12653,44 @@ }, { "name": "phpunit/php-code-coverage", - "version": "7.0.14", + "version": "9.2.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c" + "reference": "f6293e1b30a2354e8428e004689671b83871edde" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c", - "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde", + "reference": "f6293e1b30a2354e8428e004689671b83871edde", "shasum": "" }, "require": { "ext-dom": "*", + "ext-libxml": "*", "ext-xmlwriter": "*", - "php": ">=7.2", - "phpunit/php-file-iterator": "^2.0.2", - "phpunit/php-text-template": "^1.2.1", - "phpunit/php-token-stream": "^3.1.1 || ^4.0", - "sebastian/code-unit-reverse-lookup": "^1.0.1", - "sebastian/environment": "^4.2.2", - "sebastian/version": "^2.0.1", - "theseer/tokenizer": "^1.1.3" + "nikic/php-parser": "^4.10.2", + "php": ">=7.3", + "phpunit/php-file-iterator": "^3.0.3", + "phpunit/php-text-template": "^2.0.2", + "sebastian/code-unit-reverse-lookup": "^2.0.2", + "sebastian/complexity": "^2.0", + "sebastian/environment": "^5.1.2", + "sebastian/lines-of-code": "^1.0.3", + "sebastian/version": "^3.0.1", + "theseer/tokenizer": "^1.2.0" }, "require-dev": { - "phpunit/phpunit": "^8.2.2" + "phpunit/phpunit": "^9.3" }, "suggest": { - "ext-xdebug": "^2.7.2" + "ext-pcov": "*", + "ext-xdebug": "*" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "7.0-dev" + "dev-master": "9.2-dev" } }, "autoload": { @@ -12213,7 +12718,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6" }, "funding": [ { @@ -12221,32 +12726,32 @@ "type": "github" } ], - "time": "2020-12-02T13:39:03+00:00" + "time": "2021-03-28T07:26:59+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "2.0.3", + "version": "3.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357" + "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357", - "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8", + "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^8.5" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -12273,7 +12778,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3" + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5" }, "funding": [ { @@ -12281,26 +12786,38 @@ "type": "github" } ], - "time": "2020-11-30T08:25:21+00:00" + "time": "2020-09-28T05:57:25+00:00" }, { - "name": "phpunit/php-text-template", - "version": "1.2.1", + "name": "phpunit/php-invoker", + "version": "3.1.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.3" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcntl": "*" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, "autoload": { "classmap": [ "src/" @@ -12317,41 +12834,47 @@ "role": "lead" } ], - "description": "Simple template engine.", - "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", "keywords": [ - "template" + "process" ], "support": { - "issues": "https://github.com/sebastianbergmann/php-text-template/issues", - "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1" + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" }, - "time": "2015-06-21T13:50:34+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:58:55+00:00" }, { - "name": "phpunit/php-timer", - "version": "2.1.3", + "name": "phpunit/php-text-template", + "version": "2.0.4", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662" + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662", - "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^8.5" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -12370,14 +12893,14 @@ "role": "lead" } ], - "description": "Utility class for timing", - "homepage": "https://github.com/sebastianbergmann/php-timer/", + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", "keywords": [ - "timer" + "template" ], "support": { - "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3" + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" }, "funding": [ { @@ -12385,33 +12908,32 @@ "type": "github" } ], - "time": "2020-11-30T08:20:02+00:00" + "time": "2020-10-26T05:33:50+00:00" }, { - "name": "phpunit/php-token-stream", - "version": "4.0.4", + "name": "phpunit/php-timer", + "version": "5.0.3", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3" + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3", - "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", "shasum": "" }, "require": { - "ext-tokenizer": "*", - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -12426,17 +12948,18 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Wrapper around PHP's tokenizer extension.", - "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", "keywords": [ - "tokenizer" + "timer" ], "support": { - "issues": "https://github.com/sebastianbergmann/php-token-stream/issues", - "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master" + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" }, "funding": [ { @@ -12444,21 +12967,20 @@ "type": "github" } ], - "abandoned": true, - "time": "2020-08-04T08:28:15+00:00" + "time": "2020-10-26T13:16:10+00:00" }, { "name": "phpunit/phpunit", - "version": "8.5.17", + "version": "9.5.7", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "79067856d85421c56d413bd238d4e2cd6b0e54da" + "reference": "d0dc8b6999c937616df4fb046792004b33fd31c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/79067856d85421c56d413bd238d4e2cd6b0e54da", - "reference": "79067856d85421c56d413bd238d4e2cd6b0e54da", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d0dc8b6999c937616df4fb046792004b33fd31c5", + "reference": "d0dc8b6999c937616df4fb046792004b33fd31c5", "shasum": "" }, "require": { @@ -12469,32 +12991,35 @@ "ext-mbstring": "*", "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.10.0", + "myclabs/deep-copy": "^1.10.1", "phar-io/manifest": "^2.0.1", "phar-io/version": "^3.0.2", - "php": ">=7.2", - "phpspec/prophecy": "^1.10.3", - "phpunit/php-code-coverage": "^7.0.12", - "phpunit/php-file-iterator": "^2.0.2", - "phpunit/php-text-template": "^1.2.1", - "phpunit/php-timer": "^2.1.2", - "sebastian/comparator": "^3.0.2", - "sebastian/diff": "^3.0.2", - "sebastian/environment": "^4.2.3", - "sebastian/exporter": "^3.1.2", - "sebastian/global-state": "^3.0.0", - "sebastian/object-enumerator": "^3.0.3", - "sebastian/resource-operations": "^2.0.1", - "sebastian/type": "^1.1.3", - "sebastian/version": "^2.0.1" - }, - "require-dev": { - "ext-pdo": "*" + "php": ">=7.3", + "phpspec/prophecy": "^1.12.1", + "phpunit/php-code-coverage": "^9.2.3", + "phpunit/php-file-iterator": "^3.0.5", + "phpunit/php-invoker": "^3.1.1", + "phpunit/php-text-template": "^2.0.3", + "phpunit/php-timer": "^5.0.2", + "sebastian/cli-parser": "^1.0.1", + "sebastian/code-unit": "^1.0.6", + "sebastian/comparator": "^4.0.5", + "sebastian/diff": "^4.0.3", + "sebastian/environment": "^5.1.3", + "sebastian/exporter": "^4.0.3", + "sebastian/global-state": "^5.0.1", + "sebastian/object-enumerator": "^4.0.3", + "sebastian/resource-operations": "^3.0.3", + "sebastian/type": "^2.3.4", + "sebastian/version": "^3.0.2" + }, + "require-dev": { + "ext-pdo": "*", + "phpspec/prophecy-phpunit": "^2.0.1" }, "suggest": { "ext-soap": "*", - "ext-xdebug": "*", - "phpunit/php-invoker": "^2.0.0" + "ext-xdebug": "*" }, "bin": [ "phpunit" @@ -12502,12 +13027,15 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "8.5-dev" + "dev-master": "9.5-dev" } }, "autoload": { "classmap": [ "src/" + ], + "files": [ + "src/Framework/Assert/Functions.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -12530,7 +13058,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.17" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.7" }, "funding": [ { @@ -12542,32 +13070,32 @@ "type": "github" } ], - "time": "2021-06-23T05:12:43+00:00" + "time": "2021-07-19T06:14:47+00:00" }, { - "name": "sebastian/code-unit-reverse-lookup", - "version": "1.0.2", + "name": "sebastian/cli-parser", + "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619" + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619", - "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", "shasum": "" }, "require": { - "php": ">=5.6" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^8.5" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.0-dev" } }, "autoload": { @@ -12582,14 +13110,15 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Looks up which function or method a line of code belongs to", - "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", "support": { - "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", - "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2" + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" }, "funding": [ { @@ -12597,34 +13126,32 @@ "type": "github" } ], - "time": "2020-11-30T08:15:22+00:00" + "time": "2020-09-28T06:08:49+00:00" }, { - "name": "sebastian/comparator", - "version": "3.0.3", + "name": "sebastian/code-unit", + "version": "1.0.8", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "1071dfcef776a57013124ff35e1fc41ccd294758" + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758", - "reference": "1071dfcef776a57013124ff35e1fc41ccd294758", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", "shasum": "" }, "require": { - "php": ">=7.1", - "sebastian/diff": "^3.0", - "sebastian/exporter": "^3.1" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^8.5" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "1.0-dev" } }, "autoload": { @@ -12639,13 +13166,126 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:08:54+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:30:19+00:00" + }, + { + "name": "sebastian/comparator", + "version": "4.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "55f4261989e546dc112258c7a75935a81a7ce382" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382", + "reference": "55f4261989e546dc112258c7a75935a81a7ce382", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/diff": "^4.0", + "sebastian/exporter": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { "name": "Volker Dusch", "email": "github@wallbash.com" }, @@ -12663,7 +13303,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3" + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6" }, "funding": [ { @@ -12671,33 +13311,90 @@ "type": "github" } ], - "time": "2020-11-30T08:04:30+00:00" + "time": "2020-10-26T15:49:45+00:00" + }, + { + "name": "sebastian/complexity", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", + "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.7", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T15:52:27+00:00" }, { "name": "sebastian/diff", - "version": "3.0.3", + "version": "4.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211" + "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211", - "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d", + "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^7.5 || ^8.0", - "symfony/process": "^2 || ^3.3 || ^4" + "phpunit/phpunit": "^9.3", + "symfony/process": "^4.2 || ^5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "4.0-dev" } }, "autoload": { @@ -12729,7 +13426,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3" + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" }, "funding": [ { @@ -12737,27 +13434,27 @@ "type": "github" } ], - "time": "2020-11-30T07:59:04+00:00" + "time": "2020-10-26T13:10:38+00:00" }, { "name": "sebastian/environment", - "version": "4.2.4", + "version": "5.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0" + "reference": "388b6ced16caa751030f6a69e588299fa09200ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0", - "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac", + "reference": "388b6ced16caa751030f6a69e588299fa09200ac", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^7.5" + "phpunit/phpunit": "^9.3" }, "suggest": { "ext-posix": "*" @@ -12765,7 +13462,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -12792,7 +13489,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4" + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3" }, "funding": [ { @@ -12800,34 +13497,34 @@ "type": "github" } ], - "time": "2020-11-30T07:53:42+00:00" + "time": "2020-09-28T05:52:38+00:00" }, { "name": "sebastian/exporter", - "version": "3.1.3", + "version": "4.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e" + "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e", - "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65", + "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65", "shasum": "" }, "require": { - "php": ">=7.0", - "sebastian/recursion-context": "^3.0" + "php": ">=7.3", + "sebastian/recursion-context": "^4.0" }, "require-dev": { "ext-mbstring": "*", - "phpunit/phpunit": "^6.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1.x-dev" + "dev-master": "4.0-dev" } }, "autoload": { @@ -12869,7 +13566,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3" + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3" }, "funding": [ { @@ -12877,30 +13574,30 @@ "type": "github" } ], - "time": "2020-11-30T07:47:53+00:00" + "time": "2020-09-28T05:24:23+00:00" }, { "name": "sebastian/global-state", - "version": "3.0.1", + "version": "5.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b" + "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b", - "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/23bd5951f7ff26f12d4e3242864df3e08dec4e49", + "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49", "shasum": "" }, "require": { - "php": ">=7.2", - "sebastian/object-reflector": "^1.1.1", - "sebastian/recursion-context": "^3.0" + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" }, "require-dev": { "ext-dom": "*", - "phpunit/phpunit": "^8.0" + "phpunit/phpunit": "^9.3" }, "suggest": { "ext-uopz": "*" @@ -12908,7 +13605,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -12933,7 +13630,64 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1" + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-06-11T13:31:12+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.6", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" }, "funding": [ { @@ -12941,34 +13695,34 @@ "type": "github" } ], - "time": "2020-11-30T07:43:24+00:00" + "time": "2020-11-28T06:42:11+00:00" }, { "name": "sebastian/object-enumerator", - "version": "3.0.4", + "version": "4.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2" + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2", - "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", "shasum": "" }, "require": { - "php": ">=7.0", - "sebastian/object-reflector": "^1.1.1", - "sebastian/recursion-context": "^3.0" + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" }, "require-dev": { - "phpunit/phpunit": "^6.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0.x-dev" + "dev-master": "4.0-dev" } }, "autoload": { @@ -12990,7 +13744,7 @@ "homepage": "https://github.com/sebastianbergmann/object-enumerator/", "support": { "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", - "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4" + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" }, "funding": [ { @@ -12998,32 +13752,32 @@ "type": "github" } ], - "time": "2020-11-30T07:40:27+00:00" + "time": "2020-10-26T13:12:34+00:00" }, { "name": "sebastian/object-reflector", - "version": "1.1.2", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d" + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d", - "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", "shasum": "" }, "require": { - "php": ">=7.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^6.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -13045,7 +13799,7 @@ "homepage": "https://github.com/sebastianbergmann/object-reflector/", "support": { "issues": "https://github.com/sebastianbergmann/object-reflector/issues", - "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2" + "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" }, "funding": [ { @@ -13053,32 +13807,32 @@ "type": "github" } ], - "time": "2020-11-30T07:37:18+00:00" + "time": "2020-10-26T13:14:26+00:00" }, { "name": "sebastian/recursion-context", - "version": "3.0.1", + "version": "4.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb" + "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb", - "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172", + "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172", "shasum": "" }, "require": { - "php": ">=7.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^6.0" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0.x-dev" + "dev-master": "4.0-dev" } }, "autoload": { @@ -13108,7 +13862,7 @@ "homepage": "http://www.github.com/sebastianbergmann/recursion-context", "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" }, "funding": [ { @@ -13116,29 +13870,32 @@ "type": "github" } ], - "time": "2020-11-30T07:34:24+00:00" + "time": "2020-10-26T13:17:30+00:00" }, { "name": "sebastian/resource-operations", - "version": "2.0.2", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3" + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3", - "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -13160,7 +13917,7 @@ "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "support": { "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2" + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" }, "funding": [ { @@ -13168,32 +13925,33 @@ "type": "github" } ], - "time": "2020-11-30T07:30:19+00:00" + "abandoned": true, + "time": "2020-09-28T06:45:17+00:00" }, { "name": "sebastian/type", - "version": "1.1.4", + "version": "2.3.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4" + "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4", - "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914", + "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^8.2" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "2.3-dev" } }, "autoload": { @@ -13216,7 +13974,7 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/1.1.4" + "source": "https://github.com/sebastianbergmann/type/tree/2.3.4" }, "funding": [ { @@ -13224,29 +13982,29 @@ "type": "github" } ], - "time": "2020-11-30T07:25:11+00:00" + "time": "2021-06-15T12:49:02+00:00" }, { "name": "sebastian/version", - "version": "2.0.1", + "version": "3.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/version.git", - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + "reference": "c6c1022351a901512170118436c764e473f6de8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", + "reference": "c6c1022351a901512170118436c764e473f6de8c", "shasum": "" }, "require": { - "php": ">=5.6" + "php": ">=7.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -13269,22 +14027,28 @@ "homepage": "https://github.com/sebastianbergmann/version", "support": { "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/master" + "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" }, - "time": "2016-10-03T07:35:21+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:39:44+00:00" }, { "name": "theseer/tokenizer", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "75a63c33a8577608444246075ea0af0d052e452a" + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a", - "reference": "75a63c33a8577608444246075ea0af0d052e452a", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", "shasum": "" }, "require": { @@ -13313,7 +14077,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/master" + "source": "https://github.com/theseer/tokenizer/tree/1.2.1" }, "funding": [ { @@ -13321,65 +14085,7 @@ "type": "github" } ], - "time": "2020-07-12T23:59:07+00:00" - }, - { - "name": "webmozart/assert", - "version": "1.10.0", - "source": { - "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25", - "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0", - "symfony/polyfill-ctype": "^1.8" - }, - "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" - }, - "require-dev": { - "phpunit/phpunit": "^8.5.13" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } - }, - "autoload": { - "psr-4": { - "Webmozart\\Assert\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "Assertions to validate method input/output with nice error messages.", - "keywords": [ - "assert", - "check", - "validate" - ], - "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.10.0" - }, - "time": "2021-03-09T10:59:23+00:00" + "time": "2021-07-28T10:34:58+00:00" } ], "aliases": [], @@ -13388,7 +14094,7 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": "^7.4", + "php": "^7.3|^8.0", "ext-curl": "*", "ext-intl": "*", "ext-json": "*", diff --git a/public/assets/admin/css/main-buckets.b3760912.css b/public/assets/admin/css/main-buckets.b3760912.css index 8732b55e..f871545f 100644 --- a/public/assets/admin/css/main-buckets.b3760912.css +++ b/public/assets/admin/css/main-buckets.b3760912.css @@ -1 +1 @@ -.icon--add[data-v-833d5172],.icon--add svg[data-v-833d5172]{width:10px;height:10px}.icon--arrow-external[data-v-833d5172],.icon--arrow-external svg[data-v-833d5172]{width:8px;height:8px}.icon--arrow-sort[data-v-833d5172],.icon--arrow-sort svg[data-v-833d5172]{width:9px;height:11px}.icon--check[data-v-833d5172],.icon--check svg[data-v-833d5172]{width:11px;height:11px}.icon--close_icon[data-v-833d5172],.icon--close_icon svg[data-v-833d5172]{width:10px;height:10px}.icon--close_modal[data-v-833d5172],.icon--close_modal svg[data-v-833d5172]{width:16px;height:16px}.icon--colors[data-v-833d5172],.icon--colors svg[data-v-833d5172]{width:17px;height:17px}.icon--content-editor[data-v-833d5172],.icon--content-editor svg[data-v-833d5172]{width:14px;height:13px}.icon--crop[data-v-833d5172],.icon--crop svg[data-v-833d5172]{width:16px;height:18px}.icon--download[data-v-833d5172],.icon--download svg[data-v-833d5172]{width:12px;height:16px}.icon--drag[data-v-833d5172],.icon--drag svg[data-v-833d5172]{width:8px;height:17px}.icon--dropdown_default[data-v-833d5172],.icon--dropdown_default svg[data-v-833d5172]{width:9px;height:5px}.icon--dropdown_module[data-v-833d5172],.icon--dropdown_module svg[data-v-833d5172]{width:10px;height:6px}.icon--edit[data-v-833d5172],.icon--edit svg[data-v-833d5172]{width:13px;height:13px}.icon--edit_large[data-v-833d5172],.icon--edit_large svg[data-v-833d5172]{width:14px;height:14px}.icon--editor[data-v-833d5172],.icon--editor svg[data-v-833d5172]{width:14px;height:13px}.icon--expand[data-v-833d5172],.icon--expand svg[data-v-833d5172]{width:10px;height:10px}.icon--fix-grid[data-v-833d5172],.icon--fix-grid svg[data-v-833d5172]{width:18px;height:14px}.icon--flex-grid[data-v-833d5172],.icon--flex-grid svg[data-v-833d5172]{width:18px;height:17px}.icon--google-sign-in[data-v-833d5172],.icon--google-sign-in svg[data-v-833d5172]{width:23px;height:24px}.icon--image-text[data-v-833d5172],.icon--image-text svg[data-v-833d5172]{width:30px;height:13px}.icon--image[data-v-833d5172],.icon--image svg[data-v-833d5172]{width:19px;height:15px}.icon--info[data-v-833d5172],.icon--info svg[data-v-833d5172]{width:21px;height:21px}.icon--location[data-v-833d5172],.icon--location svg[data-v-833d5172]{width:12px;height:16px}.icon--media-grid[data-v-833d5172],.icon--media-grid svg[data-v-833d5172]{width:12px;height:12px}.icon--media-list[data-v-833d5172],.icon--media-list svg[data-v-833d5172]{width:16px;height:10px}.icon--more-dots[data-v-833d5172],.icon--more-dots svg[data-v-833d5172]{width:14px;height:4px}.icon--pagination_left[data-v-833d5172],.icon--pagination_left svg[data-v-833d5172],.icon--pagination_right[data-v-833d5172],.icon--pagination_right svg[data-v-833d5172]{width:9px;height:15px}.icon--preferences[data-v-833d5172],.icon--preferences svg[data-v-833d5172]{width:26px;height:16px}.icon--preview-desktop[data-v-833d5172],.icon--preview-desktop svg[data-v-833d5172]{width:39px;height:30px}.icon--preview-mobile[data-v-833d5172],.icon--preview-mobile svg[data-v-833d5172]{width:12px;height:18px}.icon--preview-tablet-h[data-v-833d5172],.icon--preview-tablet-h svg[data-v-833d5172]{width:27px;height:20px}.icon--preview-tablet-v[data-v-833d5172],.icon--preview-tablet-v svg[data-v-833d5172]{width:20px;height:27px}.icon--preview[data-v-833d5172],.icon--preview svg[data-v-833d5172]{width:22px;height:14px}.icon--publish[data-v-833d5172],.icon--publish svg[data-v-833d5172]{width:22px;height:15px}.icon--quote[data-v-833d5172],.icon--quote svg[data-v-833d5172]{width:16px;height:13px}.icon--revision-compare[data-v-833d5172],.icon--revision-compare svg[data-v-833d5172],.icon--revision-single[data-v-833d5172],.icon--revision-single svg[data-v-833d5172]{width:23px;height:16px}.icon--search[data-v-833d5172],.icon--search svg[data-v-833d5172]{width:20px;height:20px}.icon--slideshow[data-v-833d5172],.icon--slideshow svg[data-v-833d5172]{width:20px;height:16px}.icon--star-feature[data-v-833d5172],.icon--star-feature_active[data-v-833d5172],.icon--star-feature_active svg[data-v-833d5172],.icon--star-feature svg[data-v-833d5172]{width:20px;height:19px}.icon--text-2col[data-v-833d5172],.icon--text-2col svg[data-v-833d5172]{width:26px;height:13px}.icon--text[data-v-833d5172],.icon--text svg[data-v-833d5172]{width:17px;height:13px}.icon--trash[data-v-833d5172],.icon--trash svg[data-v-833d5172]{width:15px;height:17px}.icon--video[data-v-833d5172],.icon--video svg[data-v-833d5172]{width:23px;height:23px}.icon--website[data-v-833d5172],.icon--website svg[data-v-833d5172]{width:26px;height:21px}.icon--wysiwyg_anchor[data-v-833d5172],.icon--wysiwyg_anchor svg[data-v-833d5172]{width:18px;height:18px}.icon--wysiwyg_bold[data-v-833d5172],.icon--wysiwyg_bold svg[data-v-833d5172]{width:12px;height:13px}.icon--wysiwyg_header-2 svg[data-v-833d5172],.icon--wysiwyg_header-2[data-v-833d5172],.icon--wysiwyg_header-3 svg[data-v-833d5172],.icon--wysiwyg_header-3[data-v-833d5172],.icon--wysiwyg_header-4 svg[data-v-833d5172],.icon--wysiwyg_header-4[data-v-833d5172],.icon--wysiwyg_header-5 svg[data-v-833d5172],.icon--wysiwyg_header-5[data-v-833d5172],.icon--wysiwyg_header-6 svg[data-v-833d5172],.icon--wysiwyg_header-6[data-v-833d5172],.icon--wysiwyg_header[data-v-833d5172],.icon--wysiwyg_header svg[data-v-833d5172]{width:18px;height:18px}.icon--wysiwyg_italic[data-v-833d5172],.icon--wysiwyg_italic svg[data-v-833d5172]{width:10px;height:13px}.icon--wysiwyg_link[data-v-833d5172],.icon--wysiwyg_link svg[data-v-833d5172]{width:21px;height:10px}.icon--wysiwyg_underline[data-v-833d5172],.icon--wysiwyg_underline svg[data-v-833d5172]{width:12px;height:13px}.icon--ae[data-v-833d5172],.icon--ae svg[data-v-833d5172],.icon--ai[data-v-833d5172],.icon--ai svg[data-v-833d5172],.icon--ase[data-v-833d5172],.icon--ase svg[data-v-833d5172]{width:20px;height:26px}.icon--cut[data-v-833d5172],.icon--cut svg[data-v-833d5172],.icon--dir[data-v-833d5172],.icon--dir_protected[data-v-833d5172],.icon--dir_protected svg[data-v-833d5172],.icon--dir_shared[data-v-833d5172],.icon--dir_shared svg[data-v-833d5172],.icon--dir svg[data-v-833d5172]{width:26px;height:21px}.icon--dmg[data-v-833d5172],.icon--dmg svg[data-v-833d5172],.icon--doc[data-v-833d5172],.icon--doc svg[data-v-833d5172],.icon--eps[data-v-833d5172],.icon--eps svg[data-v-833d5172],.icon--fla[data-v-833d5172],.icon--fla svg[data-v-833d5172],.icon--fnt[data-v-833d5172],.icon--fnt svg[data-v-833d5172],.icon--gen[data-v-833d5172],.icon--gen svg[data-v-833d5172],.icon--html[data-v-833d5172],.icon--html svg[data-v-833d5172],.icon--img[data-v-833d5172],.icon--img svg[data-v-833d5172],.icon--indd[data-v-833d5172],.icon--indd svg[data-v-833d5172],.icon--key[data-v-833d5172],.icon--key svg[data-v-833d5172],.icon--merlin[data-v-833d5172],.icon--merlin svg[data-v-833d5172]{width:20px;height:26px}.icon--net[data-v-833d5172],.icon--net svg[data-v-833d5172]{width:26px;height:21px}.icon--numbers[data-v-833d5172],.icon--numbers svg[data-v-833d5172],.icon--pages[data-v-833d5172],.icon--pages svg[data-v-833d5172],.icon--pdf[data-v-833d5172],.icon--pdf svg[data-v-833d5172],.icon--ppt[data-v-833d5172],.icon--ppt svg[data-v-833d5172],.icon--psd[data-v-833d5172],.icon--psd svg[data-v-833d5172]{width:20px;height:26px}.icon--site[data-v-833d5172],.icon--site svg[data-v-833d5172]{width:26px;height:21px}.icon--slide[data-v-833d5172],.icon--slide svg[data-v-833d5172],.icon--snd[data-v-833d5172],.icon--snd svg[data-v-833d5172],.icon--sql[data-v-833d5172],.icon--sql svg[data-v-833d5172],.icon--swf[data-v-833d5172],.icon--swf svg[data-v-833d5172],.icon--txt[data-v-833d5172],.icon--txt svg[data-v-833d5172],.icon--vid[data-v-833d5172],.icon--vid svg[data-v-833d5172],.icon--xls[data-v-833d5172],.icon--xls svg[data-v-833d5172],.icon--zip[data-v-833d5172],.icon--zip svg[data-v-833d5172]{width:20px;height:26px}.container[data-v-833d5172]{margin-right:auto;margin-left:auto}@media screen and (max-width:599px){.container[data-v-833d5172]{width:auto;padding-right:20px;padding-left:20px}}@media screen and (min-width:600px)and (max-width:849px){.container[data-v-833d5172]{width:auto;padding-right:30px;padding-left:30px}}@media screen and (min-width:850px)and (max-width:1039px){.container[data-v-833d5172]{width:auto;padding-right:40px;padding-left:40px}}@media screen and (min-width:1040px)and (max-width:1539px){.container[data-v-833d5172]{width:auto;padding-right:50px;padding-left:50px}}@media screen and (min-width:1540px){.container[data-v-833d5172]{width:1540px;padding-right:50px;padding-left:50px}}@media screen and (max-width:599px){.container--full[data-v-833d5172]{width:auto}}@media screen and (min-width:600px)and (max-width:849px){.container--full[data-v-833d5172]{width:auto}}@media screen and (min-width:850px)and (max-width:1039px){.container--full[data-v-833d5172]{width:auto}}@media screen and (min-width:1040px)and (max-width:1539px){.container--full[data-v-833d5172]{width:auto}}@media screen and (min-width:1540px){.container--full[data-v-833d5172]{width:auto}}.drag__handle[data-v-833d5172]{position:absolute;top:0;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:12px;min-width:12px;height:100%;background-color:#fbfbfb;-webkit-transition:background .25s ease;transition:background .25s ease;cursor:move}.drag__handle[data-v-833d5172]:hover{background-color:#f2f2f2}.drag__handle:hover .drag__handle--drag[data-v-833d5172]:before{background:repeating-linear-gradient(90deg,#f2f2f2,#f2f2f2 2px,transparent 0,transparent 4px)}.drag__handle--drag[data-v-833d5172]{position:relative;width:10px;height:42px;margin-left:auto;margin-right:auto;-webkit-transition:background .25s ease;transition:background .25s ease;cursor:move;background:repeating-linear-gradient(180deg,#bfbfbf,#bfbfbf 2px,transparent 0,transparent 4px)}.drag__handle--drag[data-v-833d5172]:before{position:absolute;display:block;content:"";background:repeating-linear-gradient(90deg,#fbfbfb,#fbfbfb 2px,transparent 0,transparent 4px);width:100%;height:100%}.buckets__itemStarred[data-v-833d5172]{display:block;cursor:pointer;position:relative;top:2px}.buckets__itemStarred .icon[data-v-833d5172]{color:#a6a6a6;display:block;top:-2px;position:relative}.buckets__itemStarred .icon--star-feature_active[data-v-833d5172]{color:#e61414}.buckets__itemStarred .icon--star-feature[data-v-833d5172]{display:block}.buckets__itemStarred .icon--star-feature_active[data-v-833d5172]{display:none}.buckets__itemStarred--active .icon svg[data-v-833d5172]{fill:#e61414}.buckets__itemStarred--active .icon--star-feature[data-v-833d5172]{display:none}.buckets__itemStarred--active .icon--star-feature_active[data-v-833d5172]{display:block}.icon--add[data-v-b767fefa],.icon--add svg[data-v-b767fefa]{width:10px;height:10px}.icon--arrow-external[data-v-b767fefa],.icon--arrow-external svg[data-v-b767fefa]{width:8px;height:8px}.icon--arrow-sort[data-v-b767fefa],.icon--arrow-sort svg[data-v-b767fefa]{width:9px;height:11px}.icon--check[data-v-b767fefa],.icon--check svg[data-v-b767fefa]{width:11px;height:11px}.icon--close_icon[data-v-b767fefa],.icon--close_icon svg[data-v-b767fefa]{width:10px;height:10px}.icon--close_modal[data-v-b767fefa],.icon--close_modal svg[data-v-b767fefa]{width:16px;height:16px}.icon--colors[data-v-b767fefa],.icon--colors svg[data-v-b767fefa]{width:17px;height:17px}.icon--content-editor[data-v-b767fefa],.icon--content-editor svg[data-v-b767fefa]{width:14px;height:13px}.icon--crop[data-v-b767fefa],.icon--crop svg[data-v-b767fefa]{width:16px;height:18px}.icon--download[data-v-b767fefa],.icon--download svg[data-v-b767fefa]{width:12px;height:16px}.icon--drag[data-v-b767fefa],.icon--drag svg[data-v-b767fefa]{width:8px;height:17px}.icon--dropdown_default[data-v-b767fefa],.icon--dropdown_default svg[data-v-b767fefa]{width:9px;height:5px}.icon--dropdown_module[data-v-b767fefa],.icon--dropdown_module svg[data-v-b767fefa]{width:10px;height:6px}.icon--edit[data-v-b767fefa],.icon--edit svg[data-v-b767fefa]{width:13px;height:13px}.icon--edit_large[data-v-b767fefa],.icon--edit_large svg[data-v-b767fefa]{width:14px;height:14px}.icon--editor[data-v-b767fefa],.icon--editor svg[data-v-b767fefa]{width:14px;height:13px}.icon--expand[data-v-b767fefa],.icon--expand svg[data-v-b767fefa]{width:10px;height:10px}.icon--fix-grid[data-v-b767fefa],.icon--fix-grid svg[data-v-b767fefa]{width:18px;height:14px}.icon--flex-grid[data-v-b767fefa],.icon--flex-grid svg[data-v-b767fefa]{width:18px;height:17px}.icon--google-sign-in[data-v-b767fefa],.icon--google-sign-in svg[data-v-b767fefa]{width:23px;height:24px}.icon--image-text[data-v-b767fefa],.icon--image-text svg[data-v-b767fefa]{width:30px;height:13px}.icon--image[data-v-b767fefa],.icon--image svg[data-v-b767fefa]{width:19px;height:15px}.icon--info[data-v-b767fefa],.icon--info svg[data-v-b767fefa]{width:21px;height:21px}.icon--location[data-v-b767fefa],.icon--location svg[data-v-b767fefa]{width:12px;height:16px}.icon--media-grid[data-v-b767fefa],.icon--media-grid svg[data-v-b767fefa]{width:12px;height:12px}.icon--media-list[data-v-b767fefa],.icon--media-list svg[data-v-b767fefa]{width:16px;height:10px}.icon--more-dots[data-v-b767fefa],.icon--more-dots svg[data-v-b767fefa]{width:14px;height:4px}.icon--pagination_left[data-v-b767fefa],.icon--pagination_left svg[data-v-b767fefa],.icon--pagination_right[data-v-b767fefa],.icon--pagination_right svg[data-v-b767fefa]{width:9px;height:15px}.icon--preferences[data-v-b767fefa],.icon--preferences svg[data-v-b767fefa]{width:26px;height:16px}.icon--preview-desktop[data-v-b767fefa],.icon--preview-desktop svg[data-v-b767fefa]{width:39px;height:30px}.icon--preview-mobile[data-v-b767fefa],.icon--preview-mobile svg[data-v-b767fefa]{width:12px;height:18px}.icon--preview-tablet-h[data-v-b767fefa],.icon--preview-tablet-h svg[data-v-b767fefa]{width:27px;height:20px}.icon--preview-tablet-v[data-v-b767fefa],.icon--preview-tablet-v svg[data-v-b767fefa]{width:20px;height:27px}.icon--preview[data-v-b767fefa],.icon--preview svg[data-v-b767fefa]{width:22px;height:14px}.icon--publish[data-v-b767fefa],.icon--publish svg[data-v-b767fefa]{width:22px;height:15px}.icon--quote[data-v-b767fefa],.icon--quote svg[data-v-b767fefa]{width:16px;height:13px}.icon--revision-compare[data-v-b767fefa],.icon--revision-compare svg[data-v-b767fefa],.icon--revision-single[data-v-b767fefa],.icon--revision-single svg[data-v-b767fefa]{width:23px;height:16px}.icon--search[data-v-b767fefa],.icon--search svg[data-v-b767fefa]{width:20px;height:20px}.icon--slideshow[data-v-b767fefa],.icon--slideshow svg[data-v-b767fefa]{width:20px;height:16px}.icon--star-feature[data-v-b767fefa],.icon--star-feature_active[data-v-b767fefa],.icon--star-feature_active svg[data-v-b767fefa],.icon--star-feature svg[data-v-b767fefa]{width:20px;height:19px}.icon--text-2col[data-v-b767fefa],.icon--text-2col svg[data-v-b767fefa]{width:26px;height:13px}.icon--text[data-v-b767fefa],.icon--text svg[data-v-b767fefa]{width:17px;height:13px}.icon--trash[data-v-b767fefa],.icon--trash svg[data-v-b767fefa]{width:15px;height:17px}.icon--video[data-v-b767fefa],.icon--video svg[data-v-b767fefa]{width:23px;height:23px}.icon--website[data-v-b767fefa],.icon--website svg[data-v-b767fefa]{width:26px;height:21px}.icon--wysiwyg_anchor[data-v-b767fefa],.icon--wysiwyg_anchor svg[data-v-b767fefa]{width:18px;height:18px}.icon--wysiwyg_bold[data-v-b767fefa],.icon--wysiwyg_bold svg[data-v-b767fefa]{width:12px;height:13px}.icon--wysiwyg_header-2 svg[data-v-b767fefa],.icon--wysiwyg_header-2[data-v-b767fefa],.icon--wysiwyg_header-3 svg[data-v-b767fefa],.icon--wysiwyg_header-3[data-v-b767fefa],.icon--wysiwyg_header-4 svg[data-v-b767fefa],.icon--wysiwyg_header-4[data-v-b767fefa],.icon--wysiwyg_header-5 svg[data-v-b767fefa],.icon--wysiwyg_header-5[data-v-b767fefa],.icon--wysiwyg_header-6 svg[data-v-b767fefa],.icon--wysiwyg_header-6[data-v-b767fefa],.icon--wysiwyg_header[data-v-b767fefa],.icon--wysiwyg_header svg[data-v-b767fefa]{width:18px;height:18px}.icon--wysiwyg_italic[data-v-b767fefa],.icon--wysiwyg_italic svg[data-v-b767fefa]{width:10px;height:13px}.icon--wysiwyg_link[data-v-b767fefa],.icon--wysiwyg_link svg[data-v-b767fefa]{width:21px;height:10px}.icon--wysiwyg_underline[data-v-b767fefa],.icon--wysiwyg_underline svg[data-v-b767fefa]{width:12px;height:13px}.icon--ae[data-v-b767fefa],.icon--ae svg[data-v-b767fefa],.icon--ai[data-v-b767fefa],.icon--ai svg[data-v-b767fefa],.icon--ase[data-v-b767fefa],.icon--ase svg[data-v-b767fefa]{width:20px;height:26px}.icon--cut[data-v-b767fefa],.icon--cut svg[data-v-b767fefa],.icon--dir[data-v-b767fefa],.icon--dir_protected[data-v-b767fefa],.icon--dir_protected svg[data-v-b767fefa],.icon--dir_shared[data-v-b767fefa],.icon--dir_shared svg[data-v-b767fefa],.icon--dir svg[data-v-b767fefa]{width:26px;height:21px}.icon--dmg[data-v-b767fefa],.icon--dmg svg[data-v-b767fefa],.icon--doc[data-v-b767fefa],.icon--doc svg[data-v-b767fefa],.icon--eps[data-v-b767fefa],.icon--eps svg[data-v-b767fefa],.icon--fla[data-v-b767fefa],.icon--fla svg[data-v-b767fefa],.icon--fnt[data-v-b767fefa],.icon--fnt svg[data-v-b767fefa],.icon--gen[data-v-b767fefa],.icon--gen svg[data-v-b767fefa],.icon--html[data-v-b767fefa],.icon--html svg[data-v-b767fefa],.icon--img[data-v-b767fefa],.icon--img svg[data-v-b767fefa],.icon--indd[data-v-b767fefa],.icon--indd svg[data-v-b767fefa],.icon--key[data-v-b767fefa],.icon--key svg[data-v-b767fefa],.icon--merlin[data-v-b767fefa],.icon--merlin svg[data-v-b767fefa]{width:20px;height:26px}.icon--net[data-v-b767fefa],.icon--net svg[data-v-b767fefa]{width:26px;height:21px}.icon--numbers[data-v-b767fefa],.icon--numbers svg[data-v-b767fefa],.icon--pages[data-v-b767fefa],.icon--pages svg[data-v-b767fefa],.icon--pdf[data-v-b767fefa],.icon--pdf svg[data-v-b767fefa],.icon--ppt[data-v-b767fefa],.icon--ppt svg[data-v-b767fefa],.icon--psd[data-v-b767fefa],.icon--psd svg[data-v-b767fefa]{width:20px;height:26px}.icon--site[data-v-b767fefa],.icon--site svg[data-v-b767fefa]{width:26px;height:21px}.icon--slide[data-v-b767fefa],.icon--slide svg[data-v-b767fefa],.icon--snd[data-v-b767fefa],.icon--snd svg[data-v-b767fefa],.icon--sql[data-v-b767fefa],.icon--sql svg[data-v-b767fefa],.icon--swf[data-v-b767fefa],.icon--swf svg[data-v-b767fefa],.icon--txt[data-v-b767fefa],.icon--txt svg[data-v-b767fefa],.icon--vid[data-v-b767fefa],.icon--vid svg[data-v-b767fefa],.icon--xls[data-v-b767fefa],.icon--xls svg[data-v-b767fefa],.icon--zip[data-v-b767fefa],.icon--zip svg[data-v-b767fefa]{width:20px;height:26px}.container[data-v-b767fefa]{margin-right:auto;margin-left:auto}@media screen and (max-width:599px){.container[data-v-b767fefa]{width:auto;padding-right:20px;padding-left:20px}}@media screen and (min-width:600px)and (max-width:849px){.container[data-v-b767fefa]{width:auto;padding-right:30px;padding-left:30px}}@media screen and (min-width:850px)and (max-width:1039px){.container[data-v-b767fefa]{width:auto;padding-right:40px;padding-left:40px}}@media screen and (min-width:1040px)and (max-width:1539px){.container[data-v-b767fefa]{width:auto;padding-right:50px;padding-left:50px}}@media screen and (min-width:1540px){.container[data-v-b767fefa]{width:1540px;padding-right:50px;padding-left:50px}}@media screen and (max-width:599px){.container--full[data-v-b767fefa]{width:auto}}@media screen and (min-width:600px)and (max-width:849px){.container--full[data-v-b767fefa]{width:auto}}@media screen and (min-width:850px)and (max-width:1039px){.container--full[data-v-b767fefa]{width:auto}}@media screen and (min-width:1040px)and (max-width:1539px){.container--full[data-v-b767fefa]{width:auto}}@media screen and (min-width:1540px){.container--full[data-v-b767fefa]{width:auto}}.buckets[data-v-b767fefa]{padding-bottom:80px}.buckets__page-title[data-v-b767fefa]{margin-bottom:20px;background-color:#f2f2f2;border-bottom:1px solid #e5e5e5;overflow:hidden}.buckets__page-title-content[data-v-b767fefa]{padding-top:30px;padding-bottom:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.buckets__page-title-actions[data-v-b767fefa]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.buckets__page-title-actions a[data-v-b767fefa],.buckets__page-title-actions button[data-v-b767fefa]{margin-left:20px;vertical-align:middle}.buckets__fieldset__header[data-v-b767fefa]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.buckets__fieldset__header .buckets__number[data-v-b767fefa]{margin-right:10px}.buckets__fieldset__header .buckets__size-infos[data-v-b767fefa]{font-size:11px;letter-spacing:0;text-align:right;float:right}.buckets__header[data-v-b767fefa]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 15px;height:80px;background-color:#fbfbfb;border-bottom:1px solid #f2f2f2}.buckets__header .buckets__sources[data-v-b767fefa]{-webkit-box-flex:2;-ms-flex-positive:2;flex-grow:2}.buckets__header .buckets__sources .sources__select[data-v-b767fefa]{margin-top:-35px}.buckets__header .buckets__filter[data-v-b767fefa]{margin-left:15px}.buckets__list[data-v-b767fefa]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex}.buckets__list tbody[data-v-b767fefa]{width:100%}.buckets__empty[data-v-b767fefa]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:80px;padding:15px 20px}.buckets__empty h4[data-v-b767fefa]{color:#8c8c8c}.buckets__item{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:80px;padding:0 15px;border-top:1px solid #f2f2f2}.buckets__item td{padding-top:15px;padding-bottom:15px}.buckets__item:hover{background-color:#fbfbfb}.buckets__item:first-child{border-top:0 none}@media screen and (max-width:599px){.buckets__item .buckets__itemThumbnail{display:none}}.buckets__item .buckets__itemThumbnail img{display:block;width:50px;min-width:50px;min-height:50px;height:auto;background:#f2f2f2}.buckets__item .buckets__itemTitle{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:0 30px 0 15px;overflow:hidden}.buckets__item .buckets__itemTitle h4{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.buckets__item .buckets__itemTitle h4 a :not(.tag){color:#3278b8}@media screen and (max-width:599px){.buckets__item .buckets__itemTitle{margin-left:0}}@media screen and (min-width:1440px){.buckets__item .buckets__itemTitle{margin-right:80px}}.buckets__item .buckets__itemTitle .f--link-underlined--o a{color:#3278b8;text-decoration:none}@media screen and (min-width:850px)and (max-width:1039px){.buckets__item .buckets__itemDate{display:none}}.buckets__item .buckets__itemContentType,.buckets__item .buckets__itemDate{margin-right:25px;color:#8c8c8c}@media screen and (max-width:599px){.buckets__item .buckets__itemContentType,.buckets__item .buckets__itemDate{display:none}}@media screen and (min-width:850px)and (max-width:1039px){.buckets__item .buckets__itemContentType,.buckets__item .buckets__itemDate{margin-right:15px}}@media screen and (min-width:1040px)and (max-width:1539px){.buckets__item .buckets__itemContentType,.buckets__item .buckets__itemDate{margin-right:40px}}@media screen and (min-width:1440px){.buckets__item .buckets__itemContentType,.buckets__item .buckets__itemDate{margin-right:80px}}.buckets__item .buckets__itemOptions{display:-webkit-box;display:-ms-flexbox;display:flex}.buckets__item .buckets__itemOptions .item__dropdown .item__dropdown__content{min-width:250px}.buckets__item .buckets__itemOptions .item__dropdown .item__dropdown__content .radioGroup__item:hover{background-color:#f2f2f2}.buckets__item .buckets__itemOptions .button--add:disabled{opacity:.3}.buckets__item .buckets__itemOptions .bucket__action{font-size:11px;letter-spacing:0;line-height:25px;margin-right:15px}.buckets__item .buckets__itemOptions .bucket__action:last-child{margin-right:0}.buckets__item .buckets__itemOptions .bucket__action.selected,.buckets__item.single.selected>*{opacity:.4}.buckets__item.draggable{padding-left:27px}.icon--add,.icon--add svg{width:10px;height:10px}.icon--arrow-external,.icon--arrow-external svg{width:8px;height:8px}.icon--arrow-sort,.icon--arrow-sort svg{width:9px;height:11px}.icon--check,.icon--check svg{width:11px;height:11px}.icon--close_icon,.icon--close_icon svg{width:10px;height:10px}.icon--close_modal,.icon--close_modal svg{width:16px;height:16px}.icon--colors,.icon--colors svg{width:17px;height:17px}.icon--content-editor,.icon--content-editor svg{width:14px;height:13px}.icon--crop,.icon--crop svg{width:16px;height:18px}.icon--download,.icon--download svg{width:12px;height:16px}.icon--drag,.icon--drag svg{width:8px;height:17px}.icon--dropdown_default,.icon--dropdown_default svg{width:9px;height:5px}.icon--dropdown_module,.icon--dropdown_module svg{width:10px;height:6px}.icon--edit,.icon--edit svg{width:13px;height:13px}.icon--edit_large,.icon--edit_large svg{width:14px;height:14px}.icon--editor,.icon--editor svg{width:14px;height:13px}.icon--expand,.icon--expand svg{width:10px;height:10px}.icon--fix-grid,.icon--fix-grid svg{width:18px;height:14px}.icon--flex-grid,.icon--flex-grid svg{width:18px;height:17px}.icon--google-sign-in,.icon--google-sign-in svg{width:23px;height:24px}.icon--image-text,.icon--image-text svg{width:30px;height:13px}.icon--image,.icon--image svg{width:19px;height:15px}.icon--info,.icon--info svg{width:21px;height:21px}.icon--location,.icon--location svg{width:12px;height:16px}.icon--media-grid,.icon--media-grid svg{width:12px;height:12px}.icon--media-list,.icon--media-list svg{width:16px;height:10px}.icon--more-dots,.icon--more-dots svg{width:14px;height:4px}.icon--pagination_left,.icon--pagination_left svg,.icon--pagination_right,.icon--pagination_right svg{width:9px;height:15px}.icon--preferences,.icon--preferences svg{width:26px;height:16px}.icon--preview-desktop,.icon--preview-desktop svg{width:39px;height:30px}.icon--preview-mobile,.icon--preview-mobile svg{width:12px;height:18px}.icon--preview-tablet-h,.icon--preview-tablet-h svg{width:27px;height:20px}.icon--preview-tablet-v,.icon--preview-tablet-v svg{width:20px;height:27px}.icon--preview,.icon--preview svg{width:22px;height:14px}.icon--publish,.icon--publish svg{width:22px;height:15px}.icon--quote,.icon--quote svg{width:16px;height:13px}.icon--revision-compare,.icon--revision-compare svg,.icon--revision-single,.icon--revision-single svg{width:23px;height:16px}.icon--search,.icon--search svg{width:20px;height:20px}.icon--slideshow,.icon--slideshow svg{width:20px;height:16px}.icon--star-feature,.icon--star-feature_active,.icon--star-feature_active svg,.icon--star-feature svg{width:20px;height:19px}.icon--text-2col,.icon--text-2col svg{width:26px;height:13px}.icon--text,.icon--text svg{width:17px;height:13px}.icon--trash,.icon--trash svg{width:15px;height:17px}.icon--video,.icon--video svg{width:23px;height:23px}.icon--website,.icon--website svg{width:26px;height:21px}.icon--wysiwyg_anchor,.icon--wysiwyg_anchor svg{width:18px;height:18px}.icon--wysiwyg_bold,.icon--wysiwyg_bold svg{width:12px;height:13px}.icon--wysiwyg_header,.icon--wysiwyg_header-2,.icon--wysiwyg_header-2 svg,.icon--wysiwyg_header-3,.icon--wysiwyg_header-3 svg,.icon--wysiwyg_header-4,.icon--wysiwyg_header-4 svg,.icon--wysiwyg_header-5,.icon--wysiwyg_header-5 svg,.icon--wysiwyg_header-6,.icon--wysiwyg_header-6 svg,.icon--wysiwyg_header svg{width:18px;height:18px}.icon--wysiwyg_italic,.icon--wysiwyg_italic svg{width:10px;height:13px}.icon--wysiwyg_link,.icon--wysiwyg_link svg{width:21px;height:10px}.icon--wysiwyg_underline,.icon--wysiwyg_underline svg{width:12px;height:13px}.icon--ae,.icon--ae svg,.icon--ai,.icon--ai svg,.icon--ase,.icon--ase svg{width:20px;height:26px}.icon--cut,.icon--cut svg,.icon--dir,.icon--dir_protected,.icon--dir_protected svg,.icon--dir_shared,.icon--dir_shared svg,.icon--dir svg{width:26px;height:21px}.icon--dmg,.icon--dmg svg,.icon--doc,.icon--doc svg,.icon--eps,.icon--eps svg,.icon--fla,.icon--fla svg,.icon--fnt,.icon--fnt svg,.icon--gen,.icon--gen svg,.icon--html,.icon--html svg,.icon--img,.icon--img svg,.icon--indd,.icon--indd svg,.icon--key,.icon--key svg,.icon--merlin,.icon--merlin svg{width:20px;height:26px}.icon--net,.icon--net svg{width:26px;height:21px}.icon--numbers,.icon--numbers svg,.icon--pages,.icon--pages svg,.icon--pdf,.icon--pdf svg,.icon--ppt,.icon--ppt svg,.icon--psd,.icon--psd svg{width:20px;height:26px}.icon--site,.icon--site svg{width:26px;height:21px}.icon--slide,.icon--slide svg,.icon--snd,.icon--snd svg,.icon--sql,.icon--sql svg,.icon--swf,.icon--swf svg,.icon--txt,.icon--txt svg,.icon--vid,.icon--vid svg,.icon--xls,.icon--xls svg,.icon--zip,.icon--zip svg{width:20px;height:26px}@font-face{font-family:Inter;font-style:normal;font-weight:400;src:url(../../../assets/admin/fonts/Inter-Regular.bffaed79.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-Regular.aebfbb3c.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:italic;font-weight:400;src:url(../../../assets/admin/fonts/Inter-Italic.381444ec.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-Italic.35cf8109.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:normal;font-weight:600;src:url(../../../assets/admin/fonts/Inter-Medium.2e5e0884.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-Medium.c09fb389.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:italic;font-weight:600;src:url(../../../assets/admin/fonts/Inter-MediumItalic.7a7fd735.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-MediumItalic.ad6e093c.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:normal;font-weight:700;src:url(../../../assets/admin/fonts/Inter-Bold.34356f6b.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-Bold.61c493e3.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:italic;font-weight:700;src:url(../../../assets/admin/fonts/Inter-BoldItalic.57acb479.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-BoldItalic.6fbcf86a.woff) format("woff");font-display:swap}.container{margin-right:auto;margin-left:auto}@media screen and (max-width:599px){.container{width:auto;padding-right:20px;padding-left:20px}}@media screen and (min-width:600px)and (max-width:849px){.container{width:auto;padding-right:30px;padding-left:30px}}@media screen and (min-width:850px)and (max-width:1039px){.container{width:auto;padding-right:40px;padding-left:40px}}@media screen and (min-width:1040px)and (max-width:1539px){.container{width:auto;padding-right:50px;padding-left:50px}}@media screen and (min-width:1540px){.container{width:1540px;padding-right:50px;padding-left:50px}}@media screen and (max-width:599px){.container--full{width:auto}}@media screen and (min-width:600px)and (max-width:849px){.container--full{width:auto}}@media screen and (min-width:850px)and (max-width:1039px){.container--full{width:auto}}@media screen and (min-width:1040px)and (max-width:1539px){.container--full{width:auto}}@media screen and (min-width:1540px){.container--full{width:auto}}.buckets .buckets__fieldset .fieldset__content{padding:0}.buckets .buckets__fieldset.buckets__fieldset--1 header{color:#fff;background-color:#7ca4a2}.buckets .buckets__fieldset.buckets__fieldset--2 header{color:#fff;background-color:#70769f}.buckets .buckets__fieldset.buckets__fieldset--3 header{color:#fff;background-color:#e37a75}.buckets .filter__search{width:100%}.buckets .filter__search input{width:100%;min-width:inherit} \ No newline at end of file +.icon--add[data-v-833d5172],.icon--add svg[data-v-833d5172]{width:10px;height:10px}.icon--arrow-external[data-v-833d5172],.icon--arrow-external svg[data-v-833d5172]{width:8px;height:8px}.icon--arrow-sort[data-v-833d5172],.icon--arrow-sort svg[data-v-833d5172]{width:9px;height:11px}.icon--check[data-v-833d5172],.icon--check svg[data-v-833d5172]{width:11px;height:11px}.icon--close_icon[data-v-833d5172],.icon--close_icon svg[data-v-833d5172]{width:10px;height:10px}.icon--close_modal[data-v-833d5172],.icon--close_modal svg[data-v-833d5172]{width:16px;height:16px}.icon--colors[data-v-833d5172],.icon--colors svg[data-v-833d5172]{width:17px;height:17px}.icon--content-editor[data-v-833d5172],.icon--content-editor svg[data-v-833d5172]{width:14px;height:13px}.icon--crop[data-v-833d5172],.icon--crop svg[data-v-833d5172]{width:16px;height:18px}.icon--download[data-v-833d5172],.icon--download svg[data-v-833d5172]{width:12px;height:16px}.icon--drag[data-v-833d5172],.icon--drag svg[data-v-833d5172]{width:8px;height:17px}.icon--dropdown_default[data-v-833d5172],.icon--dropdown_default svg[data-v-833d5172]{width:9px;height:5px}.icon--dropdown_module[data-v-833d5172],.icon--dropdown_module svg[data-v-833d5172]{width:10px;height:6px}.icon--edit[data-v-833d5172],.icon--edit svg[data-v-833d5172]{width:13px;height:13px}.icon--edit_large[data-v-833d5172],.icon--edit_large svg[data-v-833d5172]{width:14px;height:14px}.icon--editor[data-v-833d5172],.icon--editor svg[data-v-833d5172]{width:14px;height:13px}.icon--expand[data-v-833d5172],.icon--expand svg[data-v-833d5172]{width:10px;height:10px}.icon--fix-grid[data-v-833d5172],.icon--fix-grid svg[data-v-833d5172]{width:18px;height:14px}.icon--flex-grid[data-v-833d5172],.icon--flex-grid svg[data-v-833d5172]{width:18px;height:17px}.icon--google-sign-in[data-v-833d5172],.icon--google-sign-in svg[data-v-833d5172]{width:23px;height:24px}.icon--image-text[data-v-833d5172],.icon--image-text svg[data-v-833d5172]{width:30px;height:13px}.icon--image[data-v-833d5172],.icon--image svg[data-v-833d5172]{width:19px;height:15px}.icon--info[data-v-833d5172],.icon--info svg[data-v-833d5172]{width:21px;height:21px}.icon--location[data-v-833d5172],.icon--location svg[data-v-833d5172]{width:12px;height:16px}.icon--media-grid[data-v-833d5172],.icon--media-grid svg[data-v-833d5172]{width:12px;height:12px}.icon--media-list[data-v-833d5172],.icon--media-list svg[data-v-833d5172]{width:16px;height:10px}.icon--more-dots[data-v-833d5172],.icon--more-dots svg[data-v-833d5172]{width:14px;height:4px}.icon--pagination_left[data-v-833d5172],.icon--pagination_left svg[data-v-833d5172]{width:9px;height:15px}.icon--pagination_right[data-v-833d5172],.icon--pagination_right svg[data-v-833d5172]{width:9px;height:15px}.icon--preferences[data-v-833d5172],.icon--preferences svg[data-v-833d5172]{width:26px;height:16px}.icon--preview-desktop[data-v-833d5172],.icon--preview-desktop svg[data-v-833d5172]{width:39px;height:30px}.icon--preview-mobile[data-v-833d5172],.icon--preview-mobile svg[data-v-833d5172]{width:12px;height:18px}.icon--preview-tablet-h[data-v-833d5172],.icon--preview-tablet-h svg[data-v-833d5172]{width:27px;height:20px}.icon--preview-tablet-v[data-v-833d5172],.icon--preview-tablet-v svg[data-v-833d5172]{width:20px;height:27px}.icon--preview[data-v-833d5172],.icon--preview svg[data-v-833d5172]{width:22px;height:14px}.icon--publish[data-v-833d5172],.icon--publish svg[data-v-833d5172]{width:22px;height:15px}.icon--quote[data-v-833d5172],.icon--quote svg[data-v-833d5172]{width:16px;height:13px}.icon--revision-compare[data-v-833d5172],.icon--revision-compare svg[data-v-833d5172]{width:23px;height:16px}.icon--revision-single[data-v-833d5172],.icon--revision-single svg[data-v-833d5172]{width:23px;height:16px}.icon--search[data-v-833d5172],.icon--search svg[data-v-833d5172]{width:20px;height:20px}.icon--slideshow[data-v-833d5172],.icon--slideshow svg[data-v-833d5172]{width:20px;height:16px}.icon--star-feature[data-v-833d5172],.icon--star-feature svg[data-v-833d5172]{width:20px;height:19px}.icon--star-feature_active[data-v-833d5172],.icon--star-feature_active svg[data-v-833d5172]{width:20px;height:19px}.icon--text-2col[data-v-833d5172],.icon--text-2col svg[data-v-833d5172]{width:26px;height:13px}.icon--text[data-v-833d5172],.icon--text svg[data-v-833d5172]{width:17px;height:13px}.icon--trash[data-v-833d5172],.icon--trash svg[data-v-833d5172]{width:15px;height:17px}.icon--video[data-v-833d5172],.icon--video svg[data-v-833d5172]{width:23px;height:23px}.icon--website[data-v-833d5172],.icon--website svg[data-v-833d5172]{width:26px;height:21px}.icon--wysiwyg_anchor[data-v-833d5172],.icon--wysiwyg_anchor svg[data-v-833d5172]{width:18px;height:18px}.icon--wysiwyg_bold[data-v-833d5172],.icon--wysiwyg_bold svg[data-v-833d5172]{width:12px;height:13px}.icon--wysiwyg_header-2 svg[data-v-833d5172],.icon--wysiwyg_header-2[data-v-833d5172]{width:18px;height:18px}.icon--wysiwyg_header-3 svg[data-v-833d5172],.icon--wysiwyg_header-3[data-v-833d5172]{width:18px;height:18px}.icon--wysiwyg_header-4 svg[data-v-833d5172],.icon--wysiwyg_header-4[data-v-833d5172]{width:18px;height:18px}.icon--wysiwyg_header-5 svg[data-v-833d5172],.icon--wysiwyg_header-5[data-v-833d5172]{width:18px;height:18px}.icon--wysiwyg_header-6 svg[data-v-833d5172],.icon--wysiwyg_header-6[data-v-833d5172]{width:18px;height:18px}.icon--wysiwyg_header[data-v-833d5172],.icon--wysiwyg_header svg[data-v-833d5172]{width:18px;height:18px}.icon--wysiwyg_italic[data-v-833d5172],.icon--wysiwyg_italic svg[data-v-833d5172]{width:10px;height:13px}.icon--wysiwyg_link[data-v-833d5172],.icon--wysiwyg_link svg[data-v-833d5172]{width:21px;height:10px}.icon--wysiwyg_underline[data-v-833d5172],.icon--wysiwyg_underline svg[data-v-833d5172]{width:12px;height:13px}.icon--ae[data-v-833d5172],.icon--ae svg[data-v-833d5172]{width:20px;height:26px}.icon--ai[data-v-833d5172],.icon--ai svg[data-v-833d5172]{width:20px;height:26px}.icon--ase[data-v-833d5172],.icon--ase svg[data-v-833d5172]{width:20px;height:26px}.icon--cut[data-v-833d5172],.icon--cut svg[data-v-833d5172]{width:26px;height:21px}.icon--dir[data-v-833d5172],.icon--dir svg[data-v-833d5172]{width:26px;height:21px}.icon--dir_protected[data-v-833d5172],.icon--dir_protected svg[data-v-833d5172]{width:26px;height:21px}.icon--dir_shared[data-v-833d5172],.icon--dir_shared svg[data-v-833d5172]{width:26px;height:21px}.icon--dmg[data-v-833d5172],.icon--dmg svg[data-v-833d5172]{width:20px;height:26px}.icon--doc[data-v-833d5172],.icon--doc svg[data-v-833d5172]{width:20px;height:26px}.icon--eps[data-v-833d5172],.icon--eps svg[data-v-833d5172]{width:20px;height:26px}.icon--fla[data-v-833d5172],.icon--fla svg[data-v-833d5172]{width:20px;height:26px}.icon--fnt[data-v-833d5172],.icon--fnt svg[data-v-833d5172]{width:20px;height:26px}.icon--gen[data-v-833d5172],.icon--gen svg[data-v-833d5172]{width:20px;height:26px}.icon--html[data-v-833d5172],.icon--html svg[data-v-833d5172]{width:20px;height:26px}.icon--img[data-v-833d5172],.icon--img svg[data-v-833d5172]{width:20px;height:26px}.icon--indd[data-v-833d5172],.icon--indd svg[data-v-833d5172]{width:20px;height:26px}.icon--key[data-v-833d5172],.icon--key svg[data-v-833d5172]{width:20px;height:26px}.icon--merlin[data-v-833d5172],.icon--merlin svg[data-v-833d5172]{width:20px;height:26px}.icon--net[data-v-833d5172],.icon--net svg[data-v-833d5172]{width:26px;height:21px}.icon--numbers[data-v-833d5172],.icon--numbers svg[data-v-833d5172]{width:20px;height:26px}.icon--pages[data-v-833d5172],.icon--pages svg[data-v-833d5172]{width:20px;height:26px}.icon--pdf[data-v-833d5172],.icon--pdf svg[data-v-833d5172]{width:20px;height:26px}.icon--ppt[data-v-833d5172],.icon--ppt svg[data-v-833d5172]{width:20px;height:26px}.icon--psd[data-v-833d5172],.icon--psd svg[data-v-833d5172]{width:20px;height:26px}.icon--site[data-v-833d5172],.icon--site svg[data-v-833d5172]{width:26px;height:21px}.icon--slide[data-v-833d5172],.icon--slide svg[data-v-833d5172]{width:20px;height:26px}.icon--snd[data-v-833d5172],.icon--snd svg[data-v-833d5172]{width:20px;height:26px}.icon--sql[data-v-833d5172],.icon--sql svg[data-v-833d5172]{width:20px;height:26px}.icon--swf[data-v-833d5172],.icon--swf svg[data-v-833d5172]{width:20px;height:26px}.icon--txt[data-v-833d5172],.icon--txt svg[data-v-833d5172]{width:20px;height:26px}.icon--vid[data-v-833d5172],.icon--vid svg[data-v-833d5172]{width:20px;height:26px}.icon--xls[data-v-833d5172],.icon--xls svg[data-v-833d5172]{width:20px;height:26px}.icon--zip[data-v-833d5172],.icon--zip svg[data-v-833d5172]{width:20px;height:26px}.container[data-v-833d5172]{margin-right:auto;margin-left:auto}@media screen and (max-width:599px){.container[data-v-833d5172]{width:auto;padding-right:20px;padding-left:20px}}@media screen and (min-width:600px)and (max-width:849px){.container[data-v-833d5172]{width:auto;padding-right:30px;padding-left:30px}}@media screen and (min-width:850px)and (max-width:1039px){.container[data-v-833d5172]{width:auto;padding-right:40px;padding-left:40px}}@media screen and (min-width:1040px)and (max-width:1539px){.container[data-v-833d5172]{width:auto;padding-right:50px;padding-left:50px}}@media screen and (min-width:1540px){.container[data-v-833d5172]{width:1540px;padding-right:50px;padding-left:50px}}@media screen and (max-width:599px){.container--full[data-v-833d5172]{width:auto}}@media screen and (min-width:600px)and (max-width:849px){.container--full[data-v-833d5172]{width:auto}}@media screen and (min-width:850px)and (max-width:1039px){.container--full[data-v-833d5172]{width:auto}}@media screen and (min-width:1040px)and (max-width:1539px){.container--full[data-v-833d5172]{width:auto}}@media screen and (min-width:1540px){.container--full[data-v-833d5172]{width:auto}}.drag__handle[data-v-833d5172]{position:absolute;top:0;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:12px;min-width:12px;height:100%;background-color:#fbfbfb;-webkit-transition:background .25s ease;transition:background .25s ease;cursor:move}.drag__handle[data-v-833d5172]:hover{background-color:#f2f2f2}.drag__handle:hover .drag__handle--drag[data-v-833d5172]:before{background:repeating-linear-gradient(90deg,#f2f2f2,#f2f2f2 2px,transparent 0,transparent 4px)}.drag__handle--drag[data-v-833d5172]{position:relative;width:10px;height:42px;margin-left:auto;margin-right:auto;-webkit-transition:background .25s ease;transition:background .25s ease;cursor:move;background:repeating-linear-gradient(180deg,#bfbfbf,#bfbfbf 2px,transparent 0,transparent 4px)}.drag__handle--drag[data-v-833d5172]:before{position:absolute;display:block;content:"";background:repeating-linear-gradient(90deg,#fbfbfb,#fbfbfb 2px,transparent 0,transparent 4px);width:100%;height:100%}.buckets__itemStarred[data-v-833d5172]{display:block;cursor:pointer;position:relative;top:2px}.buckets__itemStarred .icon[data-v-833d5172]{color:#a6a6a6;display:block;top:-2px;position:relative}.buckets__itemStarred .icon--star-feature_active[data-v-833d5172]{color:#e61414}.buckets__itemStarred .icon--star-feature[data-v-833d5172]{display:block}.buckets__itemStarred .icon--star-feature_active[data-v-833d5172]{display:none}.buckets__itemStarred--active .icon svg[data-v-833d5172]{fill:#e61414}.buckets__itemStarred--active .icon--star-feature[data-v-833d5172]{display:none}.buckets__itemStarred--active .icon--star-feature_active[data-v-833d5172]{display:block}.icon--add[data-v-b767fefa],.icon--add svg[data-v-b767fefa]{width:10px;height:10px}.icon--arrow-external[data-v-b767fefa],.icon--arrow-external svg[data-v-b767fefa]{width:8px;height:8px}.icon--arrow-sort[data-v-b767fefa],.icon--arrow-sort svg[data-v-b767fefa]{width:9px;height:11px}.icon--check[data-v-b767fefa],.icon--check svg[data-v-b767fefa]{width:11px;height:11px}.icon--close_icon[data-v-b767fefa],.icon--close_icon svg[data-v-b767fefa]{width:10px;height:10px}.icon--close_modal[data-v-b767fefa],.icon--close_modal svg[data-v-b767fefa]{width:16px;height:16px}.icon--colors[data-v-b767fefa],.icon--colors svg[data-v-b767fefa]{width:17px;height:17px}.icon--content-editor[data-v-b767fefa],.icon--content-editor svg[data-v-b767fefa]{width:14px;height:13px}.icon--crop[data-v-b767fefa],.icon--crop svg[data-v-b767fefa]{width:16px;height:18px}.icon--download[data-v-b767fefa],.icon--download svg[data-v-b767fefa]{width:12px;height:16px}.icon--drag[data-v-b767fefa],.icon--drag svg[data-v-b767fefa]{width:8px;height:17px}.icon--dropdown_default[data-v-b767fefa],.icon--dropdown_default svg[data-v-b767fefa]{width:9px;height:5px}.icon--dropdown_module[data-v-b767fefa],.icon--dropdown_module svg[data-v-b767fefa]{width:10px;height:6px}.icon--edit[data-v-b767fefa],.icon--edit svg[data-v-b767fefa]{width:13px;height:13px}.icon--edit_large[data-v-b767fefa],.icon--edit_large svg[data-v-b767fefa]{width:14px;height:14px}.icon--editor[data-v-b767fefa],.icon--editor svg[data-v-b767fefa]{width:14px;height:13px}.icon--expand[data-v-b767fefa],.icon--expand svg[data-v-b767fefa]{width:10px;height:10px}.icon--fix-grid[data-v-b767fefa],.icon--fix-grid svg[data-v-b767fefa]{width:18px;height:14px}.icon--flex-grid[data-v-b767fefa],.icon--flex-grid svg[data-v-b767fefa]{width:18px;height:17px}.icon--google-sign-in[data-v-b767fefa],.icon--google-sign-in svg[data-v-b767fefa]{width:23px;height:24px}.icon--image-text[data-v-b767fefa],.icon--image-text svg[data-v-b767fefa]{width:30px;height:13px}.icon--image[data-v-b767fefa],.icon--image svg[data-v-b767fefa]{width:19px;height:15px}.icon--info[data-v-b767fefa],.icon--info svg[data-v-b767fefa]{width:21px;height:21px}.icon--location[data-v-b767fefa],.icon--location svg[data-v-b767fefa]{width:12px;height:16px}.icon--media-grid[data-v-b767fefa],.icon--media-grid svg[data-v-b767fefa]{width:12px;height:12px}.icon--media-list[data-v-b767fefa],.icon--media-list svg[data-v-b767fefa]{width:16px;height:10px}.icon--more-dots[data-v-b767fefa],.icon--more-dots svg[data-v-b767fefa]{width:14px;height:4px}.icon--pagination_left[data-v-b767fefa],.icon--pagination_left svg[data-v-b767fefa]{width:9px;height:15px}.icon--pagination_right[data-v-b767fefa],.icon--pagination_right svg[data-v-b767fefa]{width:9px;height:15px}.icon--preferences[data-v-b767fefa],.icon--preferences svg[data-v-b767fefa]{width:26px;height:16px}.icon--preview-desktop[data-v-b767fefa],.icon--preview-desktop svg[data-v-b767fefa]{width:39px;height:30px}.icon--preview-mobile[data-v-b767fefa],.icon--preview-mobile svg[data-v-b767fefa]{width:12px;height:18px}.icon--preview-tablet-h[data-v-b767fefa],.icon--preview-tablet-h svg[data-v-b767fefa]{width:27px;height:20px}.icon--preview-tablet-v[data-v-b767fefa],.icon--preview-tablet-v svg[data-v-b767fefa]{width:20px;height:27px}.icon--preview[data-v-b767fefa],.icon--preview svg[data-v-b767fefa]{width:22px;height:14px}.icon--publish[data-v-b767fefa],.icon--publish svg[data-v-b767fefa]{width:22px;height:15px}.icon--quote[data-v-b767fefa],.icon--quote svg[data-v-b767fefa]{width:16px;height:13px}.icon--revision-compare[data-v-b767fefa],.icon--revision-compare svg[data-v-b767fefa]{width:23px;height:16px}.icon--revision-single[data-v-b767fefa],.icon--revision-single svg[data-v-b767fefa]{width:23px;height:16px}.icon--search[data-v-b767fefa],.icon--search svg[data-v-b767fefa]{width:20px;height:20px}.icon--slideshow[data-v-b767fefa],.icon--slideshow svg[data-v-b767fefa]{width:20px;height:16px}.icon--star-feature[data-v-b767fefa],.icon--star-feature svg[data-v-b767fefa]{width:20px;height:19px}.icon--star-feature_active[data-v-b767fefa],.icon--star-feature_active svg[data-v-b767fefa]{width:20px;height:19px}.icon--text-2col[data-v-b767fefa],.icon--text-2col svg[data-v-b767fefa]{width:26px;height:13px}.icon--text[data-v-b767fefa],.icon--text svg[data-v-b767fefa]{width:17px;height:13px}.icon--trash[data-v-b767fefa],.icon--trash svg[data-v-b767fefa]{width:15px;height:17px}.icon--video[data-v-b767fefa],.icon--video svg[data-v-b767fefa]{width:23px;height:23px}.icon--website[data-v-b767fefa],.icon--website svg[data-v-b767fefa]{width:26px;height:21px}.icon--wysiwyg_anchor[data-v-b767fefa],.icon--wysiwyg_anchor svg[data-v-b767fefa]{width:18px;height:18px}.icon--wysiwyg_bold[data-v-b767fefa],.icon--wysiwyg_bold svg[data-v-b767fefa]{width:12px;height:13px}.icon--wysiwyg_header-2 svg[data-v-b767fefa],.icon--wysiwyg_header-2[data-v-b767fefa]{width:18px;height:18px}.icon--wysiwyg_header-3 svg[data-v-b767fefa],.icon--wysiwyg_header-3[data-v-b767fefa]{width:18px;height:18px}.icon--wysiwyg_header-4 svg[data-v-b767fefa],.icon--wysiwyg_header-4[data-v-b767fefa]{width:18px;height:18px}.icon--wysiwyg_header-5 svg[data-v-b767fefa],.icon--wysiwyg_header-5[data-v-b767fefa]{width:18px;height:18px}.icon--wysiwyg_header-6 svg[data-v-b767fefa],.icon--wysiwyg_header-6[data-v-b767fefa]{width:18px;height:18px}.icon--wysiwyg_header[data-v-b767fefa],.icon--wysiwyg_header svg[data-v-b767fefa]{width:18px;height:18px}.icon--wysiwyg_italic[data-v-b767fefa],.icon--wysiwyg_italic svg[data-v-b767fefa]{width:10px;height:13px}.icon--wysiwyg_link[data-v-b767fefa],.icon--wysiwyg_link svg[data-v-b767fefa]{width:21px;height:10px}.icon--wysiwyg_underline[data-v-b767fefa],.icon--wysiwyg_underline svg[data-v-b767fefa]{width:12px;height:13px}.icon--ae[data-v-b767fefa],.icon--ae svg[data-v-b767fefa]{width:20px;height:26px}.icon--ai[data-v-b767fefa],.icon--ai svg[data-v-b767fefa]{width:20px;height:26px}.icon--ase[data-v-b767fefa],.icon--ase svg[data-v-b767fefa]{width:20px;height:26px}.icon--cut[data-v-b767fefa],.icon--cut svg[data-v-b767fefa]{width:26px;height:21px}.icon--dir[data-v-b767fefa],.icon--dir svg[data-v-b767fefa]{width:26px;height:21px}.icon--dir_protected[data-v-b767fefa],.icon--dir_protected svg[data-v-b767fefa]{width:26px;height:21px}.icon--dir_shared[data-v-b767fefa],.icon--dir_shared svg[data-v-b767fefa]{width:26px;height:21px}.icon--dmg[data-v-b767fefa],.icon--dmg svg[data-v-b767fefa]{width:20px;height:26px}.icon--doc[data-v-b767fefa],.icon--doc svg[data-v-b767fefa]{width:20px;height:26px}.icon--eps[data-v-b767fefa],.icon--eps svg[data-v-b767fefa]{width:20px;height:26px}.icon--fla[data-v-b767fefa],.icon--fla svg[data-v-b767fefa]{width:20px;height:26px}.icon--fnt[data-v-b767fefa],.icon--fnt svg[data-v-b767fefa]{width:20px;height:26px}.icon--gen[data-v-b767fefa],.icon--gen svg[data-v-b767fefa]{width:20px;height:26px}.icon--html[data-v-b767fefa],.icon--html svg[data-v-b767fefa]{width:20px;height:26px}.icon--img[data-v-b767fefa],.icon--img svg[data-v-b767fefa]{width:20px;height:26px}.icon--indd[data-v-b767fefa],.icon--indd svg[data-v-b767fefa]{width:20px;height:26px}.icon--key[data-v-b767fefa],.icon--key svg[data-v-b767fefa]{width:20px;height:26px}.icon--merlin[data-v-b767fefa],.icon--merlin svg[data-v-b767fefa]{width:20px;height:26px}.icon--net[data-v-b767fefa],.icon--net svg[data-v-b767fefa]{width:26px;height:21px}.icon--numbers[data-v-b767fefa],.icon--numbers svg[data-v-b767fefa]{width:20px;height:26px}.icon--pages[data-v-b767fefa],.icon--pages svg[data-v-b767fefa]{width:20px;height:26px}.icon--pdf[data-v-b767fefa],.icon--pdf svg[data-v-b767fefa]{width:20px;height:26px}.icon--ppt[data-v-b767fefa],.icon--ppt svg[data-v-b767fefa]{width:20px;height:26px}.icon--psd[data-v-b767fefa],.icon--psd svg[data-v-b767fefa]{width:20px;height:26px}.icon--site[data-v-b767fefa],.icon--site svg[data-v-b767fefa]{width:26px;height:21px}.icon--slide[data-v-b767fefa],.icon--slide svg[data-v-b767fefa]{width:20px;height:26px}.icon--snd[data-v-b767fefa],.icon--snd svg[data-v-b767fefa]{width:20px;height:26px}.icon--sql[data-v-b767fefa],.icon--sql svg[data-v-b767fefa]{width:20px;height:26px}.icon--swf[data-v-b767fefa],.icon--swf svg[data-v-b767fefa]{width:20px;height:26px}.icon--txt[data-v-b767fefa],.icon--txt svg[data-v-b767fefa]{width:20px;height:26px}.icon--vid[data-v-b767fefa],.icon--vid svg[data-v-b767fefa]{width:20px;height:26px}.icon--xls[data-v-b767fefa],.icon--xls svg[data-v-b767fefa]{width:20px;height:26px}.icon--zip[data-v-b767fefa],.icon--zip svg[data-v-b767fefa]{width:20px;height:26px}.container[data-v-b767fefa]{margin-right:auto;margin-left:auto}@media screen and (max-width:599px){.container[data-v-b767fefa]{width:auto;padding-right:20px;padding-left:20px}}@media screen and (min-width:600px)and (max-width:849px){.container[data-v-b767fefa]{width:auto;padding-right:30px;padding-left:30px}}@media screen and (min-width:850px)and (max-width:1039px){.container[data-v-b767fefa]{width:auto;padding-right:40px;padding-left:40px}}@media screen and (min-width:1040px)and (max-width:1539px){.container[data-v-b767fefa]{width:auto;padding-right:50px;padding-left:50px}}@media screen and (min-width:1540px){.container[data-v-b767fefa]{width:1540px;padding-right:50px;padding-left:50px}}@media screen and (max-width:599px){.container--full[data-v-b767fefa]{width:auto}}@media screen and (min-width:600px)and (max-width:849px){.container--full[data-v-b767fefa]{width:auto}}@media screen and (min-width:850px)and (max-width:1039px){.container--full[data-v-b767fefa]{width:auto}}@media screen and (min-width:1040px)and (max-width:1539px){.container--full[data-v-b767fefa]{width:auto}}@media screen and (min-width:1540px){.container--full[data-v-b767fefa]{width:auto}}.buckets[data-v-b767fefa]{padding-bottom:80px}.buckets__page-title[data-v-b767fefa]{margin-bottom:20px;background-color:#f2f2f2;border-bottom:1px solid #e5e5e5;overflow:hidden}.buckets__page-title-content[data-v-b767fefa]{padding-top:30px;padding-bottom:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.buckets__page-title-actions[data-v-b767fefa]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.buckets__page-title-actions a[data-v-b767fefa],.buckets__page-title-actions button[data-v-b767fefa]{margin-left:20px;vertical-align:middle}.buckets__fieldset__header[data-v-b767fefa]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.buckets__fieldset__header .buckets__number[data-v-b767fefa]{margin-right:10px}.buckets__fieldset__header .buckets__size-infos[data-v-b767fefa]{font-size:11px;letter-spacing:0;text-align:right;float:right}.buckets__header[data-v-b767fefa]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 15px;height:80px;background-color:#fbfbfb;border-bottom:1px solid #f2f2f2}.buckets__header .buckets__sources[data-v-b767fefa]{-webkit-box-flex:2;-ms-flex-positive:2;flex-grow:2}.buckets__header .buckets__sources .sources__select[data-v-b767fefa]{margin-top:-35px}.buckets__header .buckets__filter[data-v-b767fefa]{margin-left:15px}.buckets__list[data-v-b767fefa]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex}.buckets__list tbody[data-v-b767fefa]{width:100%}.buckets__empty[data-v-b767fefa]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:80px;padding:15px 20px}.buckets__empty h4[data-v-b767fefa]{color:#8c8c8c}.buckets__item{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:80px;padding:0 15px;border-top:1px solid #f2f2f2}.buckets__item td{padding-top:15px;padding-bottom:15px}.buckets__item:hover{background-color:#fbfbfb}.buckets__item:first-child{border-top:0 none}@media screen and (max-width:599px){.buckets__item .buckets__itemThumbnail{display:none}}.buckets__item .buckets__itemThumbnail img{display:block;width:50px;min-width:50px;min-height:50px;height:auto;background:#f2f2f2}.buckets__item .buckets__itemTitle{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:0 30px 0 15px;overflow:hidden}.buckets__item .buckets__itemTitle h4{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.buckets__item .buckets__itemTitle h4 a :not(.tag){color:#3278b8}@media screen and (max-width:599px){.buckets__item .buckets__itemTitle{margin-left:0}}@media screen and (min-width:1440px){.buckets__item .buckets__itemTitle{margin-right:80px}}.buckets__item .buckets__itemTitle .f--link-underlined--o a{color:#3278b8;text-decoration:none}@media screen and (min-width:850px)and (max-width:1039px){.buckets__item .buckets__itemDate{display:none}}.buckets__item .buckets__itemContentType,.buckets__item .buckets__itemDate{margin-right:25px;color:#8c8c8c}@media screen and (max-width:599px){.buckets__item .buckets__itemContentType,.buckets__item .buckets__itemDate{display:none}}@media screen and (min-width:850px)and (max-width:1039px){.buckets__item .buckets__itemContentType,.buckets__item .buckets__itemDate{margin-right:15px}}@media screen and (min-width:1040px)and (max-width:1539px){.buckets__item .buckets__itemContentType,.buckets__item .buckets__itemDate{margin-right:40px}}@media screen and (min-width:1440px){.buckets__item .buckets__itemContentType,.buckets__item .buckets__itemDate{margin-right:80px}}.buckets__item .buckets__itemOptions{display:-webkit-box;display:-ms-flexbox;display:flex}.buckets__item .buckets__itemOptions .item__dropdown .item__dropdown__content{min-width:250px}.buckets__item .buckets__itemOptions .item__dropdown .item__dropdown__content .radioGroup__item:hover{background-color:#f2f2f2}.buckets__item .buckets__itemOptions .button--add:disabled{opacity:.3}.buckets__item .buckets__itemOptions .bucket__action{font-size:11px;letter-spacing:0;line-height:25px;margin-right:15px}.buckets__item .buckets__itemOptions .bucket__action:last-child{margin-right:0}.buckets__item .buckets__itemOptions .bucket__action.selected{opacity:.4}.buckets__item.single.selected>*{opacity:.4}.buckets__item.draggable{padding-left:27px}.icon--add,.icon--add svg{width:10px;height:10px}.icon--arrow-external,.icon--arrow-external svg{width:8px;height:8px}.icon--arrow-sort,.icon--arrow-sort svg{width:9px;height:11px}.icon--check,.icon--check svg{width:11px;height:11px}.icon--close_icon,.icon--close_icon svg{width:10px;height:10px}.icon--close_modal,.icon--close_modal svg{width:16px;height:16px}.icon--colors,.icon--colors svg{width:17px;height:17px}.icon--content-editor,.icon--content-editor svg{width:14px;height:13px}.icon--crop,.icon--crop svg{width:16px;height:18px}.icon--download,.icon--download svg{width:12px;height:16px}.icon--drag,.icon--drag svg{width:8px;height:17px}.icon--dropdown_default,.icon--dropdown_default svg{width:9px;height:5px}.icon--dropdown_module,.icon--dropdown_module svg{width:10px;height:6px}.icon--edit,.icon--edit svg{width:13px;height:13px}.icon--edit_large,.icon--edit_large svg{width:14px;height:14px}.icon--editor,.icon--editor svg{width:14px;height:13px}.icon--expand,.icon--expand svg{width:10px;height:10px}.icon--fix-grid,.icon--fix-grid svg{width:18px;height:14px}.icon--flex-grid,.icon--flex-grid svg{width:18px;height:17px}.icon--google-sign-in,.icon--google-sign-in svg{width:23px;height:24px}.icon--image-text,.icon--image-text svg{width:30px;height:13px}.icon--image,.icon--image svg{width:19px;height:15px}.icon--info,.icon--info svg{width:21px;height:21px}.icon--location,.icon--location svg{width:12px;height:16px}.icon--media-grid,.icon--media-grid svg{width:12px;height:12px}.icon--media-list,.icon--media-list svg{width:16px;height:10px}.icon--more-dots,.icon--more-dots svg{width:14px;height:4px}.icon--pagination_left,.icon--pagination_left svg,.icon--pagination_right,.icon--pagination_right svg{width:9px;height:15px}.icon--preferences,.icon--preferences svg{width:26px;height:16px}.icon--preview-desktop,.icon--preview-desktop svg{width:39px;height:30px}.icon--preview-mobile,.icon--preview-mobile svg{width:12px;height:18px}.icon--preview-tablet-h,.icon--preview-tablet-h svg{width:27px;height:20px}.icon--preview-tablet-v,.icon--preview-tablet-v svg{width:20px;height:27px}.icon--preview,.icon--preview svg{width:22px;height:14px}.icon--publish,.icon--publish svg{width:22px;height:15px}.icon--quote,.icon--quote svg{width:16px;height:13px}.icon--revision-compare,.icon--revision-compare svg,.icon--revision-single,.icon--revision-single svg{width:23px;height:16px}.icon--search,.icon--search svg{width:20px;height:20px}.icon--slideshow,.icon--slideshow svg{width:20px;height:16px}.icon--star-feature,.icon--star-feature_active,.icon--star-feature_active svg,.icon--star-feature svg{width:20px;height:19px}.icon--text-2col,.icon--text-2col svg{width:26px;height:13px}.icon--text,.icon--text svg{width:17px;height:13px}.icon--trash,.icon--trash svg{width:15px;height:17px}.icon--video,.icon--video svg{width:23px;height:23px}.icon--website,.icon--website svg{width:26px;height:21px}.icon--wysiwyg_anchor,.icon--wysiwyg_anchor svg{width:18px;height:18px}.icon--wysiwyg_bold,.icon--wysiwyg_bold svg{width:12px;height:13px}.icon--wysiwyg_header,.icon--wysiwyg_header-2,.icon--wysiwyg_header-2 svg,.icon--wysiwyg_header-3,.icon--wysiwyg_header-3 svg,.icon--wysiwyg_header-4,.icon--wysiwyg_header-4 svg,.icon--wysiwyg_header-5,.icon--wysiwyg_header-5 svg,.icon--wysiwyg_header-6,.icon--wysiwyg_header-6 svg,.icon--wysiwyg_header svg{width:18px;height:18px}.icon--wysiwyg_italic,.icon--wysiwyg_italic svg{width:10px;height:13px}.icon--wysiwyg_link,.icon--wysiwyg_link svg{width:21px;height:10px}.icon--wysiwyg_underline,.icon--wysiwyg_underline svg{width:12px;height:13px}.icon--ae,.icon--ae svg,.icon--ai,.icon--ai svg,.icon--ase,.icon--ase svg{width:20px;height:26px}.icon--cut,.icon--cut svg,.icon--dir,.icon--dir_protected,.icon--dir_protected svg,.icon--dir_shared,.icon--dir_shared svg,.icon--dir svg{width:26px;height:21px}.icon--dmg,.icon--dmg svg,.icon--doc,.icon--doc svg,.icon--eps,.icon--eps svg,.icon--fla,.icon--fla svg,.icon--fnt,.icon--fnt svg,.icon--gen,.icon--gen svg,.icon--html,.icon--html svg,.icon--img,.icon--img svg,.icon--indd,.icon--indd svg,.icon--key,.icon--key svg,.icon--merlin,.icon--merlin svg{width:20px;height:26px}.icon--net,.icon--net svg{width:26px;height:21px}.icon--numbers,.icon--numbers svg,.icon--pages,.icon--pages svg,.icon--pdf,.icon--pdf svg,.icon--ppt,.icon--ppt svg,.icon--psd,.icon--psd svg{width:20px;height:26px}.icon--site,.icon--site svg{width:26px;height:21px}.icon--slide,.icon--slide svg,.icon--snd,.icon--snd svg,.icon--sql,.icon--sql svg,.icon--swf,.icon--swf svg,.icon--txt,.icon--txt svg,.icon--vid,.icon--vid svg,.icon--xls,.icon--xls svg,.icon--zip,.icon--zip svg{width:20px;height:26px}@font-face{font-family:Inter;font-style:normal;font-weight:400;src:url(../../../assets/admin/fonts/Inter-Regular.bffaed79.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-Regular.aebfbb3c.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:italic;font-weight:400;src:url(../../../assets/admin/fonts/Inter-Italic.381444ec.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-Italic.35cf8109.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:normal;font-weight:600;src:url(../../../assets/admin/fonts/Inter-Medium.2e5e0884.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-Medium.c09fb389.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:italic;font-weight:600;src:url(../../../assets/admin/fonts/Inter-MediumItalic.7a7fd735.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-MediumItalic.ad6e093c.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:normal;font-weight:700;src:url(../../../assets/admin/fonts/Inter-Bold.34356f6b.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-Bold.61c493e3.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:italic;font-weight:700;src:url(../../../assets/admin/fonts/Inter-BoldItalic.57acb479.woff2) format("woff2"),url(../../../assets/admin/fonts/Inter-BoldItalic.6fbcf86a.woff) format("woff");font-display:swap}.container{margin-right:auto;margin-left:auto}@media screen and (max-width:599px){.container{width:auto;padding-right:20px;padding-left:20px}}@media screen and (min-width:600px)and (max-width:849px){.container{width:auto;padding-right:30px;padding-left:30px}}@media screen and (min-width:850px)and (max-width:1039px){.container{width:auto;padding-right:40px;padding-left:40px}}@media screen and (min-width:1040px)and (max-width:1539px){.container{width:auto;padding-right:50px;padding-left:50px}}@media screen and (min-width:1540px){.container{width:1540px;padding-right:50px;padding-left:50px}}@media screen and (max-width:599px){.container--full{width:auto}}@media screen and (min-width:600px)and (max-width:849px){.container--full{width:auto}}@media screen and (min-width:850px)and (max-width:1039px){.container--full{width:auto}}@media screen and (min-width:1040px)and (max-width:1539px){.container--full{width:auto}}@media screen and (min-width:1540px){.container--full{width:auto}}.buckets .buckets__fieldset .fieldset__content{padding:0}.buckets .buckets__fieldset.buckets__fieldset--1 header{color:#fff;background-color:#7ca4a2}.buckets .buckets__fieldset.buckets__fieldset--2 header{color:#fff;background-color:#70769f}.buckets .buckets__fieldset.buckets__fieldset--3 header{color:#fff;background-color:#e37a75}.buckets .filter__search{width:100%}.buckets .filter__search input{width:100%;min-width:inherit} \ No newline at end of file diff --git a/public/assets/admin/twill-manifest.json b/public/assets/admin/twill-manifest.json index 9f2c872b..f8d28905 100644 --- a/public/assets/admin/twill-manifest.json +++ b/public/assets/admin/twill-manifest.json @@ -11,20 +11,20 @@ "Inter-MediumItalic.woff2": "/assets/admin/fonts/Inter-MediumItalic.7a7fd735.woff2", "Inter-Regular.woff": "/assets/admin/fonts/Inter-Regular.aebfbb3c.woff", "Inter-Regular.woff2": "/assets/admin/fonts/Inter-Regular.bffaed79.woff2", - "chunk-common.css": "/assets/admin/css/chunk-common.f96d24c0.css", - "chunk-common.js": "/assets/admin/js/chunk-common.b6c4ec97.js", + "chunk-common.css": "/assets/admin/css/chunk-common.ad859a53.css", + "chunk-common.js": "/assets/admin/js/chunk-common.9c604bd6.js", "chunk-vendors.css": "/assets/admin/css/chunk-vendors.e0f3ef32.css", - "chunk-vendors.js": "/assets/admin/js/chunk-vendors.aa8e5164.js", + "chunk-vendors.js": "/assets/admin/js/chunk-vendors.750de529.js", "icons-files.svg": "/assets/admin/icons/icons-files.3cdbddfb2725088d.svg", "icons-wysiwyg.svg": "/assets/admin/icons/icons-wysiwyg.63f0e2d625dc615e.svg", - "icons.svg": "/assets/admin/icons/icons.2ee8758aafe79e18.svg", + "icons.svg": "/assets/admin/icons/icons.0ee79e71b68bc72f.svg", "main-buckets.css": "/assets/admin/css/main-buckets.b3760912.css", - "main-buckets.js": "/assets/admin/js/main-buckets.35c291fc.js", - "main-dashboard.css": "/assets/admin/css/main-dashboard.27f5455a.css", - "main-dashboard.js": "/assets/admin/js/main-dashboard.aaca0931.js", - "main-form.css": "/assets/admin/css/main-form.96525dd9.css", - "main-form.js": "/assets/admin/js/main-form.39aa8e28.js", - "main-free.js": "/assets/admin/js/main-free.6761fc8a.js", - "main-listing.css": "/assets/admin/css/main-listing.77e7845a.css", - "main-listing.js": "/assets/admin/js/main-listing.f521581b.js" + "main-buckets.js": "/assets/admin/js/main-buckets.37495295.js", + "main-dashboard.css": "/assets/admin/css/main-dashboard.7e178125.css", + "main-dashboard.js": "/assets/admin/js/main-dashboard.361826d7.js", + "main-form.css": "/assets/admin/css/main-form.34549069.css", + "main-form.js": "/assets/admin/js/main-form.24eae687.js", + "main-free.js": "/assets/admin/js/main-free.75070804.js", + "main-listing.css": "/assets/admin/css/main-listing.32e2c205.css", + "main-listing.js": "/assets/admin/js/main-listing.43aa6674.js" } \ No newline at end of file