From ca7944b17a29e8765656d30132deec7b56de1437 Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Sat, 1 May 2021 17:45:09 +0200 Subject: [PATCH 01/42] unit test github action --- .github/workflows/unit-testing.yml | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/unit-testing.yml diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml new file mode 100644 index 00000000..40732ecb --- /dev/null +++ b/.github/workflows/unit-testing.yml @@ -0,0 +1,37 @@ +name: Tests + +on: [push, pull_request] + +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: true + matrix: + os: [ubuntu-latest, windows-latest] + php: [7.4] + stability: [prefer-stable] + + name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: ctype, json, exif, dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo + coverage: none + + - name: Setup problem matchers + run: | + echo "::add-matcher::${{ runner.tool_cache }}/php.json" + echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" + + - name: Install dependencies + run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction + + - name: Run tests + run: vendor/bin/phpunit From 75e51c3f105f367d83ca2fbed8d82bd824582418 Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Sat, 1 May 2021 17:48:57 +0200 Subject: [PATCH 02/42] unit test github action --- .github/workflows/unit-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml index 40732ecb..115a5e29 100644 --- a/.github/workflows/unit-testing.yml +++ b/.github/workflows/unit-testing.yml @@ -1,4 +1,4 @@ -name: Tests +name: Unit Testing on: [push, pull_request] From 04fa824d162165ae5fa752c7b91ad6250f4e5e3b Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Sat, 1 May 2021 17:50:15 +0200 Subject: [PATCH 03/42] default test --- tests/Unit/ExampleTest.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/Unit/ExampleTest.php diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php new file mode 100644 index 00000000..25e8535d --- /dev/null +++ b/tests/Unit/ExampleTest.php @@ -0,0 +1,18 @@ +assertTrue(true); + } +} \ No newline at end of file From 4613c72412bc70873be0f89a7a17eb0e5eeac360 Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Sat, 1 May 2021 18:02:42 +0200 Subject: [PATCH 04/42] unit testing on push/pr into master, oasis branch --- .github/workflows/unit-testing.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml index 115a5e29..0dbb99a9 100644 --- a/.github/workflows/unit-testing.yml +++ b/.github/workflows/unit-testing.yml @@ -1,6 +1,10 @@ name: Unit Testing -on: [push, pull_request] +on: + push: + branches: [ master, oasis ] + pull_request: + branches: [ master, oasis ] jobs: test: From 33a65b1c77968cc24df383404570abc018fb6c80 Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Sat, 1 May 2021 18:10:17 +0200 Subject: [PATCH 05/42] die windows --- .github/workflows/unit-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml index 0dbb99a9..eab837fa 100644 --- a/.github/workflows/unit-testing.yml +++ b/.github/workflows/unit-testing.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] php: [7.4] stability: [prefer-stable] From 856d3b6aa11e06b89b34a6a15c1a4beb48a4a9af Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Sun, 2 May 2021 08:50:04 +0200 Subject: [PATCH 06/42] Update README.md added unit test badge --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bf6fa1d7..246054eb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ [![Frontend Build](https://github.com/MakingCG/vuefilemanager/actions/workflows/build.yml/badge.svg)](https://github.com/MakingCG/vuefilemanager/actions/workflows/build.yml) +[![Unit Testing](https://github.com/MakingCG/vuefilemanager/actions/workflows/unit-testing.yml/badge.svg)](https://github.com/MakingCG/vuefilemanager/actions/workflows/unit-testing.yml) ![logo](https://vuefilemanager.com/assets/images/vuefilemanager-horizontal-logo.svg) # Private Cloud Storage Build on Laravel & Vue.js From 583d65a1da8bcd7b8237a5ef838cf3fb4bddd788 Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Sun, 2 May 2021 16:23:06 +0200 Subject: [PATCH 07/42] php 8 support --- .github/workflows/unit-testing.yml | 2 +- composer.json | 7 +- composer.lock | 2208 +++++++++++++++------------- 3 files changed, 1172 insertions(+), 1045 deletions(-) diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml index eab837fa..df0c48cd 100644 --- a/.github/workflows/unit-testing.yml +++ b/.github/workflows/unit-testing.yml @@ -13,7 +13,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [7.4] + php: [8.0] stability: [prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index fa0a5933..7133aa86 100644 --- a/composer.json +++ b/composer.json @@ -8,7 +8,7 @@ ], "license": "MIT", "require": { - "php": "^7.3", + "php": "^8.0", "ext-json": "*", "brianium/paratest": "^6.2", "cartalyst/stripe-laravel": "^13.1", @@ -37,11 +37,10 @@ "ext-json": "*", "barryvdh/laravel-ide-helper": "^2.9", "facade/ignition": "^2.5.14", - "fzaninotto/faker": "^1.9.2", + "fakerphp/faker": "^1.14.1", "mockery/mockery": "^1.4.3", "nunomaduro/collision": "^5.3.0", - "phpunit/phpunit": "^9.5.2", - "supliu/laravel-query-monitor": "^1.0.2" + "phpunit/phpunit": "^9.5.2" }, "config": { "optimize-autoloader": true, diff --git a/composer.lock b/composer.lock index 595a5eaf..6dd903b2 100644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "9f5e15952b896c9ce6cc02446db751cb", + "content-hash": "42886207eb10fdc36957ec6566bfafa8", "packages": [ { "name": "asm89/stack-cors", - "version": "v2.0.2", + "version": "v2.0.3", "source": { "type": "git", "url": "https://github.com/asm89/stack-cors.git", - "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa" + "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa", - "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714", + "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714", "shasum": "" }, "require": { @@ -56,20 +56,24 @@ "cors", "stack" ], - "time": "2020-10-29T16:03:21+00:00" + "support": { + "issues": "https://github.com/asm89/stack-cors/issues", + "source": "https://github.com/asm89/stack-cors/tree/v2.0.3" + }, + "time": "2021-03-11T06:42:03+00:00" }, { "name": "aws/aws-sdk-php", - "version": "3.173.21", + "version": "3.179.2", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "914c68fb45bd4d1141d6c48ca9c88e0e9f426611" + "reference": "7d3490e35878d0884905fa0c1ab43ecf178c8d9b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/914c68fb45bd4d1141d6c48ca9c88e0e9f426611", - "reference": "914c68fb45bd4d1141d6c48ca9c88e0e9f426611", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/7d3490e35878d0884905fa0c1ab43ecf178c8d9b", + "reference": "7d3490e35878d0884905fa0c1ab43ecf178c8d9b", "shasum": "" }, "require": { @@ -141,7 +145,12 @@ "s3", "sdk" ], - "time": "2021-03-03T19:19:53+00:00" + "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.179.2" + }, + "time": "2021-04-30T19:46:52+00:00" }, { "name": "bacon/bacon-qr-code", @@ -190,20 +199,24 @@ ], "description": "BaconQrCode is a QR code generator for PHP.", "homepage": "https://github.com/Bacon/BaconQrCode", + "support": { + "issues": "https://github.com/Bacon/BaconQrCode/issues", + "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.3" + }, "time": "2020-10-30T02:02:47+00:00" }, { "name": "brianium/paratest", - "version": "v6.2.0", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/paratestphp/paratest.git", - "reference": "9a94366983ce32c7724fc92e3b544327d4adb9be" + "reference": "268d5b2b4237c0abf76c4aa9633ad8580be01e1e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paratestphp/paratest/zipball/9a94366983ce32c7724fc92e3b544327d4adb9be", - "reference": "9a94366983ce32c7724fc92e3b544327d4adb9be", + "url": "https://api.github.com/repos/paratestphp/paratest/zipball/268d5b2b4237c0abf76c4aa9633ad8580be01e1e", + "reference": "268d5b2b4237c0abf76c4aa9633ad8580be01e1e", "shasum": "" }, "require": { @@ -212,28 +225,28 @@ "ext-reflection": "*", "ext-simplexml": "*", "php": "^7.3 || ^8.0", - "phpunit/php-code-coverage": "^9.2.5", + "phpunit/php-code-coverage": "^9.2.6", "phpunit/php-file-iterator": "^3.0.5", "phpunit/php-timer": "^5.0.3", - "phpunit/phpunit": "^9.5.1", + "phpunit/phpunit": "^9.5.4", "sebastian/environment": "^5.1.3", - "symfony/console": "^4.4 || ^5.2", - "symfony/process": "^4.4 || ^5.2" + "symfony/console": "^4.4.21 || ^5.2.6", + "symfony/process": "^4.4.21 || ^5.2.4" }, "require-dev": { - "doctrine/coding-standard": "^8.2.0", - "ekino/phpstan-banned-code": "^0.3.1", + "doctrine/coding-standard": "^9.0.0", + "ekino/phpstan-banned-code": "^0.4.0", "ergebnis/phpstan-rules": "^0.15.3", "ext-posix": "*", - "infection/infection": "^0.20.2", - "phpstan/phpstan": "^0.12.70", + "infection/infection": "^0.21.5", + "phpstan/phpstan": "^0.12.84", "phpstan/phpstan-deprecation-rules": "^0.12.6", - "phpstan/phpstan-phpunit": "^0.12.17", + "phpstan/phpstan-phpunit": "^0.12.18", "phpstan/phpstan-strict-rules": "^0.12.9", - "squizlabs/php_codesniffer": "^3.5.8", - "symfony/filesystem": "^5.2.2", + "squizlabs/php_codesniffer": "^3.6.0", + "symfony/filesystem": "^5.2.6", "thecodingmachine/phpstan-strict-rules": "^0.12.1", - "vimeo/psalm": "^4.4.1" + "vimeo/psalm": "^4.7.1" }, "bin": [ "bin/paratest" @@ -254,8 +267,12 @@ { "name": "Brian Scaturro", "email": "scaturrob@gmail.com", - "homepage": "http://brianscaturro.com", - "role": "Lead" + "role": "Developer" + }, + { + "name": "Filippo Tessarotto", + "email": "zoeslam@gmail.com", + "role": "Developer" } ], "description": "Parallel testing for PHP", @@ -266,7 +283,21 @@ "phpunit", "testing" ], - "time": "2021-01-29T15:25:31+00:00" + "support": { + "issues": "https://github.com/paratestphp/paratest/issues", + "source": "https://github.com/paratestphp/paratest/tree/v6.3.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/Slamdunk", + "type": "github" + }, + { + "url": "https://paypal.me/filippotessarotto", + "type": "paypal" + } + ], + "time": "2021-04-27T09:24:27+00:00" }, { "name": "brick/math", @@ -312,6 +343,10 @@ "brick", "math" ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.9.2" + }, "funding": [ { "url": "https://tidelift.com/funding/github/packagist/brick/math", @@ -322,16 +357,16 @@ }, { "name": "cartalyst/stripe", - "version": "v2.4.4", + "version": "v2.4.5", "source": { "type": "git", "url": "https://github.com/cartalyst/stripe.git", - "reference": "f07e9f35effa5fe7aa27e0f7a87dce52e37b8fdf" + "reference": "b92a19ecebab5c2e0d4efff0f662f479812d56d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cartalyst/stripe/zipball/f07e9f35effa5fe7aa27e0f7a87dce52e37b8fdf", - "reference": "f07e9f35effa5fe7aa27e0f7a87dce52e37b8fdf", + "url": "https://api.github.com/repos/cartalyst/stripe/zipball/b92a19ecebab5c2e0d4efff0f662f479812d56d1", + "reference": "b92a19ecebab5c2e0d4efff0f662f479812d56d1", "shasum": "" }, "require": { @@ -371,7 +406,11 @@ "php", "stripe" ], - "time": "2021-02-18T12:04:45+00:00" + "support": { + "issues": "https://github.com/cartalyst/stripe/issues", + "source": "https://github.com/cartalyst/stripe/tree/v2.4.5" + }, + "time": "2021-04-15T16:21:32+00:00" }, { "name": "cartalyst/stripe-laravel", @@ -434,6 +473,10 @@ "php", "stripe" ], + "support": { + "issues": "https://github.com/cartalyst/stripe-laravel/issues", + "source": "https://github.com/cartalyst/stripe-laravel/tree/v13.1.0" + }, "time": "2020-12-23T13:33:41+00:00" }, { @@ -496,6 +539,11 @@ "validation", "versioning" ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.2.4" + }, "funding": [ { "url": "https://packagist.com", @@ -514,16 +562,16 @@ }, { "name": "composer/xdebug-handler", - "version": "1.4.5", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "f28d44c286812c714741478d968104c5e604a1d4" + "reference": "31d57697eb1971712a08031cfaff5a846d10bdf5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4", - "reference": "f28d44c286812c714741478d968104c5e604a1d4", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/31d57697eb1971712a08031cfaff5a846d10bdf5", + "reference": "31d57697eb1971712a08031cfaff5a846d10bdf5", "shasum": "" }, "require": { @@ -531,7 +579,8 @@ "psr/log": "^1.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8" + "phpstan/phpstan": "^0.12.55", + "symfony/phpunit-bridge": "^4.2 || ^5" }, "type": "library", "autoload": { @@ -554,6 +603,11 @@ "Xdebug", "performance" ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/2.0.0" + }, "funding": [ { "url": "https://packagist.com", @@ -568,7 +622,7 @@ "type": "tidelift" } ], - "time": "2020-11-13T08:04:11+00:00" + "time": "2021-04-09T19:40:06+00:00" }, { "name": "dasprid/enum", @@ -611,41 +665,12 @@ "enum", "map" ], + "support": { + "issues": "https://github.com/DASPRiD/Enum/issues", + "source": "https://github.com/DASPRiD/Enum/tree/1.0.3" + }, "time": "2020-10-02T16:03:48+00:00" }, - { - "name": "dnoegel/php-xdg-base-dir", - "version": "v0.1.1", - "source": { - "type": "git", - "url": "https://github.com/dnoegel/php-xdg-base-dir.git", - "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", - "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", - "shasum": "" - }, - "require": { - "php": ">=5.3.2" - }, - "require-dev": { - "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35" - }, - "type": "library", - "autoload": { - "psr-4": { - "XdgBaseDir\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "implementation of xdg base directory specification for php", - "time": "2019-12-04T15:06:13+00:00" - }, { "name": "doctrine/annotations", "version": "1.12.1", @@ -718,40 +743,39 @@ }, { "name": "doctrine/cache", - "version": "1.10.2", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "13e3381b25847283a91948d04640543941309727" + "reference": "a9c1b59eba5a08ca2770a76eddb88922f504e8e0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727", - "reference": "13e3381b25847283a91948d04640543941309727", + "url": "https://api.github.com/repos/doctrine/cache/zipball/a9c1b59eba5a08ca2770a76eddb88922f504e8e0", + "reference": "a9c1b59eba5a08ca2770a76eddb88922f504e8e0", "shasum": "" }, "require": { "php": "~7.1 || ^8.0" }, "conflict": { - "doctrine/common": ">2.2,<2.4" + "doctrine/common": ">2.2,<2.4", + "psr/cache": ">=3" }, "require-dev": { "alcaeus/mongo-php-adapter": "^1.1", - "doctrine/coding-standard": "^6.0", + "cache/integration-tests": "dev-master", + "doctrine/coding-standard": "^8.0", "mongodb/mongodb": "^1.1", - "phpunit/phpunit": "^7.0", - "predis/predis": "~1.0" + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "predis/predis": "~1.0", + "psr/cache": "^1.0 || ^2.0", + "symfony/cache": "^4.4 || ^5.2" }, "suggest": { "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.9.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" @@ -796,36 +820,55 @@ "redis", "xcache" ], - "time": "2020-07-07T18:54:01+00:00" + "support": { + "issues": "https://github.com/doctrine/cache/issues", + "source": "https://github.com/doctrine/cache/tree/1.11.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache", + "type": "tidelift" + } + ], + "time": "2021-04-13T14:46:17+00:00" }, { "name": "doctrine/dbal", - "version": "2.12.1", + "version": "2.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "adce7a954a1c2f14f85e94aed90c8489af204086" + "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086", - "reference": "adce7a954a1c2f14f85e94aed90c8489af204086", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9", + "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9", "shasum": "" }, "require": { "doctrine/cache": "^1.0", + "doctrine/deprecations": "^0.5.3", "doctrine/event-manager": "^1.0", "ext-pdo": "*", - "php": "^7.3 || ^8" + "php": "^7.1 || ^8" }, "require-dev": { - "doctrine/coding-standard": "^8.1", - "jetbrains/phpstorm-stubs": "^2019.1", - "phpstan/phpstan": "^0.12.40", - "phpunit/phpunit": "^9.4", - "psalm/plugin-phpunit": "^0.10.0", + "doctrine/coding-standard": "8.2.0", + "jetbrains/phpstorm-stubs": "2020.2", + "phpstan/phpstan": "0.12.81", + "phpunit/phpunit": "^7.5.20|^8.5|9.5.0", + "squizlabs/php_codesniffer": "3.6.0", "symfony/console": "^2.0.5|^3.0|^4.0|^5.0", - "vimeo/psalm": "^3.17.2" + "vimeo/psalm": "4.6.4" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." @@ -834,11 +877,6 @@ "bin/doctrine-dbal" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.0.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\DBAL\\": "lib/Doctrine/DBAL" @@ -889,6 +927,10 @@ "sqlserver", "sqlsrv" ], + "support": { + "issues": "https://github.com/doctrine/dbal/issues", + "source": "https://github.com/doctrine/dbal/tree/2.13.1" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -903,7 +945,50 @@ "type": "tidelift" } ], - "time": "2020-11-14T20:26:58+00:00" + "time": "2021-04-17T17:30:19+00:00" + }, + { + "name": "doctrine/deprecations", + "version": "v0.5.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "9504165960a1f83cc1480e2be1dd0a0478561314" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314", + "reference": "9504165960a1f83cc1480e2be1dd0a0478561314", + "shasum": "" + }, + "require": { + "php": "^7.1|^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0|^7.0|^8.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0", + "psr/log": "^1.0" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/v0.5.3" + }, + "time": "2021-03-21T12:59:47+00:00" }, { "name": "doctrine/event-manager", @@ -979,6 +1064,10 @@ "event system", "events" ], + "support": { + "issues": "https://github.com/doctrine/event-manager/issues", + "source": "https://github.com/doctrine/event-manager/tree/1.1.x" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -1070,6 +1159,24 @@ "uppercase", "words" ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.x" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], "time": "2020-05-29T15:13:26+00:00" }, { @@ -1121,6 +1228,10 @@ "constructor", "instantiate" ], + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/1.4.0" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -1197,6 +1308,24 @@ "parser", "php" ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/1.2.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], "time": "2020-05-25T17:44:05+00:00" }, { @@ -1265,6 +1394,10 @@ ], "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", "homepage": "https://github.com/dompdf/dompdf", + "support": { + "issues": "https://github.com/dompdf/dompdf/issues", + "source": "https://github.com/dompdf/dompdf/tree/v1.0.2" + }, "time": "2021-01-08T14:18:52+00:00" }, { @@ -1316,6 +1449,10 @@ "cron", "schedule" ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0" + }, "funding": [ { "url": "https://github.com/dragonmantank", @@ -1380,6 +1517,10 @@ "validation", "validator" ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/2.1.25" + }, "funding": [ { "url": "https://github.com/egulias", @@ -1440,6 +1581,10 @@ "proxy", "trusted proxy" ], + "support": { + "issues": "https://github.com/fideloper/TrustedProxy/issues", + "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1" + }, "time": "2020-10-22T13:48:01+00:00" }, { @@ -1548,16 +1693,16 @@ }, { "name": "fruitcake/laravel-cors", - "version": "v2.0.3", + "version": "v2.0.4", "source": { "type": "git", "url": "https://github.com/fruitcake/laravel-cors.git", - "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a" + "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a", - "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a", + "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a", + "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a", "shasum": "" }, "require": { @@ -1570,8 +1715,8 @@ }, "require-dev": { "laravel/framework": "^6|^7|^8", - "orchestra/testbench-dusk": "^4|^5|^6", - "phpunit/phpunit": "^6|^7|^8", + "orchestra/testbench-dusk": "^4|^5|^6|^7", + "phpunit/phpunit": "^6|^7|^8|^9", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", @@ -1611,13 +1756,17 @@ "crossdomain", "laravel" ], + "support": { + "issues": "https://github.com/fruitcake/laravel-cors/issues", + "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.4" + }, "funding": [ { "url": "https://github.com/barryvdh", "type": "github" } ], - "time": "2020-10-22T13:57:20+00:00" + "time": "2021-04-26T11:24:25+00:00" }, { "name": "gabrielelana/byte-units", @@ -1669,6 +1818,10 @@ "size", "units" ], + "support": { + "issues": "https://github.com/gabrielelana/byte-units/issues", + "source": "https://github.com/gabrielelana/byte-units/tree/master" + }, "time": "2018-01-11T10:40:03+00:00" }, { @@ -1721,6 +1874,10 @@ "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", @@ -1735,22 +1892,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.2.0", + "version": "7.3.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79" + "reference": "7008573787b430c1c1f650e3722d9bba59967628" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79", - "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628", + "reference": "7008573787b430c1c1f650e3722d9bba59967628", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/promises": "^1.4", - "guzzlehttp/psr7": "^1.7", + "guzzlehttp/psr7": "^1.7 || ^2.0", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0" }, @@ -1758,6 +1915,7 @@ "psr/http-client-implementation": "1.0" }, "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", "ext-curl": "*", "php-http/client-integration-tests": "^3.0", "phpunit/phpunit": "^8.5.5 || ^9.3.5", @@ -1771,7 +1929,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "7.1-dev" + "dev-master": "7.3-dev" } }, "autoload": { @@ -1811,6 +1969,10 @@ "rest", "web service" ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.3.0" + }, "funding": [ { "url": "https://github.com/GrahamCampbell", @@ -1829,20 +1991,20 @@ "type": "github" } ], - "time": "2020-10-10T11:47:56+00:00" + "time": "2021-03-23T11:33:13+00:00" }, { "name": "guzzlehttp/promises", - "version": "1.4.0", + "version": "1.4.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "60d379c243457e073cff02bc323a2a86cb355631" + "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631", - "reference": "60d379c243457e073cff02bc323a2a86cb355631", + "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d", + "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d", "shasum": "" }, "require": { @@ -1880,20 +2042,24 @@ "keywords": [ "promise" ], - "time": "2020-09-30T07:37:28+00:00" + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.4.1" + }, + "time": "2021-03-07T09:25:29+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.7.0", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3" + "reference": "dc960a912984efb74d0a90222870c72c87f10c91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3", - "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91", + "reference": "dc960a912984efb74d0a90222870c72c87f10c91", "shasum": "" }, "require": { @@ -1951,7 +2117,11 @@ "uri", "url" ], - "time": "2020-09-30T07:37:11+00:00" + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.8.2" + }, + "time": "2021-04-26T09:17:50+00:00" }, { "name": "intervention/image", @@ -2021,6 +2191,10 @@ "thumbnail", "watermark" ], + "support": { + "issues": "https://github.com/Intervention/image/issues", + "source": "https://github.com/Intervention/image/tree/master" + }, "time": "2019-11-02T09:15:47+00:00" }, { @@ -2069,6 +2243,10 @@ "crawlerdetect", "php crawler detect" ], + "support": { + "issues": "https://github.com/JayBizzle/Crawler-Detect/issues", + "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.105" + }, "time": "2021-03-03T20:55:48+00:00" }, { @@ -2133,6 +2311,10 @@ "spider", "user-agent" ], + "support": { + "issues": "https://github.com/JayBizzle/Laravel-Crawler-Detect/issues", + "source": "https://github.com/JayBizzle/Laravel-Crawler-Detect/tree/master" + }, "time": "2017-06-01T20:29:30+00:00" }, { @@ -2190,20 +2372,24 @@ "sortable", "sorting" ], + "support": { + "issues": "https://github.com/Kyslik/column-sortable/issues", + "source": "https://github.com/Kyslik/column-sortable/tree/6.4.0" + }, "time": "2020-09-11T21:17:32+00:00" }, { "name": "laravel/cashier", - "version": "v12.9.1", + "version": "v12.13.0", "source": { "type": "git", "url": "https://github.com/laravel/cashier-stripe.git", - "reference": "3dbe65d30f08fea8a1cd5ae7323244ca68e56dc8" + "reference": "f1a7d5ffce278bf9c85cd3c1b86c45d688f3bf00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/cashier-stripe/zipball/3dbe65d30f08fea8a1cd5ae7323244ca68e56dc8", - "reference": "3dbe65d30f08fea8a1cd5ae7323244ca68e56dc8", + "url": "https://api.github.com/repos/laravel/cashier-stripe/zipball/f1a7d5ffce278bf9c85cd3c1b86c45d688f3bf00", + "reference": "f1a7d5ffce278bf9c85cd3c1b86c45d688f3bf00", "shasum": "" }, "require": { @@ -2222,7 +2408,7 @@ "php": "^7.2.5|^8.0", "stripe/stripe-php": "^7.39", "symfony/http-kernel": "^4.3|^5.0", - "symfony/intl": "^4.3|^5.0" + "symfony/polyfill-intl-icu": "^1.22.1" }, "require-dev": { "mockery/mockery": "^1.0", @@ -2255,7 +2441,7 @@ "authors": [ { "name": "Taylor Otwell", - "email": "taylorotwell@gmail.com" + "email": "taylor@laravel.com" } ], "description": "Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.", @@ -2264,20 +2450,24 @@ "laravel", "stripe" ], - "time": "2021-02-23T20:22:29+00:00" + "support": { + "issues": "https://github.com/laravel/cashier/issues", + "source": "https://github.com/laravel/cashier" + }, + "time": "2021-04-27T17:42:05+00:00" }, { "name": "laravel/fortify", - "version": "v1.7.7", + "version": "v1.7.12", "source": { "type": "git", "url": "https://github.com/laravel/fortify.git", - "reference": "e657d583f9b01ed794fc9b810f28a9a8632dcc13" + "reference": "b45807430194c73aaa9b2f26cb76038cc747466f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/fortify/zipball/e657d583f9b01ed794fc9b810f28a9a8632dcc13", - "reference": "e657d583f9b01ed794fc9b810f28a9a8632dcc13", + "url": "https://api.github.com/repos/laravel/fortify/zipball/b45807430194c73aaa9b2f26cb76038cc747466f", + "reference": "b45807430194c73aaa9b2f26cb76038cc747466f", "shasum": "" }, "require": { @@ -2323,20 +2513,24 @@ "auth", "laravel" ], - "time": "2021-02-23T20:32:10+00:00" + "support": { + "issues": "https://github.com/laravel/fortify/issues", + "source": "https://github.com/laravel/fortify" + }, + "time": "2021-04-27T17:56:34+00:00" }, { "name": "laravel/framework", - "version": "v8.30.1", + "version": "v8.40.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "ab7e1c19ee0403e15fc59983b7ccb86d85db45e6" + "reference": "a654897ad7f97aea9d7ef292803939798c4a02a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/ab7e1c19ee0403e15fc59983b7ccb86d85db45e6", - "reference": "ab7e1c19ee0403e15fc59983b7ccb86d85db45e6", + "url": "https://api.github.com/repos/laravel/framework/zipball/a654897ad7f97aea9d7ef292803939798c4a02a4", + "reference": "a654897ad7f97aea9d7ef292803939798c4a02a4", "shasum": "" }, "require": { @@ -2487,20 +2681,24 @@ "framework", "laravel" ], - "time": "2021-03-03T14:59:13+00:00" + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2021-04-28T14:38:56+00:00" }, { "name": "laravel/sanctum", - "version": "v2.9.0", + "version": "v2.10.0", "source": { "type": "git", "url": "https://github.com/laravel/sanctum.git", - "reference": "eb191ddfc3ec04bbead33593bf982e871095f25c" + "reference": "a08cfee365c6b6df3e91c8f43b92f7163ffc8a94" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sanctum/zipball/eb191ddfc3ec04bbead33593bf982e871095f25c", - "reference": "eb191ddfc3ec04bbead33593bf982e871095f25c", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/a08cfee365c6b6df3e91c8f43b92f7163ffc8a94", + "reference": "a08cfee365c6b6df3e91c8f43b92f7163ffc8a94", "shasum": "" }, "require": { @@ -2547,20 +2745,24 @@ "laravel", "sanctum" ], - "time": "2021-01-26T19:47:38+00:00" + "support": { + "issues": "https://github.com/laravel/sanctum/issues", + "source": "https://github.com/laravel/sanctum" + }, + "time": "2021-04-20T16:20:46+00:00" }, { "name": "laravel/scout", - "version": "v8.6.0", + "version": "v8.6.1", "source": { "type": "git", "url": "https://github.com/laravel/scout.git", - "reference": "54070f7b68fed15f25e61e68884c4110496b8aa1" + "reference": "7fb1c860a2fd904f0e084a7cc3641eb1448ba278" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/scout/zipball/54070f7b68fed15f25e61e68884c4110496b8aa1", - "reference": "54070f7b68fed15f25e61e68884c4110496b8aa1", + "url": "https://api.github.com/repos/laravel/scout/zipball/7fb1c860a2fd904f0e084a7cc3641eb1448ba278", + "reference": "7fb1c860a2fd904f0e084a7cc3641eb1448ba278", "shasum": "" }, "require": { @@ -2612,7 +2814,11 @@ "laravel", "search" ], - "time": "2021-01-19T15:30:52+00:00" + "support": { + "issues": "https://github.com/laravel/scout/issues", + "source": "https://github.com/laravel/scout" + }, + "time": "2021-04-06T14:35:41+00:00" }, { "name": "laravel/tinker", @@ -2676,20 +2882,24 @@ "laravel", "psysh" ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.6.1" + }, "time": "2021-03-02T16:53:12+00:00" }, { "name": "laravel/ui", - "version": "v3.2.0", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/laravel/ui.git", - "reference": "a1f82c6283c8373ea1958b8a27c3d5c98cade351" + "reference": "e2478cd0342a92ec1c8c77422553bda8ee004fd0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/ui/zipball/a1f82c6283c8373ea1958b8a27c3d5c98cade351", - "reference": "a1f82c6283c8373ea1958b8a27c3d5c98cade351", + "url": "https://api.github.com/repos/laravel/ui/zipball/e2478cd0342a92ec1c8c77422553bda8ee004fd0", + "reference": "e2478cd0342a92ec1c8c77422553bda8ee004fd0", "shasum": "" }, "require": { @@ -2730,20 +2940,23 @@ "laravel", "ui" ], - "time": "2021-01-06T19:20:22+00:00" + "support": { + "source": "https://github.com/laravel/ui/tree/v3.2.1" + }, + "time": "2021-04-27T18:17:41+00:00" }, { "name": "league/commonmark", - "version": "1.5.7", + "version": "1.6.0", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54" + "reference": "19a9673b833cc37770439097b381d86cd125bfe8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54", - "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/19a9673b833cc37770439097b381d86cd125bfe8", + "reference": "19a9673b833cc37770439097b381d86cd125bfe8", "shasum": "" }, "require": { @@ -2799,6 +3012,12 @@ "md", "parser" ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, "funding": [ { "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark", @@ -2825,7 +3044,7 @@ "type": "tidelift" } ], - "time": "2020-10-31T13:49:32+00:00" + "time": "2021-05-01T19:00:49+00:00" }, { "name": "league/flysystem", @@ -2910,6 +3129,10 @@ "sftp", "storage" ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/1.x" + }, "funding": [ { "url": "https://offset.earth/frankdejonge", @@ -2963,6 +3186,10 @@ } ], "description": "Flysystem adapter for the AWS S3 SDK v3.x", + "support": { + "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues", + "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/1.0.29" + }, "time": "2020-10-08T18:58:37+00:00" }, { @@ -3010,6 +3237,10 @@ } ], "description": "An adapter decorator to enable meta-data caching.", + "support": { + "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues", + "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master" + }, "time": "2020-07-25T15:56:04+00:00" }, { @@ -3052,6 +3283,10 @@ } ], "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0" + }, "funding": [ { "url": "https://github.com/frankdejonge", @@ -3118,6 +3353,10 @@ } ], "description": "Wannabe successor of Chumper/Zipper package for Laravel", + "support": { + "issues": "https://github.com/madnest/madzipper/issues", + "source": "https://github.com/madnest/madzipper/tree/v1.1.0" + }, "time": "2020-12-01T23:44:14+00:00" }, { @@ -3200,6 +3439,10 @@ "money", "vo" ], + "support": { + "issues": "https://github.com/moneyphp/money/issues", + "source": "https://github.com/moneyphp/money/tree/master" + }, "time": "2020-03-18T17:49:59+00:00" }, { @@ -3282,6 +3525,10 @@ "logging", "psr-3" ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/2.2.0" + }, "funding": [ { "url": "https://github.com/Seldaek", @@ -3349,6 +3596,10 @@ "json", "jsonpath" ], + "support": { + "issues": "https://github.com/jmespath/jmespath.php/issues", + "source": "https://github.com/jmespath/jmespath.php/tree/2.6.0" + }, "time": "2020-07-31T21:01:56+00:00" }, { @@ -3397,6 +3648,10 @@ "object", "object graph" ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2" + }, "funding": [ { "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", @@ -3407,16 +3662,16 @@ }, { "name": "nesbot/carbon", - "version": "2.45.1", + "version": "2.46.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "528783b188bdb853eb21239b1722831e0f000a8d" + "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/528783b188bdb853eb21239b1722831e0f000a8d", - "reference": "528783b188bdb853eb21239b1722831e0f000a8d", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4", + "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4", "shasum": "" }, "require": { @@ -3482,6 +3737,10 @@ "datetime", "time" ], + "support": { + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, "funding": [ { "url": "https://opencollective.com/Carbon", @@ -3492,7 +3751,7 @@ "type": "tidelift" } ], - "time": "2021-02-11T18:30:17+00:00" + "time": "2021-02-24T17:30:44+00:00" }, { "name": "nikic/php-parser", @@ -3544,20 +3803,24 @@ "parser", "php" ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4" + }, "time": "2020-12-20T10:01:03+00:00" }, { "name": "opis/closure", - "version": "3.6.1", + "version": "3.6.2", "source": { "type": "git", "url": "https://github.com/opis/closure.git", - "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5" + "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5", - "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5", + "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6", + "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6", "shasum": "" }, "require": { @@ -3605,7 +3868,11 @@ "serialization", "serialize" ], - "time": "2020-11-07T02:01:34+00:00" + "support": { + "issues": "https://github.com/opis/closure/issues", + "source": "https://github.com/opis/closure/tree/3.6.2" + }, + "time": "2021-04-09T13:42:10+00:00" }, { "name": "paragonie/constant_time_encoding", @@ -3667,6 +3934,11 @@ "hex2bin", "rfc4648" ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/constant_time_encoding/issues", + "source": "https://github.com/paragonie/constant_time_encoding" + }, "time": "2020-12-06T15:14:20+00:00" }, { @@ -3723,6 +3995,10 @@ } ], "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" + }, "time": "2020-06-27T14:33:11+00:00" }, { @@ -3770,6 +4046,10 @@ } ], "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.1.0" + }, "time": "2021-02-23T14:00:09+00:00" }, { @@ -3807,6 +4087,10 @@ ], "description": "A library to read, parse, export and make subsets of different types of font files.", "homepage": "https://github.com/PhenX/php-font-lib", + "support": { + "issues": "https://github.com/PhenX/php-font-lib/issues", + "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2" + }, "time": "2020-03-08T15:31:32+00:00" }, { @@ -3847,6 +4131,10 @@ ], "description": "A library to read, parse and export to PDF SVG files.", "homepage": "https://github.com/PhenX/php-svg-lib", + "support": { + "issues": "https://github.com/PhenX/php-svg-lib/issues", + "source": "https://github.com/PhenX/php-svg-lib/tree/master" + }, "time": "2019-09-11T20:02:13+00:00" }, { @@ -3951,6 +4239,10 @@ "reflection", "static analysis" ], + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", + "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + }, "time": "2020-06-27T09:03:43+00:00" }, { @@ -4003,6 +4295,10 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master" + }, "time": "2020-09-03T19:13:55+00:00" }, { @@ -4048,6 +4344,10 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "support": { + "issues": "https://github.com/phpDocumentor/TypeResolver/issues", + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0" + }, "time": "2020-09-17T18:55:26+00:00" }, { @@ -4103,6 +4403,10 @@ "php", "type" ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.7.5" + }, "funding": [ { "url": "https://github.com/GrahamCampbell", @@ -4117,16 +4421,16 @@ }, { "name": "phpspec/prophecy", - "version": "1.12.2", + "version": "1.13.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "245710e971a030f42e08f4912863805570f23d39" + "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39", - "reference": "245710e971a030f42e08f4912863805570f23d39", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea", + "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea", "shasum": "" }, "require": { @@ -4176,20 +4480,24 @@ "spy", "stub" ], - "time": "2020-12-19T10:15:11+00:00" + "support": { + "issues": "https://github.com/phpspec/prophecy/issues", + "source": "https://github.com/phpspec/prophecy/tree/1.13.0" + }, + "time": "2021-03-17T13:42:18+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.5", + "version": "9.2.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1" + "reference": "f6293e1b30a2354e8428e004689671b83871edde" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1", - "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde", + "reference": "f6293e1b30a2354e8428e004689671b83871edde", "shasum": "" }, "require": { @@ -4243,13 +4551,17 @@ "testing", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" } ], - "time": "2020-11-28T06:44:49+00:00" + "time": "2021-03-28T07:26:59+00:00" }, { "name": "phpunit/php-file-iterator", @@ -4299,6 +4611,10 @@ "filesystem", "iterator" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4358,6 +4674,10 @@ "keywords": [ "process" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4413,6 +4733,10 @@ "keywords": [ "template" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4468,6 +4792,10 @@ "keywords": [ "timer" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4478,16 +4806,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.5.2", + "version": "9.5.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4" + "reference": "c73c6737305e779771147af66c96ca6a7ed8a741" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f661659747f2f87f9e72095bb207bceb0f151cb4", - "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c73c6737305e779771147af66c96ca6a7ed8a741", + "reference": "c73c6737305e779771147af66c96ca6a7ed8a741", "shasum": "" }, "require": { @@ -4563,6 +4891,10 @@ "testing", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.4" + }, "funding": [ { "url": "https://phpunit.de/donate.html", @@ -4573,7 +4905,7 @@ "type": "github" } ], - "time": "2021-02-02T14:45:58+00:00" + "time": "2021-03-23T07:16:29+00:00" }, { "name": "pragmarx/google2fa", @@ -4621,6 +4953,10 @@ "Two Factor Authentication", "google2fa" ], + "support": { + "issues": "https://github.com/antonioribeiro/google2fa/issues", + "source": "https://github.com/antonioribeiro/google2fa/tree/8.0.0" + }, "time": "2020-04-05T10:47:18+00:00" }, { @@ -4667,31 +5003,29 @@ "psr", "psr-6" ], + "support": { + "source": "https://github.com/php-fig/cache/tree/master" + }, "time": "2016-08-06T20:24:11+00:00" }, { "name": "psr/container", - "version": "1.0.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf", + "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=7.2.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, "autoload": { "psr-4": { "Psr\\Container\\": "src/" @@ -4704,7 +5038,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common Container Interface (PHP FIG PSR-11)", @@ -4716,7 +5050,11 @@ "container-interop", "psr" ], - "time": "2017-02-14T16:28:37+00:00" + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/1.1.1" + }, + "time": "2021-03-05T17:36:06+00:00" }, { "name": "psr/event-dispatcher", @@ -4762,6 +5100,10 @@ "psr", "psr-14" ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, "time": "2019-01-08T18:20:26+00:00" }, { @@ -4811,6 +5153,9 @@ "psr", "psr-18" ], + "support": { + "source": "https://github.com/php-fig/http-client/tree/master" + }, "time": "2020-06-29T06:28:15+00:00" }, { @@ -4861,6 +5206,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, "time": "2016-08-06T14:39:51+00:00" }, { @@ -4908,6 +5256,9 @@ "psr", "psr-3" ], + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.3" + }, "time": "2020-03-23T09:12:05+00:00" }, { @@ -4956,24 +5307,26 @@ "psr-16", "simple-cache" ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/master" + }, "time": "2017-10-23T01:57:42+00:00" }, { "name": "psy/psysh", - "version": "v0.10.6", + "version": "v0.10.8", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3" + "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6f990c19f91729de8b31e639d6e204ea59f19cf3", - "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3", + "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3", "shasum": "" }, "require": { - "dnoegel/php-xdg-base-dir": "0.1.*", "ext-json": "*", "ext-tokenizer": "*", "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3", @@ -5028,7 +5381,11 @@ "interactive", "shell" ], - "time": "2021-01-18T15:53:43+00:00" + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.10.8" + }, + "time": "2021-04-10T16:23:39+00:00" }, { "name": "ralouphie/getallheaders", @@ -5068,6 +5425,10 @@ } ], "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, "time": "2019-03-08T08:55:37+00:00" }, { @@ -5131,6 +5492,10 @@ "queue", "set" ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/1.1.3" + }, "funding": [ { "url": "https://github.com/ramsey", @@ -5222,6 +5587,11 @@ "identifier", "uuid" ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "rss": "https://github.com/ramsey/uuid/releases.atom", + "source": "https://github.com/ramsey/uuid" + }, "funding": [ { "url": "https://github.com/ramsey", @@ -5273,6 +5643,10 @@ "parser", "stylesheet" ], + "support": { + "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues", + "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.3.1" + }, "time": "2020-06-01T09:10:00+00:00" }, { @@ -5319,6 +5693,10 @@ ], "description": "Library for parsing CLI options", "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5371,6 +5749,10 @@ ], "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", @@ -5422,6 +5804,10 @@ ], "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", @@ -5492,6 +5878,10 @@ "compare", "equality" ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5545,6 +5935,10 @@ ], "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", @@ -5607,6 +6001,10 @@ "unidiff", "unified diff" ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5666,6 +6064,10 @@ "environment", "hhvm" ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5739,6 +6141,10 @@ "export", "exporter" ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5799,6 +6205,10 @@ "keywords": [ "global state" ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5852,6 +6262,10 @@ ], "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": [ { "url": "https://github.com/sebastianbergmann", @@ -5905,6 +6319,10 @@ ], "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -5956,6 +6374,10 @@ ], "description": "Allows reflection of object attributes, including inherited and non-public ones", "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -6015,6 +6437,10 @@ ], "description": "Provides functionality to recursively process PHP variables", "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/4.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -6066,6 +6492,10 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "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/3.0.3" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -6118,6 +6548,10 @@ ], "description": "Collection of value objects that represent the types of the PHP type system", "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/2.3.1" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -6167,6 +6601,10 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -6237,16 +6675,16 @@ }, { "name": "spatie/laravel-backup", - "version": "6.15.1", + "version": "6.16.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-backup.git", - "reference": "94be6b3bb5248727367a50161be90e6c422558b4" + "reference": "6b2229a07d92c2bb146ad9c5223fc32e9d74830c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/94be6b3bb5248727367a50161be90e6c422558b4", - "reference": "94be6b3bb5248727367a50161be90e6c422558b4", + "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/6b2229a07d92c2bb146ad9c5223fc32e9d74830c", + "reference": "6b2229a07d92c2bb146ad9c5223fc32e9d74830c", "shasum": "" }, "require": { @@ -6311,7 +6749,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-backup/issues", - "source": "https://github.com/spatie/laravel-backup/tree/6.15.1" + "source": "https://github.com/spatie/laravel-backup/tree/6.16.0" }, "funding": [ { @@ -6323,7 +6761,7 @@ "type": "other" } ], - "time": "2021-03-17T09:41:03+00:00" + "time": "2021-04-15T09:31:32+00:00" }, { "name": "spatie/temporary-directory", @@ -6378,16 +6816,16 @@ }, { "name": "stripe/stripe-php", - "version": "v7.75.0", + "version": "v7.77.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "d377a667cd789b99ccab768441a5a2160cc4ea80" + "reference": "f6724447481f6fb8c2e714165e092adad9ca470a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/d377a667cd789b99ccab768441a5a2160cc4ea80", - "reference": "d377a667cd789b99ccab768441a5a2160cc4ea80", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/f6724447481f6fb8c2e714165e092adad9ca470a", + "reference": "f6724447481f6fb8c2e714165e092adad9ca470a", "shasum": "" }, "require": { @@ -6431,24 +6869,28 @@ "payment processing", "stripe" ], - "time": "2021-02-22T14:31:21+00:00" + "support": { + "issues": "https://github.com/stripe/stripe-php/issues", + "source": "https://github.com/stripe/stripe-php/tree/v7.77.0" + }, + "time": "2021-04-12T17:19:16+00:00" }, { "name": "swiftmailer/swiftmailer", - "version": "v6.2.5", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7" + "reference": "15f7faf8508e04471f666633addacf54c0ab5933" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/698a6a9f54d7eb321274de3ad19863802c879fb7", - "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933", + "reference": "15f7faf8508e04471f666633addacf54c0ab5933", "shasum": "" }, "require": { - "egulias/email-validator": "^2.0", + "egulias/email-validator": "^2.0|^3.1", "php": ">=7.0.0", "symfony/polyfill-iconv": "^1.0", "symfony/polyfill-intl-idn": "^1.10", @@ -6492,6 +6934,10 @@ "mail", "mailer" ], + "support": { + "issues": "https://github.com/swiftmailer/swiftmailer/issues", + "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7" + }, "funding": [ { "url": "https://github.com/fabpot", @@ -6502,20 +6948,20 @@ "type": "tidelift" } ], - "time": "2021-01-12T09:35:59+00:00" + "time": "2021-03-09T12:30:35+00:00" }, { "name": "symfony/console", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a" + "reference": "90374b8ed059325b49a29b55b3f8bb4062c87629" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/89d4b176d12a2946a1ae4e34906a025b7b6b135a", - "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a", + "url": "https://api.github.com/repos/symfony/console/zipball/90374b8ed059325b49a29b55b3f8bb4062c87629", + "reference": "90374b8ed059325b49a29b55b3f8bb4062c87629", "shasum": "" }, "require": { @@ -6582,6 +7028,9 @@ "console", "terminal" ], + "support": { + "source": "https://github.com/symfony/console/tree/v5.2.7" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6596,20 +7045,20 @@ "type": "tidelift" } ], - "time": "2021-01-28T22:06:19+00:00" + "time": "2021-04-19T14:07:32+00:00" }, { "name": "symfony/css-selector", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f" + "reference": "59a684f5ac454f066ecbe6daecce6719aed283fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f", - "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/59a684f5ac454f066ecbe6daecce6719aed283fb", + "reference": "59a684f5ac454f066ecbe6daecce6719aed283fb", "shasum": "" }, "require": { @@ -6644,6 +7093,9 @@ ], "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v5.3.0-BETA1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6658,20 +7110,20 @@ "type": "tidelift" } ], - "time": "2021-01-27T10:01:46+00:00" + "time": "2021-04-07T16:07:52+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v2.2.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665" + "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665", - "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627", + "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627", "shasum": "" }, "require": { @@ -6680,7 +7132,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-main": "2.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -6708,6 +7160,9 @@ ], "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6722,20 +7177,20 @@ "type": "tidelift" } ], - "time": "2020-09-07T11:33:47+00:00" + "time": "2021-03-23T23:28:01+00:00" }, { "name": "symfony/error-handler", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "48f18b3609e120ea66d59142c23dc53e9562c26d" + "reference": "ea3ddbf67615e883ca7c33a4de61213789846782" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/48f18b3609e120ea66d59142c23dc53e9562c26d", - "reference": "48f18b3609e120ea66d59142c23dc53e9562c26d", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/ea3ddbf67615e883ca7c33a4de61213789846782", + "reference": "ea3ddbf67615e883ca7c33a4de61213789846782", "shasum": "" }, "require": { @@ -6774,6 +7229,9 @@ ], "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v5.2.7" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6788,20 +7246,20 @@ "type": "tidelift" } ], - "time": "2021-01-28T22:06:19+00:00" + "time": "2021-04-07T15:57:33+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.2.3", + "version": "v5.2.4", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "4f9760f8074978ad82e2ce854dff79a71fe45367" + "reference": "d08d6ec121a425897951900ab692b612a61d6240" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4f9760f8074978ad82e2ce854dff79a71fe45367", - "reference": "4f9760f8074978ad82e2ce854dff79a71fe45367", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d08d6ec121a425897951900ab692b612a61d6240", + "reference": "d08d6ec121a425897951900ab692b612a61d6240", "shasum": "" }, "require": { @@ -6856,6 +7314,9 @@ ], "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.4" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6870,20 +7331,20 @@ "type": "tidelift" } ], - "time": "2021-01-27T10:36:42+00:00" + "time": "2021-02-18T17:12:37+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v2.2.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2" + "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2", - "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11", + "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11", "shasum": "" }, "require": { @@ -6896,7 +7357,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-main": "2.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -6932,6 +7393,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6946,20 +7410,20 @@ "type": "tidelift" } ], - "time": "2020-09-07T11:33:47+00:00" + "time": "2021-03-23T23:28:01+00:00" }, { "name": "symfony/filesystem", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "262d033b57c73e8b59cd6e68a45c528318b15038" + "reference": "056e92acc21d977c37e6ea8e97374b2a6c8551b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/262d033b57c73e8b59cd6e68a45c528318b15038", - "reference": "262d033b57c73e8b59cd6e68a45c528318b15038", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/056e92acc21d977c37e6ea8e97374b2a6c8551b0", + "reference": "056e92acc21d977c37e6ea8e97374b2a6c8551b0", "shasum": "" }, "require": { @@ -6991,6 +7455,9 @@ ], "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/filesystem/tree/v5.2.7" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7005,20 +7472,20 @@ "type": "tidelift" } ], - "time": "2021-01-27T10:01:46+00:00" + "time": "2021-04-01T10:42:13+00:00" }, { "name": "symfony/finder", - "version": "v5.2.3", + "version": "v5.2.4", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "4adc8d172d602008c204c2e16956f99257248e03" + "reference": "0d639a0943822626290d169965804f79400e6a04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/4adc8d172d602008c204c2e16956f99257248e03", - "reference": "4adc8d172d602008c204c2e16956f99257248e03", + "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04", + "reference": "0d639a0943822626290d169965804f79400e6a04", "shasum": "" }, "require": { @@ -7049,6 +7516,9 @@ ], "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v5.2.4" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7063,20 +7533,20 @@ "type": "tidelift" } ], - "time": "2021-01-28T22:06:19+00:00" + "time": "2021-02-15T18:55:04+00:00" }, { "name": "symfony/http-client-contracts", - "version": "v2.3.1", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "41db680a15018f9c1d4b23516059633ce280ca33" + "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33", - "reference": "41db680a15018f9c1d4b23516059633ce280ca33", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4", + "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4", "shasum": "" }, "require": { @@ -7087,9 +7557,8 @@ }, "type": "library", "extra": { - "branch-version": "2.3", "branch-alias": { - "dev-main": "2.3-dev" + "dev-main": "2.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -7125,6 +7594,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7139,20 +7611,20 @@ "type": "tidelift" } ], - "time": "2020-10-14T17:08:19+00:00" + "time": "2021-04-11T23:07:08+00:00" }, { "name": "symfony/http-foundation", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "20c554c0f03f7cde5ce230ed248470cccbc34c36" + "reference": "a416487a73bb9c9d120e9ba3a60547f4a3fb7a1f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/20c554c0f03f7cde5ce230ed248470cccbc34c36", - "reference": "20c554c0f03f7cde5ce230ed248470cccbc34c36", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a416487a73bb9c9d120e9ba3a60547f4a3fb7a1f", + "reference": "a416487a73bb9c9d120e9ba3a60547f4a3fb7a1f", "shasum": "" }, "require": { @@ -7195,6 +7667,9 @@ ], "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v5.2.7" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7209,20 +7684,20 @@ "type": "tidelift" } ], - "time": "2021-02-03T04:42:09+00:00" + "time": "2021-05-01T13:46:24+00:00" }, { "name": "symfony/http-kernel", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05" + "reference": "1e9f6879f070f718e0055fbac232a56f67b8b6bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05", - "reference": "89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1e9f6879f070f718e0055fbac232a56f67b8b6bd", + "reference": "1e9f6879f070f718e0055fbac232a56f67b8b6bd", "shasum": "" }, "require": { @@ -7257,7 +7732,7 @@ "psr/log-implementation": "1.0" }, "require-dev": { - "psr/cache": "~1.0", + "psr/cache": "^1.0|^2.0|^3.0", "symfony/browser-kit": "^4.4|^5.0", "symfony/config": "^5.0", "symfony/console": "^4.4|^5.0", @@ -7304,6 +7779,9 @@ ], "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v5.2.7" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7318,105 +7796,20 @@ "type": "tidelift" } ], - "time": "2021-02-03T04:51:58+00:00" - }, - { - "name": "symfony/intl", - "version": "v5.2.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/intl.git", - "reference": "930f17689729cc47d2ce18be21ed403bcbeeb6a9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/intl/zipball/930f17689729cc47d2ce18be21ed403bcbeeb6a9", - "reference": "930f17689729cc47d2ce18be21ed403bcbeeb6a9", - "shasum": "" - }, - "require": { - "php": ">=7.2.5", - "symfony/polyfill-intl-icu": "~1.0", - "symfony/polyfill-php80": "^1.15" - }, - "require-dev": { - "symfony/filesystem": "^4.4|^5.0" - }, - "suggest": { - "ext-intl": "to use the component with locales other than \"en\"" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Intl\\": "" - }, - "classmap": [ - "Resources/stubs" - ], - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - }, - { - "name": "Eriksen Costa", - "email": "eriksen.costa@infranology.com.br" - }, - { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides a PHP replacement layer for the C intl extension that includes additional data from the ICU library", - "homepage": "https://symfony.com", - "keywords": [ - "i18n", - "icu", - "internationalization", - "intl", - "l10n", - "localization" - ], - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2021-01-27T10:01:46+00:00" + "time": "2021-05-01T14:53:15+00:00" }, { "name": "symfony/mime", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "7dee6a43493f39b51ff6c5bb2bd576fe40a76c86" + "reference": "7af452bf51c46f18da00feb32e1ad36db9426515" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/7dee6a43493f39b51ff6c5bb2bd576fe40a76c86", - "reference": "7dee6a43493f39b51ff6c5bb2bd576fe40a76c86", + "url": "https://api.github.com/repos/symfony/mime/zipball/7af452bf51c46f18da00feb32e1ad36db9426515", + "reference": "7af452bf51c46f18da00feb32e1ad36db9426515", "shasum": "" }, "require": { @@ -7427,12 +7820,13 @@ "symfony/polyfill-php80": "^1.15" }, "conflict": { + "egulias/email-validator": "~3.0.0", "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", "symfony/mailer": "<4.4" }, "require-dev": { - "egulias/email-validator": "^2.1.10", + "egulias/email-validator": "^2.1.10|^3.1", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "symfony/dependency-injection": "^4.4|^5.0", "symfony/property-access": "^4.4|^5.1", @@ -7468,6 +7862,9 @@ "mime", "mime-type" ], + "support": { + "source": "https://github.com/symfony/mime/tree/v5.2.7" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7482,7 +7879,7 @@ "type": "tidelift" } ], - "time": "2021-02-02T06:10:15+00:00" + "time": "2021-04-29T20:47:09+00:00" }, { "name": "symfony/options-resolver", @@ -7613,6 +8010,9 @@ "polyfill", "portable" ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7690,6 +8090,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7768,6 +8171,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7852,6 +8258,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7936,6 +8345,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8017,6 +8429,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8094,6 +8509,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8235,6 +8653,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8311,6 +8732,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8391,6 +8815,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8409,16 +8836,16 @@ }, { "name": "symfony/process", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f" + "reference": "98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f", - "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f", + "url": "https://api.github.com/repos/symfony/process/zipball/98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e", + "reference": "98cb8eeb72e55d4196dd1e36f1f16e7b3a9a088e", "shasum": "" }, "require": { @@ -8450,6 +8877,9 @@ ], "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v5.3.0-BETA1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8464,20 +8894,20 @@ "type": "tidelift" } ], - "time": "2021-01-27T10:15:41+00:00" + "time": "2021-04-08T10:27:02+00:00" }, { "name": "symfony/routing", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "348b5917e56546c6d96adbf21d7f92c9ef563661" + "reference": "3f0cab2e95b5e92226f34c2c1aa969d3fc41f48c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/348b5917e56546c6d96adbf21d7f92c9ef563661", - "reference": "348b5917e56546c6d96adbf21d7f92c9ef563661", + "url": "https://api.github.com/repos/symfony/routing/zipball/3f0cab2e95b5e92226f34c2c1aa969d3fc41f48c", + "reference": "3f0cab2e95b5e92226f34c2c1aa969d3fc41f48c", "shasum": "" }, "require": { @@ -8500,7 +8930,6 @@ "symfony/yaml": "^4.4|^5.0" }, "suggest": { - "doctrine/annotations": "For using the annotation loader", "symfony/config": "For using the all-in-one router or any loader", "symfony/expression-language": "For using expression matching", "symfony/http-foundation": "For using a Symfony Request object", @@ -8537,6 +8966,9 @@ "uri", "url" ], + "support": { + "source": "https://github.com/symfony/routing/tree/v5.2.7" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8551,25 +8983,25 @@ "type": "tidelift" } ], - "time": "2021-01-27T10:15:41+00:00" + "time": "2021-04-11T22:55:21+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.2.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1" + "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1", - "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", + "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/container": "^1.0" + "psr/container": "^1.1" }, "suggest": { "symfony/service-implementation": "" @@ -8577,7 +9009,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-main": "2.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -8613,6 +9045,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v2.4.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8627,20 +9062,20 @@ "type": "tidelift" } ], - "time": "2020-09-07T11:33:47+00:00" + "time": "2021-04-01T10:43:52+00:00" }, { "name": "symfony/stopwatch", - "version": "v5.2.4", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "b12274acfab9d9850c52583d136a24398cdf1a0c" + "reference": "d99310c33e833def36419c284f60e8027d359678" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/b12274acfab9d9850c52583d136a24398cdf1a0c", - "reference": "b12274acfab9d9850c52583d136a24398cdf1a0c", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/d99310c33e833def36419c284f60e8027d359678", + "reference": "d99310c33e833def36419c284f60e8027d359678", "shasum": "" }, "require": { @@ -8673,7 +9108,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v5.2.4" + "source": "https://github.com/symfony/stopwatch/tree/v5.3.0-BETA1" }, "funding": [ { @@ -8689,20 +9124,20 @@ "type": "tidelift" } ], - "time": "2021-01-27T10:15:41+00:00" + "time": "2021-03-29T15:28:41+00:00" }, { "name": "symfony/string", - "version": "v5.2.3", + "version": "v5.2.6", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "c95468897f408dd0aca2ff582074423dd0455122" + "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/c95468897f408dd0aca2ff582074423dd0455122", - "reference": "c95468897f408dd0aca2ff582074423dd0455122", + "url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572", + "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572", "shasum": "" }, "require": { @@ -8755,6 +9190,9 @@ "utf-8", "utf8" ], + "support": { + "source": "https://github.com/symfony/string/tree/v5.2.6" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8769,20 +9207,20 @@ "type": "tidelift" } ], - "time": "2021-01-25T15:14:59+00:00" + "time": "2021-03-17T17:12:15+00:00" }, { "name": "symfony/translation", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "c021864d4354ee55160ddcfd31dc477a1bc77949" + "reference": "e37ece5242564bceea54d709eafc948377ec9749" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/c021864d4354ee55160ddcfd31dc477a1bc77949", - "reference": "c021864d4354ee55160ddcfd31dc477a1bc77949", + "url": "https://api.github.com/repos/symfony/translation/zipball/e37ece5242564bceea54d709eafc948377ec9749", + "reference": "e37ece5242564bceea54d709eafc948377ec9749", "shasum": "" }, "require": { @@ -8799,7 +9237,7 @@ "symfony/yaml": "<4.4" }, "provide": { - "symfony/translation-implementation": "2.0" + "symfony/translation-implementation": "2.3" }, "require-dev": { "psr/log": "~1.0", @@ -8845,6 +9283,9 @@ ], "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v5.2.7" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8859,20 +9300,20 @@ "type": "tidelift" } ], - "time": "2021-01-27T10:15:41+00:00" + "time": "2021-04-01T08:15:21+00:00" }, { "name": "symfony/translation-contracts", - "version": "v2.3.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105" + "reference": "95c812666f3e91db75385749fe219c5e494c7f95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105", - "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95", + "reference": "95c812666f3e91db75385749fe219c5e494c7f95", "shasum": "" }, "require": { @@ -8884,7 +9325,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-main": "2.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -8920,6 +9361,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -8934,20 +9378,20 @@ "type": "tidelift" } ], - "time": "2020-09-28T13:05:58+00:00" + "time": "2021-03-23T23:28:01+00:00" }, { "name": "symfony/var-dumper", - "version": "v5.2.3", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "72ca213014a92223a5d18651ce79ef441c12b694" + "reference": "27cb9f7cfa3853c736425c7233a8f68814b19636" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/72ca213014a92223a5d18651ce79ef441c12b694", - "reference": "72ca213014a92223a5d18651ce79ef441c12b694", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/27cb9f7cfa3853c736425c7233a8f68814b19636", + "reference": "27cb9f7cfa3853c736425c7233a8f68814b19636", "shasum": "" }, "require": { @@ -9005,6 +9449,9 @@ "debug", "dump" ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v5.2.7" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -9019,36 +9466,35 @@ "type": "tidelift" } ], - "time": "2021-01-27T10:15:41+00:00" + "time": "2021-04-19T14:07:32+00:00" }, { "name": "teamtnt/laravel-scout-tntsearch-driver", - "version": "v11.1.0", + "version": "v11.3.0", "source": { "type": "git", "url": "https://github.com/teamtnt/laravel-scout-tntsearch-driver.git", - "reference": "a9c27a68dc2bd74fb354165633520de95708215d" + "reference": "dc4be1a37c1dc56da879f4b4a0d844ec8374a8f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/teamtnt/laravel-scout-tntsearch-driver/zipball/a9c27a68dc2bd74fb354165633520de95708215d", - "reference": "a9c27a68dc2bd74fb354165633520de95708215d", + "url": "https://api.github.com/repos/teamtnt/laravel-scout-tntsearch-driver/zipball/dc4be1a37c1dc56da879f4b4a0d844ec8374a8f9", + "reference": "dc4be1a37c1dc56da879f4b4a0d844ec8374a8f9", "shasum": "" }, "require": { "illuminate/bus": "~5.4|^6.0|^7.0|^8.0", "illuminate/contracts": "~5.4|^6.0|^7.0|^8.0", - "illuminate/database": "~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", "php": ">=7.1", - "teamtnt/tntsearch": "2.*" + "teamtnt/tntsearch": "2.7.0" }, "require-dev": { "mockery/mockery": "^1.0", - "phpunit/phpunit": "^8.0|^9.3" + "phpunit/phpunit": "^7.0|^8.0|^9.0" }, "suggest": { "teamtnt/tntsearch": "Required to use the TNTSearch engine." @@ -9086,20 +9532,24 @@ "search", "tntsearch" ], - "time": "2020-11-11T11:17:48+00:00" + "support": { + "issues": "https://github.com/teamtnt/laravel-scout-tntsearch-driver/issues", + "source": "https://github.com/teamtnt/laravel-scout-tntsearch-driver/tree/v11.3.0" + }, + "time": "2021-04-27T13:23:03+00:00" }, { "name": "teamtnt/tntsearch", - "version": "v2.6.0", + "version": "v2.7.0", "source": { "type": "git", "url": "https://github.com/teamtnt/tntsearch.git", - "reference": "d9b2d764491c87f03ec214ed8dbc27336cf0c0e4" + "reference": "c7d0f67070ea22e835bb1416b85dee0f74780fdc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/teamtnt/tntsearch/zipball/d9b2d764491c87f03ec214ed8dbc27336cf0c0e4", - "reference": "d9b2d764491c87f03ec214ed8dbc27336cf0c0e4", + "url": "https://api.github.com/repos/teamtnt/tntsearch/zipball/c7d0f67070ea22e835bb1416b85dee0f74780fdc", + "reference": "c7d0f67070ea22e835bb1416b85dee0f74780fdc", "shasum": "" }, "require": { @@ -9109,7 +9559,8 @@ "php": "~7.1|^8" }, "require-dev": { - "phpunit/phpunit": "7.*" + "phpunit/phpunit": "7.*|8.*|9.*", + "symfony/var-dumper": "^4|^5.2" }, "type": "library", "autoload": { @@ -9145,6 +9596,10 @@ "text classification", "tntsearch" ], + "support": { + "issues": "https://github.com/teamtnt/tntsearch/issues", + "source": "https://github.com/teamtnt/tntsearch/tree/v2.7.0" + }, "funding": [ { "url": "https://ko-fi.com/nticaric", @@ -9159,7 +9614,7 @@ "type": "patreon" } ], - "time": "2020-12-21T09:11:54+00:00" + "time": "2021-03-11T15:26:17+00:00" }, { "name": "theseer/tokenizer", @@ -9199,6 +9654,10 @@ } ], "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" + }, "funding": [ { "url": "https://github.com/theseer", @@ -9254,6 +9713,10 @@ ], "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3" + }, "time": "2020-07-13T06:12:54+00:00" }, { @@ -9320,6 +9783,10 @@ "env", "environment" ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.3.0" + }, "funding": [ { "url": "https://github.com/GrahamCampbell", @@ -9378,6 +9845,10 @@ "clean", "php" ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/1.5.6" + }, "funding": [ { "url": "https://www.paypal.me/moelleken", @@ -9404,30 +9875,35 @@ }, { "name": "webmozart/assert", - "version": "1.9.1", + "version": "1.10.0", "source": { "type": "git", "url": "https://github.com/webmozarts/assert.git", - "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389" + "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389", - "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25", + "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0 || ^8.0", + "php": "^7.2 || ^8.0", "symfony/polyfill-ctype": "^1.8" }, "conflict": { "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<3.9.1" + "vimeo/psalm": "<4.6.1 || 4.6.2" }, "require-dev": { - "phpunit/phpunit": "^4.8.36 || ^7.5.13" + "phpunit/phpunit": "^8.5.13" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, "autoload": { "psr-4": { "Webmozart\\Assert\\": "src/" @@ -9449,22 +9925,26 @@ "check", "validate" ], - "time": "2020-07-08T17:02:28+00:00" + "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" } ], "packages-dev": [ { "name": "barryvdh/laravel-ide-helper", - "version": "v2.9.0", + "version": "v2.10.0", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-ide-helper.git", - "reference": "64a6b902583802c162cdccf7e76dc8619368bf1a" + "reference": "73b1012b927633a1b4cd623c2e6b1678e6faef08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/64a6b902583802c162cdccf7e76dc8619368bf1a", - "reference": "64a6b902583802c162cdccf7e76dc8619368bf1a", + "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/73b1012b927633a1b4cd623c2e6b1678e6faef08", + "reference": "73b1012b927633a1b4cd623c2e6b1678e6faef08", "shasum": "" }, "require": { @@ -9475,6 +9955,7 @@ "illuminate/console": "^8", "illuminate/filesystem": "^8", "illuminate/support": "^8", + "nikic/php-parser": "^4.7", "php": "^7.3 || ^8.0", "phpdocumentor/type-resolver": "^1.1.0" }, @@ -9489,6 +9970,9 @@ "spatie/phpunit-snapshot-assertions": "^3 || ^4", "vimeo/psalm": "^3.12" }, + "suggest": { + "illuminate/events": "Required for automatic helper generation (^6|^7|^8)." + }, "type": "library", "extra": { "branch-alias": { @@ -9527,13 +10011,17 @@ "phpstorm", "sublime" ], + "support": { + "issues": "https://github.com/barryvdh/laravel-ide-helper/issues", + "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.10.0" + }, "funding": [ { "url": "https://github.com/barryvdh", "type": "github" } ], - "time": "2020-12-29T10:11:05+00:00" + "time": "2021-04-09T06:17:55+00:00" }, { "name": "barryvdh/reflection-docblock", @@ -9582,6 +10070,9 @@ "email": "mike.vanriel@naenius.com" } ], + "support": { + "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6" + }, "time": "2018-12-13T10:34:14+00:00" }, { @@ -9639,6 +10130,11 @@ "ssl", "tls" ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/ca-bundle/issues", + "source": "https://github.com/composer/ca-bundle/tree/1.2.9" + }, "funding": [ { "url": "https://packagist.com", @@ -9657,23 +10153,24 @@ }, { "name": "composer/composer", - "version": "2.0.11", + "version": "dev-master", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9" + "reference": "4842f213a1e1eee0502d5afb98ef37ff2463c562" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9", - "reference": "a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9", + "url": "https://api.github.com/repos/composer/composer/zipball/4842f213a1e1eee0502d5afb98ef37ff2463c562", + "reference": "4842f213a1e1eee0502d5afb98ef37ff2463c562", "shasum": "" }, "require": { "composer/ca-bundle": "^1.0", + "composer/metadata-minifier": "^1.0", "composer/semver": "^3.0", "composer/spdx-licenses": "^1.2", - "composer/xdebug-handler": "^1.1", + "composer/xdebug-handler": "^2.0", "justinrainbow/json-schema": "^5.2.10", "php": "^5.3.2 || ^7.0 || ^8.0", "psr/log": "^1.0", @@ -9694,13 +10191,14 @@ "ext-zip": "Enabling the zip extension allows you to unzip archives", "ext-zlib": "Allow gzip compression of HTTP requests" }, + "default-branch": true, "bin": [ "bin/composer" ], "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.1-dev" } }, "autoload": { @@ -9731,6 +10229,11 @@ "dependency", "package" ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/composer/issues", + "source": "https://github.com/composer/composer/tree/master" + }, "funding": [ { "url": "https://packagist.com", @@ -9745,7 +10248,76 @@ "type": "tidelift" } ], - "time": "2021-02-24T13:57:23+00:00" + "time": "2021-04-30T08:07:28+00:00" + }, + { + "name": "composer/metadata-minifier", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/composer/metadata-minifier.git", + "reference": "c549d23829536f0d0e984aaabbf02af91f443207" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", + "reference": "c549d23829536f0d0e984aaabbf02af91f443207", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "composer/composer": "^2", + "phpstan/phpstan": "^0.12.55", + "symfony/phpunit-bridge": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\MetadataMinifier\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Small utility library that handles metadata minification and expansion.", + "keywords": [ + "composer", + "compression" + ], + "support": { + "issues": "https://github.com/composer/metadata-minifier/issues", + "source": "https://github.com/composer/metadata-minifier/tree/1.0.0" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2021-04-07T13:37:33+00:00" }, { "name": "composer/spdx-licenses", @@ -9805,6 +10377,11 @@ "spdx", "validator" ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/spdx-licenses/issues", + "source": "https://github.com/composer/spdx-licenses/tree/1.5.5" + }, "funding": [ { "url": "https://packagist.com", @@ -9821,65 +10398,18 @@ ], "time": "2020-12-03T16:04:16+00:00" }, - { - "name": "evenement/evenement", - "version": "v3.0.1", - "source": { - "type": "git", - "url": "https://github.com/igorw/evenement.git", - "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7", - "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7", - "shasum": "" - }, - "require": { - "php": ">=7.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.0" - }, - "type": "library", - "autoload": { - "psr-0": { - "Evenement": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" - } - ], - "description": "Événement is a very simple event dispatching library for PHP", - "keywords": [ - "event-dispatcher", - "event-emitter" - ], - "support": { - "issues": "https://github.com/igorw/evenement/issues", - "source": "https://github.com/igorw/evenement/tree/master" - }, - "time": "2017-07-23T21:35:13+00:00" - }, { "name": "facade/flare-client-php", - "version": "1.4.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://github.com/facade/flare-client-php.git", - "reference": "ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546" + "reference": "69742118c037f34ee1ef86dc605be4a105d9e984" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/flare-client-php/zipball/ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546", - "reference": "ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546", + "url": "https://api.github.com/repos/facade/flare-client-php/zipball/69742118c037f34ee1ef86dc605be4a105d9e984", + "reference": "69742118c037f34ee1ef86dc605be4a105d9e984", "shasum": "" }, "require": { @@ -9921,32 +10451,36 @@ "flare", "reporting" ], + "support": { + "issues": "https://github.com/facade/flare-client-php/issues", + "source": "https://github.com/facade/flare-client-php/tree/1.8.0" + }, "funding": [ { "url": "https://github.com/spatie", "type": "github" } ], - "time": "2021-02-16T12:42:06+00:00" + "time": "2021-04-30T11:11:50+00:00" }, { "name": "facade/ignition", - "version": "2.5.14", + "version": "2.8.4", "source": { "type": "git", "url": "https://github.com/facade/ignition.git", - "reference": "17097f7a83e200d90d1cf9f4d1b35c1001513a47" + "reference": "87fb348dab0ae1a7c206c3e902a5a44ba541742f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/ignition/zipball/17097f7a83e200d90d1cf9f4d1b35c1001513a47", - "reference": "17097f7a83e200d90d1cf9f4d1b35c1001513a47", + "url": "https://api.github.com/repos/facade/ignition/zipball/87fb348dab0ae1a7c206c3e902a5a44ba541742f", + "reference": "87fb348dab0ae1a7c206c3e902a5a44ba541742f", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", - "facade/flare-client-php": "^1.3.7", + "facade/flare-client-php": "^1.6", "facade/ignition-contracts": "^1.0.2", "filp/whoops": "^2.4", "illuminate/support": "^7.0|^8.0", @@ -9998,7 +10532,13 @@ "laravel", "page" ], - "time": "2021-03-04T08:48:01+00:00" + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/facade/ignition/issues", + "source": "https://github.com/facade/ignition" + }, + "time": "2021-04-29T13:55:26+00:00" }, { "name": "facade/ignition-contracts", @@ -10047,20 +10587,89 @@ "flare", "ignition" ], + "support": { + "issues": "https://github.com/facade/ignition-contracts/issues", + "source": "https://github.com/facade/ignition-contracts/tree/1.0.2" + }, "time": "2020-10-16T08:27:54+00:00" }, { - "name": "filp/whoops", - "version": "2.9.2", + "name": "fakerphp/faker", + "version": "v1.14.1", "source": { "type": "git", - "url": "https://github.com/filp/whoops.git", - "reference": "df7933820090489623ce0be5e85c7e693638e536" + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/df7933820090489623ce0be5e85c7e693638e536", - "reference": "df7933820090489623ce0be5e85c7e693638e536", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1", + "reference": "ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "psr/container": "^1.0", + "symfony/deprecation-contracts": "^2.2" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-intl": "*", + "symfony/phpunit-bridge": "^4.4 || ^5.2" + }, + "suggest": { + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "v1.15-dev" + } + }, + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v.1.14.1" + }, + "time": "2021-03-30T06:27:33+00:00" + }, + { + "name": "filp/whoops", + "version": "2.12.1", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "c13c0be93cff50f88bbd70827d993026821914dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/c13c0be93cff50f88bbd70827d993026821914dd", + "reference": "c13c0be93cff50f88bbd70827d993026821914dd", "shasum": "" }, "require": { @@ -10108,64 +10717,17 @@ "throwable", "whoops" ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.12.1" + }, "funding": [ { "url": "https://github.com/denis-sokolov", "type": "github" } ], - "time": "2021-01-24T12:00:00+00:00" - }, - { - "name": "fzaninotto/faker", - "version": "v1.9.2", - "source": { - "type": "git", - "url": "https://github.com/fzaninotto/Faker.git", - "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e", - "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e", - "shasum": "" - }, - "require": { - "php": "^5.3.3 || ^7.0" - }, - "require-dev": { - "ext-intl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7", - "squizlabs/php_codesniffer": "^2.9.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.9-dev" - } - }, - "autoload": { - "psr-4": { - "Faker\\": "src/Faker/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "François Zaninotto" - } - ], - "description": "Faker is a PHP library that generates fake data for you.", - "keywords": [ - "data", - "faker", - "fixtures" - ], - "abandoned": true, - "time": "2020-12-11T09:56:16+00:00" + "time": "2021-04-25T12:00:00+00:00" }, { "name": "hamcrest/hamcrest-php", @@ -10212,6 +10774,10 @@ "keywords": [ "test" ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, "time": "2020-07-09T08:09:16+00:00" }, { @@ -10278,6 +10844,10 @@ "json", "schema" ], + "support": { + "issues": "https://github.com/justinrainbow/json-schema/issues", + "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10" + }, "time": "2020-05-27T16:41:55+00:00" }, { @@ -10346,20 +10916,24 @@ "test double", "testing" ], + "support": { + "issues": "https://github.com/mockery/mockery/issues", + "source": "https://github.com/mockery/mockery/tree/1.4.3" + }, "time": "2021-02-24T09:51:49+00:00" }, { "name": "nunomaduro/collision", - "version": "v5.3.0", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "aca63581f380f63a492b1e3114604e411e39133a" + "reference": "41b7e9999133d5082700d31a1d0977161df8322a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/aca63581f380f63a492b1e3114604e411e39133a", - "reference": "aca63581f380f63a492b1e3114604e411e39133a", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/41b7e9999133d5082700d31a1d0977161df8322a", + "reference": "41b7e9999133d5082700d31a1d0977161df8322a", "shasum": "" }, "require": { @@ -10416,6 +10990,10 @@ "php", "symfony" ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, "funding": [ { "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L", @@ -10430,209 +11008,7 @@ "type": "patreon" } ], - "time": "2021-01-25T15:34:13+00:00" - }, - { - "name": "react/cache", - "version": "v1.1.1", - "source": { - "type": "git", - "url": "https://github.com/reactphp/cache.git", - "reference": "4bf736a2cccec7298bdf745db77585966fc2ca7e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/cache/zipball/4bf736a2cccec7298bdf745db77585966fc2ca7e", - "reference": "4bf736a2cccec7298bdf745db77585966fc2ca7e", - "shasum": "" - }, - "require": { - "php": ">=5.3.0", - "react/promise": "^3.0 || ^2.0 || ^1.1" - }, - "require-dev": { - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\Cache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "Async, Promise-based cache interface for ReactPHP", - "keywords": [ - "cache", - "caching", - "promise", - "reactphp" - ], - "support": { - "issues": "https://github.com/reactphp/cache/issues", - "source": "https://github.com/reactphp/cache/tree/v1.1.1" - }, - "funding": [ - { - "url": "https://github.com/WyriHaximus", - "type": "github" - }, - { - "url": "https://github.com/clue", - "type": "github" - } - ], - "time": "2021-02-02T06:47:52+00:00" - }, - { - "name": "react/dns", - "version": "v1.5.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/dns.git", - "reference": "b22b0b20278e8535e633ab71a52472c5bf620aa1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/dns/zipball/b22b0b20278e8535e633ab71a52472c5bf620aa1", - "reference": "b22b0b20278e8535e633ab71a52472c5bf620aa1", - "shasum": "" - }, - "require": { - "php": ">=5.3.0", - "react/cache": "^1.0 || ^0.6 || ^0.5", - "react/event-loop": "^1.0 || ^0.5", - "react/promise": "^3.0 || ^2.7 || ^1.2.1", - "react/promise-timer": "^1.2" - }, - "require-dev": { - "clue/block-react": "^1.2", - "phpunit/phpunit": "^9.3 || ^4.8.35" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\Dns\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "Async DNS resolver for ReactPHP", - "keywords": [ - "async", - "dns", - "dns-resolver", - "reactphp" - ], - "support": { - "issues": "https://github.com/reactphp/dns/issues", - "source": "https://github.com/reactphp/dns/tree/v1.5.0" - }, - "funding": [ - { - "url": "https://github.com/WyriHaximus", - "type": "github" - }, - { - "url": "https://github.com/clue", - "type": "github" - } - ], - "time": "2021-03-05T12:16:50+00:00" - }, - { - "name": "react/event-loop", - "version": "v1.1.1", - "source": { - "type": "git", - "url": "https://github.com/reactphp/event-loop.git", - "reference": "6d24de090cd59cfc830263cfba965be77b563c13" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/event-loop/zipball/6d24de090cd59cfc830263cfba965be77b563c13", - "reference": "6d24de090cd59cfc830263cfba965be77b563c13", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35" - }, - "suggest": { - "ext-event": "~1.0 for ExtEventLoop", - "ext-pcntl": "For signal handling support when using the StreamSelectLoop", - "ext-uv": "* for ExtUvLoop" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\EventLoop\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.", - "keywords": [ - "asynchronous", - "event-loop" - ], - "support": { - "issues": "https://github.com/reactphp/event-loop/issues", - "source": "https://github.com/reactphp/event-loop/tree/v1.1.1" - }, - "time": "2020-01-01T18:39:52+00:00" + "time": "2021-04-09T13:38:32+00:00" }, { "name": "react/promise", @@ -10678,199 +11054,12 @@ "promise", "promises" ], + "support": { + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v2.8.0" + }, "time": "2020-05-12T15:16:56+00:00" }, - { - "name": "react/promise-timer", - "version": "v1.6.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/promise-timer.git", - "reference": "daee9baf6ef30c43ea4c86399f828bb5f558f6e6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/daee9baf6ef30c43ea4c86399f828bb5f558f6e6", - "reference": "daee9baf6ef30c43ea4c86399f828bb5f558f6e6", - "shasum": "" - }, - "require": { - "php": ">=5.3", - "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5", - "react/promise": "^3.0 || ^2.7.0 || ^1.2.1" - }, - "require-dev": { - "phpunit/phpunit": "^9.0 || ^5.7 || ^4.8.35" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\Promise\\Timer\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@lueck.tv" - } - ], - "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.", - "homepage": "https://github.com/reactphp/promise-timer", - "keywords": [ - "async", - "event-loop", - "promise", - "reactphp", - "timeout", - "timer" - ], - "support": { - "issues": "https://github.com/reactphp/promise-timer/issues", - "source": "https://github.com/reactphp/promise-timer/tree/v1.6.0" - }, - "time": "2020-07-10T12:18:06+00:00" - }, - { - "name": "react/socket", - "version": "v1.6.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/socket.git", - "reference": "e2b96b23a13ca9b41ab343268dbce3f8ef4d524a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/socket/zipball/e2b96b23a13ca9b41ab343268dbce3f8ef4d524a", - "reference": "e2b96b23a13ca9b41ab343268dbce3f8ef4d524a", - "shasum": "" - }, - "require": { - "evenement/evenement": "^3.0 || ^2.0 || ^1.0", - "php": ">=5.3.0", - "react/dns": "^1.1", - "react/event-loop": "^1.0 || ^0.5", - "react/promise": "^2.6.0 || ^1.2.1", - "react/promise-timer": "^1.4.0", - "react/stream": "^1.1" - }, - "require-dev": { - "clue/block-react": "^1.2", - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35", - "react/promise-stream": "^1.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\Socket\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP", - "keywords": [ - "Connection", - "Socket", - "async", - "reactphp", - "stream" - ], - "support": { - "issues": "https://github.com/reactphp/socket/issues", - "source": "https://github.com/reactphp/socket/tree/v1.6.0" - }, - "funding": [ - { - "url": "https://github.com/WyriHaximus", - "type": "github" - }, - { - "url": "https://github.com/clue", - "type": "github" - } - ], - "time": "2020-08-28T12:49:05+00:00" - }, - { - "name": "react/stream", - "version": "v1.1.1", - "source": { - "type": "git", - "url": "https://github.com/reactphp/stream.git", - "reference": "7c02b510ee3f582c810aeccd3a197b9c2f52ff1a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/stream/zipball/7c02b510ee3f582c810aeccd3a197b9c2f52ff1a", - "reference": "7c02b510ee3f582c810aeccd3a197b9c2f52ff1a", - "shasum": "" - }, - "require": { - "evenement/evenement": "^3.0 || ^2.0 || ^1.0", - "php": ">=5.3.8", - "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5" - }, - "require-dev": { - "clue/stream-filter": "~1.2", - "phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35" - }, - "type": "library", - "autoload": { - "psr-4": { - "React\\Stream\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP", - "keywords": [ - "event-driven", - "io", - "non-blocking", - "pipe", - "reactphp", - "readable", - "stream", - "writable" - ], - "support": { - "issues": "https://github.com/reactphp/stream/issues", - "source": "https://github.com/reactphp/stream/tree/v1.1.1" - }, - "time": "2020-05-04T10:17:57+00:00" - }, { "name": "seld/jsonlint", "version": "1.8.3", @@ -10918,6 +11107,10 @@ "parser", "validator" ], + "support": { + "issues": "https://github.com/Seldaek/jsonlint/issues", + "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3" + }, "funding": [ { "url": "https://github.com/Seldaek", @@ -10972,76 +11165,11 @@ "keywords": [ "phar" ], - "time": "2020-07-07T18:42:57+00:00" - }, - { - "name": "supliu/laravel-query-monitor", - "version": "1.0.2", - "source": { - "type": "git", - "url": "https://github.com/supliu/laravel-query-monitor.git", - "reference": "f609e30cfc544a3621b8b4799aef6908f89c1ae8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/supliu/laravel-query-monitor/zipball/f609e30cfc544a3621b8b4799aef6908f89c1ae8", - "reference": "f609e30cfc544a3621b8b4799aef6908f89c1ae8", - "shasum": "" - }, - "require": { - "laravel/framework": "^5.6 || ^6.0 || ^7.0 || ^8.0", - "php": "^7.3", - "react/socket": "^1.4" - }, - "require-dev": { - "orchestra/testbench": "^3.6 || ^4.0 || ^5.0 || ^6.0", - "phpunit/phpunit": "^9.2@dev" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - }, - "laravel": { - "providers": [ - "Supliu\\LaravelQueryMonitor\\ServiceProvider" - ] - } - }, - "autoload": { - "psr-4": { - "Supliu\\LaravelQueryMonitor\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jansen Felipe", - "email": "jansen.felipe@gmail.com" - } - ], - "description": "Laravel Query Monitor", - "keywords": [ - "eloquent", - "laravel", - "monitor", - "query", - "sql" - ], "support": { - "issues": "https://github.com/supliu/laravel-query-monitor/issues", - "source": "https://github.com/supliu/laravel-query-monitor/tree/1.0.2" + "issues": "https://github.com/Seldaek/phar-utils/issues", + "source": "https://github.com/Seldaek/phar-utils/tree/master" }, - "funding": [ - { - "url": "https://www.patreon.com/supliutech", - "type": "patreon" - } - ], - "time": "2021-03-04T14:35:53+00:00" + "time": "2020-07-07T18:42:57+00:00" } ], "aliases": [], @@ -11050,7 +11178,7 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": "^7.3", + "php": "^8.0", "ext-json": "*" }, "platform-dev": { From 6052174b83ccba86306ff20600da7efd2e5eb225 Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Sun, 2 May 2021 16:27:18 +0200 Subject: [PATCH 08/42] psalm implementation --- composer.json | 6 +- composer.lock | 638 ++++++++++++++++++++++++++++++++++++++++++++++++- psalm.xml.dist | 16 ++ 3 files changed, 657 insertions(+), 3 deletions(-) create mode 100644 psalm.xml.dist diff --git a/composer.json b/composer.json index 7133aa86..2ac7c1a2 100644 --- a/composer.json +++ b/composer.json @@ -31,7 +31,8 @@ "league/flysystem-cached-adapter": "^1.1.0", "madnest/madzipper": "^1.1.0", "spatie/laravel-backup": "^6.15", - "teamtnt/laravel-scout-tntsearch-driver": "^11.1.0" + "teamtnt/laravel-scout-tntsearch-driver": "^11.1.0", + "vimeo/psalm": "^4.7" }, "require-dev": { "ext-json": "*", @@ -84,6 +85,7 @@ "post-create-project-cmd": [ "@php artisan key:generate --ansi" ], - "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes" + "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes", + "psalm": "vendor/bin/psalm" } } diff --git a/composer.lock b/composer.lock index 6dd903b2..604795b9 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,174 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "42886207eb10fdc36957ec6566bfafa8", + "content-hash": "4e16bea1b4f5f094b9ee6546975dbf14", "packages": [ + { + "name": "amphp/amp", + "version": "v2.5.2", + "source": { + "type": "git", + "url": "https://github.com/amphp/amp.git", + "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/amphp/amp/zipball/efca2b32a7580087adb8aabbff6be1dc1bb924a9", + "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9", + "shasum": "" + }, + "require": { + "php": ">=7" + }, + "require-dev": { + "amphp/php-cs-fixer-config": "dev-master", + "amphp/phpunit-util": "^1", + "ext-json": "*", + "jetbrains/phpstorm-stubs": "^2019.3", + "phpunit/phpunit": "^6.0.9 | ^7", + "psalm/phar": "^3.11@dev", + "react/promise": "^2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Amp\\": "lib" + }, + "files": [ + "lib/functions.php", + "lib/Internal/functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Daniel Lowrey", + "email": "rdlowrey@php.net" + }, + { + "name": "Aaron Piotrowski", + "email": "aaron@trowski.com" + }, + { + "name": "Bob Weinand", + "email": "bobwei9@hotmail.com" + }, + { + "name": "Niklas Keller", + "email": "me@kelunik.com" + } + ], + "description": "A non-blocking concurrency framework for PHP applications.", + "homepage": "http://amphp.org/amp", + "keywords": [ + "async", + "asynchronous", + "awaitable", + "concurrency", + "event", + "event-loop", + "future", + "non-blocking", + "promise" + ], + "support": { + "irc": "irc://irc.freenode.org/amphp", + "issues": "https://github.com/amphp/amp/issues", + "source": "https://github.com/amphp/amp/tree/v2.5.2" + }, + "funding": [ + { + "url": "https://github.com/amphp", + "type": "github" + } + ], + "time": "2021-01-10T17:06:37+00:00" + }, + { + "name": "amphp/byte-stream", + "version": "v1.8.1", + "source": { + "type": "git", + "url": "https://github.com/amphp/byte-stream.git", + "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd", + "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd", + "shasum": "" + }, + "require": { + "amphp/amp": "^2", + "php": ">=7.1" + }, + "require-dev": { + "amphp/php-cs-fixer-config": "dev-master", + "amphp/phpunit-util": "^1.4", + "friendsofphp/php-cs-fixer": "^2.3", + "jetbrains/phpstorm-stubs": "^2019.3", + "phpunit/phpunit": "^6 || ^7 || ^8", + "psalm/phar": "^3.11.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Amp\\ByteStream\\": "lib" + }, + "files": [ + "lib/functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Aaron Piotrowski", + "email": "aaron@trowski.com" + }, + { + "name": "Niklas Keller", + "email": "me@kelunik.com" + } + ], + "description": "A stream abstraction to make working with non-blocking I/O simple.", + "homepage": "http://amphp.org/byte-stream", + "keywords": [ + "amp", + "amphp", + "async", + "io", + "non-blocking", + "stream" + ], + "support": { + "irc": "irc://irc.freenode.org/amphp", + "issues": "https://github.com/amphp/byte-stream/issues", + "source": "https://github.com/amphp/byte-stream/tree/v1.8.1" + }, + "funding": [ + { + "url": "https://github.com/amphp", + "type": "github" + } + ], + "time": "2021-03-30T17:13:30+00:00" + }, { "name": "asm89/stack-cors", "version": "v2.0.3", @@ -479,6 +645,79 @@ }, "time": "2020-12-23T13:33:41+00:00" }, + { + "name": "composer/package-versions-deprecated", + "version": "1.11.99.1", + "source": { + "type": "git", + "url": "https://github.com/composer/package-versions-deprecated.git", + "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/7413f0b55a051e89485c5cb9f765fe24bb02a7b6", + "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.1.0 || ^2.0", + "php": "^7 || ^8" + }, + "replace": { + "ocramius/package-versions": "1.11.99" + }, + "require-dev": { + "composer/composer": "^1.9.3 || ^2.0@dev", + "ext-zip": "^1.13", + "phpunit/phpunit": "^6.5 || ^7" + }, + "type": "composer-plugin", + "extra": { + "class": "PackageVersions\\Installer", + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "PackageVersions\\": "src/PackageVersions" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" + } + ], + "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", + "support": { + "issues": "https://github.com/composer/package-versions-deprecated/issues", + "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.1" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-11-11T10:22:58+00:00" + }, { "name": "composer/semver", "version": "3.2.4", @@ -671,6 +910,43 @@ }, "time": "2020-10-02T16:03:48+00:00" }, + { + "name": "dnoegel/php-xdg-base-dir", + "version": "v0.1.1", + "source": { + "type": "git", + "url": "https://github.com/dnoegel/php-xdg-base-dir.git", + "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", + "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35" + }, + "type": "library", + "autoload": { + "psr-4": { + "XdgBaseDir\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "implementation of xdg base directory specification for php", + "support": { + "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues", + "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1" + }, + "time": "2019-12-04T15:06:13+00:00" + }, { "name": "doctrine/annotations", "version": "1.12.1", @@ -1529,6 +1805,107 @@ ], "time": "2020-12-29T14:50:06+00:00" }, + { + "name": "felixfbecker/advanced-json-rpc", + "version": "v3.2.0", + "source": { + "type": "git", + "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git", + "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/06f0b06043c7438959dbdeed8bb3f699a19be22e", + "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e", + "shasum": "" + }, + "require": { + "netresearch/jsonmapper": "^1.0 || ^2.0", + "php": "^7.1 || ^8.0", + "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0" + }, + "require-dev": { + "phpunit/phpunit": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "AdvancedJsonRpc\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "ISC" + ], + "authors": [ + { + "name": "Felix Becker", + "email": "felix.b@outlook.com" + } + ], + "description": "A more advanced JSONRPC implementation", + "support": { + "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues", + "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.0" + }, + "time": "2021-01-10T17:48:47+00:00" + }, + { + "name": "felixfbecker/language-server-protocol", + "version": "1.5.1", + "source": { + "type": "git", + "url": "https://github.com/felixfbecker/php-language-server-protocol.git", + "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/9d846d1f5cf101deee7a61c8ba7caa0a975cd730", + "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "phpstan/phpstan": "*", + "squizlabs/php_codesniffer": "^3.1", + "vimeo/psalm": "^4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "LanguageServerProtocol\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "ISC" + ], + "authors": [ + { + "name": "Felix Becker", + "email": "felix.b@outlook.com" + } + ], + "description": "PHP classes for the Language Server Protocol", + "keywords": [ + "language", + "microsoft", + "php", + "server" + ], + "support": { + "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues", + "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/1.5.1" + }, + "time": "2021-02-22T14:02:09+00:00" + }, { "name": "fideloper/proxy", "version": "4.4.1", @@ -3753,6 +4130,57 @@ ], "time": "2021-02-24T17:30:44+00:00" }, + { + "name": "netresearch/jsonmapper", + "version": "v2.1.0", + "source": { + "type": "git", + "url": "https://github.com/cweiske/jsonmapper.git", + "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/e0f1e33a71587aca81be5cffbb9746510e1fe04e", + "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-pcre": "*", + "ext-reflection": "*", + "ext-spl": "*", + "php": ">=5.6" + }, + "require-dev": { + "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4 || ~7.0", + "squizlabs/php_codesniffer": "~3.5" + }, + "type": "library", + "autoload": { + "psr-0": { + "JsonMapper": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "OSL-3.0" + ], + "authors": [ + { + "name": "Christian Weiske", + "email": "cweiske@cweiske.de", + "homepage": "http://github.com/cweiske/jsonmapper/", + "role": "Developer" + } + ], + "description": "Map nested JSON structures onto PHP classes", + "support": { + "email": "cweiske@cweiske.de", + "issues": "https://github.com/cweiske/jsonmapper/issues", + "source": "https://github.com/cweiske/jsonmapper/tree/master" + }, + "time": "2020-04-16T18:48:43+00:00" + }, { "name": "nikic/php-parser", "version": "v4.10.4", @@ -3809,6 +4237,59 @@ }, "time": "2020-12-20T10:01:03+00:00" }, + { + "name": "openlss/lib-array2xml", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/nullivex/lib-array2xml.git", + "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90", + "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "type": "library", + "autoload": { + "psr-0": { + "LSS": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Bryan Tong", + "email": "bryan@nullivex.com", + "homepage": "https://www.nullivex.com" + }, + { + "name": "Tony Butler", + "email": "spudz76@gmail.com", + "homepage": "https://www.nullivex.com" + } + ], + "description": "Array2XML conversion library credit to lalit.org", + "homepage": "https://www.nullivex.com", + "keywords": [ + "array", + "array conversion", + "xml", + "xml conversion" + ], + "support": { + "issues": "https://github.com/nullivex/lib-array2xml/issues", + "source": "https://github.com/nullivex/lib-array2xml/tree/master" + }, + "time": "2019-03-29T20:06:56+00:00" + }, { "name": "opis/closure", "version": "3.6.2", @@ -9719,6 +10200,111 @@ }, "time": "2020-07-13T06:12:54+00:00" }, + { + "name": "vimeo/psalm", + "version": "4.7.2", + "source": { + "type": "git", + "url": "https://github.com/vimeo/psalm.git", + "reference": "83a0325c0a95c0ab531d6b90c877068b464377b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vimeo/psalm/zipball/83a0325c0a95c0ab531d6b90c877068b464377b5", + "reference": "83a0325c0a95c0ab531d6b90c877068b464377b5", + "shasum": "" + }, + "require": { + "amphp/amp": "^2.4.2", + "amphp/byte-stream": "^1.5", + "composer/package-versions-deprecated": "^1.8.0", + "composer/semver": "^1.4 || ^2.0 || ^3.0", + "composer/xdebug-handler": "^1.1 || ^2.0", + "dnoegel/php-xdg-base-dir": "^0.1.1", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-simplexml": "*", + "ext-tokenizer": "*", + "felixfbecker/advanced-json-rpc": "^3.0.3", + "felixfbecker/language-server-protocol": "^1.5", + "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0", + "nikic/php-parser": "^4.10.1", + "openlss/lib-array2xml": "^1.0", + "php": "^7.1|^8", + "sebastian/diff": "^3.0 || ^4.0", + "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0", + "webmozart/path-util": "^2.3" + }, + "provide": { + "psalm/psalm": "self.version" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2", + "brianium/paratest": "^4.0||^6.0", + "ext-curl": "*", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpdocumentor/reflection-docblock": "^5", + "phpmyadmin/sql-parser": "5.1.0||dev-master", + "phpspec/prophecy": ">=1.9.0", + "phpunit/phpunit": "^9.0", + "psalm/plugin-phpunit": "^0.13", + "slevomat/coding-standard": "^6.3.11", + "squizlabs/php_codesniffer": "^3.5", + "symfony/process": "^4.3", + "weirdan/phpunit-appveyor-reporter": "^1.0.0", + "weirdan/prophecy-shim": "^1.0 || ^2.0" + }, + "suggest": { + "ext-igbinary": "^2.0.5" + }, + "bin": [ + "psalm", + "psalm-language-server", + "psalm-plugin", + "psalm-refactor", + "psalter" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev", + "dev-3.x": "3.x-dev", + "dev-2.x": "2.x-dev", + "dev-1.x": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psalm\\": "src/Psalm/" + }, + "files": [ + "src/functions.php", + "src/spl_object_id.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matthew Brown" + } + ], + "description": "A static analysis tool for finding errors in PHP applications", + "keywords": [ + "code", + "inspection", + "php" + ], + "support": { + "issues": "https://github.com/vimeo/psalm/issues", + "source": "https://github.com/vimeo/psalm/tree/4.7.2" + }, + "time": "2021-05-01T20:56:25+00:00" + }, { "name": "vlucas/phpdotenv", "version": "v5.3.0", @@ -9930,6 +10516,56 @@ "source": "https://github.com/webmozarts/assert/tree/1.10.0" }, "time": "2021-03-09T10:59:23+00:00" + }, + { + "name": "webmozart/path-util", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://github.com/webmozart/path-util.git", + "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "webmozart/assert": "~1.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.3-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\PathUtil\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", + "support": { + "issues": "https://github.com/webmozart/path-util/issues", + "source": "https://github.com/webmozart/path-util/tree/2.3.0" + }, + "time": "2015-12-17T08:42:14+00:00" } ], "packages-dev": [ diff --git a/psalm.xml.dist b/psalm.xml.dist new file mode 100644 index 00000000..f327d329 --- /dev/null +++ b/psalm.xml.dist @@ -0,0 +1,16 @@ + + + + + + + + + From 8c6e0321fd7ca394c9d39a94344d9d40e1d2ad3a Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Mon, 3 May 2021 07:28:26 +0200 Subject: [PATCH 09/42] added spatie/laravel-tail --- composer.json | 1 + composer.lock | 458 +++++++++++++++++++++++++++++++++++--------------- 2 files changed, 326 insertions(+), 133 deletions(-) diff --git a/composer.json b/composer.json index 2ac7c1a2..42b3a855 100644 --- a/composer.json +++ b/composer.json @@ -31,6 +31,7 @@ "league/flysystem-cached-adapter": "^1.1.0", "madnest/madzipper": "^1.1.0", "spatie/laravel-backup": "^6.15", + "spatie/laravel-tail": "^4.3", "teamtnt/laravel-scout-tntsearch-driver": "^11.1.0", "vimeo/psalm": "^4.7" }, diff --git a/composer.lock b/composer.lock index 604795b9..a17380b4 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": "4e16bea1b4f5f094b9ee6546975dbf14", + "content-hash": "09e26e1bf9957b81661600c3e0094b93", "packages": [ { "name": "amphp/amp", @@ -2500,6 +2500,57 @@ }, "time": "2021-04-26T09:17:50+00:00" }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, { "name": "intervention/image", "version": "2.5.1", @@ -3736,6 +3787,78 @@ }, "time": "2020-12-01T23:44:14+00:00" }, + { + "name": "mockery/mockery", + "version": "1.4.3", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea", + "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": "^7.3 || ^8.0" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "autoload": { + "psr-0": { + "Mockery": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "http://blog.astrumfutura.com" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "http://davedevelopment.co.uk" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "issues": "https://github.com/mockery/mockery/issues", + "source": "https://github.com/mockery/mockery/tree/1.4.3" + }, + "time": "2021-02-24T09:51:49+00:00" + }, { "name": "moneyphp/money", "version": "v3.3.1", @@ -4039,16 +4162,16 @@ }, { "name": "nesbot/carbon", - "version": "2.46.0", + "version": "2.47.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4" + "reference": "606262fd8888b75317ba9461825a24fc34001e1e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4", - "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/606262fd8888b75317ba9461825a24fc34001e1e", + "reference": "606262fd8888b75317ba9461825a24fc34001e1e", "shasum": "" }, "require": { @@ -4128,7 +4251,7 @@ "type": "tidelift" } ], - "time": "2021-02-24T17:30:44+00:00" + "time": "2021-04-13T21:54:02+00:00" }, { "name": "netresearch/jsonmapper", @@ -7244,6 +7367,198 @@ ], "time": "2021-04-15T09:31:32+00:00" }, + { + "name": "spatie/laravel-package-tools", + "version": "1.6.3", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-package-tools.git", + "reference": "97b53951e9623b3e38babf274c335913bf320a1a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/97b53951e9623b3e38babf274c335913bf320a1a", + "reference": "97b53951e9623b3e38babf274c335913bf320a1a", + "shasum": "" + }, + "require": { + "illuminate/contracts": "^7.0|^8.0", + "mockery/mockery": "^1.4", + "php": "^7.4|^8.0" + }, + "require-dev": { + "orchestra/testbench": "^5.0|^6.0", + "phpunit/phpunit": "^9.3", + "spatie/test-time": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\LaravelPackageTools\\": "src", + "Spatie\\LaravelPackageTools\\Database\\Factories\\": "database/factories" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "role": "Developer" + } + ], + "description": "Tools for creating Laravel packages", + "homepage": "https://github.com/spatie/laravel-package-tools", + "keywords": [ + "laravel-package-tools", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/laravel-package-tools/issues", + "source": "https://github.com/spatie/laravel-package-tools/tree/1.6.3" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2021-04-27T06:17:34+00:00" + }, + { + "name": "spatie/laravel-tail", + "version": "4.3.2", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-tail.git", + "reference": "cf003b577459613c6e439d25c1c5ac70f23658cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-tail/zipball/cf003b577459613c6e439d25c1c5ac70f23658cf", + "reference": "cf003b577459613c6e439d25c1c5ac70f23658cf", + "shasum": "" + }, + "require": { + "illuminate/console": "^7.0|^8.0", + "illuminate/support": "^7.0|^8.0", + "php": "^7.4|^8.0", + "spatie/laravel-package-tools": "^1.0.0", + "spatie/ssh": "^1.4", + "symfony/process": "^4.0|^5.0" + }, + "require-dev": { + "mockery/mockery": "^1.4", + "orchestra/testbench": "^5.0|^6.0", + "phpunit/phpunit": "^9.4" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Spatie\\Tail\\TailServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Spatie\\Tail\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "homepage": "https://murze.be", + "role": "Developer" + } + ], + "description": "Easily tail application logs", + "homepage": "https://github.com/spatie/laravel-tail", + "keywords": [ + "development", + "laravel", + "laravel-tail", + "log", + "tail" + ], + "support": { + "issues": "https://github.com/spatie/laravel-tail/issues", + "source": "https://github.com/spatie/laravel-tail/tree/4.3.2" + }, + "funding": [ + { + "url": "https://spatie.be/open-source/support-us", + "type": "custom" + } + ], + "time": "2021-01-25T13:58:50+00:00" + }, + { + "name": "spatie/ssh", + "version": "1.6.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/ssh.git", + "reference": "4266927d26a26082e013cdd710a00bad487455df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/ssh/zipball/4266927d26a26082e013cdd710a00bad487455df", + "reference": "4266927d26a26082e013cdd710a00bad487455df", + "shasum": "" + }, + "require": { + "php": "^8.0|^7.4", + "symfony/process": "^4.3 || ^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.4", + "spatie/phpunit-snapshot-assertions": "^4.0", + "symfony/var-dumper": "^5.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Ssh\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "A lightweight package to execute commands over an SSH connection", + "homepage": "https://github.com/spatie/ssh", + "keywords": [ + "spatie", + "ssh" + ], + "support": { + "issues": "https://github.com/spatie/ssh/issues", + "source": "https://github.com/spatie/ssh/tree/1.6.0" + }, + "funding": [ + { + "url": "https://spatie.be/open-source/support-us", + "type": "custom" + } + ], + "time": "2021-03-10T13:41:32+00:00" + }, { "name": "spatie/temporary-directory", "version": "1.3.0", @@ -10793,12 +11108,12 @@ "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "4842f213a1e1eee0502d5afb98ef37ff2463c562" + "reference": "bfea0f7d1e991f237ccf448b0a0d24ede02d923a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/4842f213a1e1eee0502d5afb98ef37ff2463c562", - "reference": "4842f213a1e1eee0502d5afb98ef37ff2463c562", + "url": "https://api.github.com/repos/composer/composer/zipball/bfea0f7d1e991f237ccf448b0a0d24ede02d923a", + "reference": "bfea0f7d1e991f237ccf448b0a0d24ede02d923a", "shasum": "" }, "require": { @@ -10884,7 +11199,7 @@ "type": "tidelift" } ], - "time": "2021-04-30T08:07:28+00:00" + "time": "2021-05-02T14:50:42+00:00" }, { "name": "composer/metadata-minifier", @@ -11365,57 +11680,6 @@ ], "time": "2021-04-25T12:00:00+00:00" }, - { - "name": "hamcrest/hamcrest-php", - "version": "v2.0.1", - "source": { - "type": "git", - "url": "https://github.com/hamcrest/hamcrest-php.git", - "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", - "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", - "shasum": "" - }, - "require": { - "php": "^5.3|^7.0|^8.0" - }, - "replace": { - "cordoval/hamcrest-php": "*", - "davedevelopment/hamcrest-php": "*", - "kodova/hamcrest-php": "*" - }, - "require-dev": { - "phpunit/php-file-iterator": "^1.4 || ^2.0", - "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.1-dev" - } - }, - "autoload": { - "classmap": [ - "hamcrest" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "This is the PHP port of Hamcrest Matchers", - "keywords": [ - "test" - ], - "support": { - "issues": "https://github.com/hamcrest/hamcrest-php/issues", - "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" - }, - "time": "2020-07-09T08:09:16+00:00" - }, { "name": "justinrainbow/json-schema", "version": "5.2.10", @@ -11486,78 +11750,6 @@ }, "time": "2020-05-27T16:41:55+00:00" }, - { - "name": "mockery/mockery", - "version": "1.4.3", - "source": { - "type": "git", - "url": "https://github.com/mockery/mockery.git", - "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea", - "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea", - "shasum": "" - }, - "require": { - "hamcrest/hamcrest-php": "^2.0.1", - "lib-pcre": ">=7.0", - "php": "^7.3 || ^8.0" - }, - "conflict": { - "phpunit/phpunit": "<8.0" - }, - "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4.x-dev" - } - }, - "autoload": { - "psr-0": { - "Mockery": "library/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Pádraic Brady", - "email": "padraic.brady@gmail.com", - "homepage": "http://blog.astrumfutura.com" - }, - { - "name": "Dave Marshall", - "email": "dave.marshall@atstsolutions.co.uk", - "homepage": "http://davedevelopment.co.uk" - } - ], - "description": "Mockery is a simple yet flexible PHP mock object framework", - "homepage": "https://github.com/mockery/mockery", - "keywords": [ - "BDD", - "TDD", - "library", - "mock", - "mock objects", - "mockery", - "stub", - "test", - "test double", - "testing" - ], - "support": { - "issues": "https://github.com/mockery/mockery/issues", - "source": "https://github.com/mockery/mockery/tree/1.4.3" - }, - "time": "2021-02-24T09:51:49+00:00" - }, { "name": "nunomaduro/collision", "version": "v5.4.0", From 6b43464e85038b0c7b4896a652e8dc471f7f8943 Mon Sep 17 00:00:00 2001 From: MakingCG Date: Mon, 3 May 2021 05:28:54 +0000 Subject: [PATCH 10/42] Fix backend code styling --- .php_cs.cache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.php_cs.cache b/.php_cs.cache index ded2cb9b..bd63a675 100644 --- a/.php_cs.cache +++ b/.php_cs.cache @@ -1 +1 @@ -{"php":"8.0.3","version":"2.18.5","indent":" ","lineEnding":"\n","rules":{"blank_line_after_namespace":true,"braces":true,"class_definition":true,"constant_case":true,"elseif":true,"function_declaration":true,"indentation_type":true,"line_ending":true,"lowercase_keywords":true,"method_argument_space":{"on_multiline":"ensure_fully_multiline","keep_multiple_spaces_after_comma":true},"no_break_comment":true,"no_closing_tag":true,"no_spaces_after_function_name":true,"no_spaces_inside_parenthesis":true,"no_trailing_whitespace":true,"no_trailing_whitespace_in_comment":true,"single_blank_line_at_eof":true,"single_class_element_per_statement":{"elements":["property"]},"single_import_per_statement":true,"single_line_after_imports":true,"switch_case_semicolon_to_colon":true,"switch_case_space":true,"visibility_required":true,"encoding":true,"full_opening_tag":true,"array_syntax":{"syntax":"short"},"ordered_imports":{"sortAlgorithm":"length"},"blank_line_before_statement":{"statements":["break","case","continue","declare","default","die","do","exit","for","foreach","goto","if","include","include_once","require","require_once","return","switch","throw","try","while","yield","yield_from"]},"class_attributes_separation":{"elements":["method"]},"no_extra_blank_lines":["break","case","continue","curly_brace_block","default","extra","parenthesis_brace_block","return","square_brace_block","switch","throw","use","useTrait","use_trait"],"cast_spaces":{"space":"single"},"phpdoc_single_line_var_spacing":true,"phpdoc_var_without_name":true,"single_space_after_construct":true,"no_unused_imports":true,"not_operator_with_successor_space":true,"trailing_comma_in_multiline_array":true,"phpdoc_scalar":true,"unary_operator_spaces":true,"binary_operator_spaces":true,"no_spaces_around_offset":true,"method_chaining_indentation":true,"array_indentation":true,"single_quote":true,"no_singleline_whitespace_before_semicolons":true,"no_empty_statement":true,"standardize_increment":true,"object_operator_without_whitespace":true,"ternary_operator_spaces":true,"no_leading_namespace_whitespace":true,"no_blank_lines_before_namespace":true,"fully_qualified_strict_types":true,"single_line_throw":true,"function_typehint_space":true,"simplified_if_return":true,"no_useless_else":true,"no_unneeded_curly_braces":true,"no_empty_comment":true,"no_blank_lines_after_class_opening":true,"whitespace_after_comma_in_array":true,"trim_array_spaces":true,"no_whitespace_before_comma_in_array":true,"lowercase_static_reference":true},"hashes":{"app\/Providers\/EventServiceProvider.php":3395009334,"app\/Providers\/FortifyServiceProvider.php":4138315837,"app\/Providers\/RouteServiceProvider.php":1824013481,"app\/Providers\/AuthServiceProvider.php":169859517,"app\/Providers\/BroadcastServiceProvider.php":3541093703,"app\/Providers\/AppServiceProvider.php":2241922344,"app\/Services\/FileManagerService.php":2226703157,"app\/Services\/StripeService.php":988442640,"app\/Services\/LanguageService.php":2377025800,"app\/Services\/HelperService.php":1615752066,"app\/Services\/DemoService.php":3417423904,"app\/Services\/SchedulerService.php":2085843092,"app\/Services\/SetupService.php":3211368368,"app\/Http\/helpers.php":3539039584,"app\/Http\/Kernel.php":2136109776,"app\/Http\/Mail\/SendContactMessage.php":594829001,"app\/Http\/Requests\/User\/UpdateUserPasswordRequest.php":2221986665,"app\/Http\/Requests\/PublicPages\/SendContactMessageRequest.php":3821039611,"app\/Http\/Requests\/FileBrowser\/SearchRequest.php":202095165,"app\/Http\/Requests\/SetupWizard\/StoreEnvironmentSetupRequest.php":662138835,"app\/Http\/Requests\/SetupWizard\/StoreAppSetupRequest.php":2162069828,"app\/Http\/Requests\/SetupWizard\/StoreDatabaseCredentialsRequest.php":3405038241,"app\/Http\/Requests\/SetupWizard\/StoreStripeBillingRequest.php":2767086903,"app\/Http\/Requests\/SetupWizard\/StoreStripePlansRequest.php":698544961,"app\/Http\/Requests\/SetupWizard\/StoreStripeCredentialsRequest.php":429869546,"app\/Http\/Requests\/FileFunctions\/CreateFolderRequest.php":1300625783,"app\/Http\/Requests\/FileFunctions\/DeleteItemRequest.php":3936258011,"app\/Http\/Requests\/FileFunctions\/UploadRequest.php":2854944424,"app\/Http\/Requests\/FileFunctions\/RenameItemRequest.php":3723095090,"app\/Http\/Requests\/FileFunctions\/MoveItemRequest.php":1125344009,"app\/Http\/Requests\/Admin\/DeleteUserRequest.php":2636618911,"app\/Http\/Requests\/Admin\/ChangeStorageCapacityRequest.php":1669862599,"app\/Http\/Requests\/Admin\/ChangeRoleRequest.php":1925938295,"app\/Http\/Requests\/Admin\/CreateUserByAdmin.php":3365802358,"app\/Http\/Requests\/Share\/AuthenticateShareRequest.php":1928811787,"app\/Http\/Requests\/Share\/CreateShareRequest.php":898178246,"app\/Http\/Requests\/Share\/UpdateShareRequest.php":403673781,"app\/Http\/Requests\/Payments\/RegisterNewPaymentMethodRequest.php":2918618691,"app\/Http\/Requests\/Languages\/CreateLanguageRequest.php":3242997343,"app\/Http\/Requests\/Languages\/UpdateStringRequest.php":477321427,"app\/Http\/Requests\/Languages\/UpdateLanguageRequest.php":3062642093,"app\/Http\/Requests\/Subscription\/StoreUpgradeAccountRequest.php":3421291521,"app\/Http\/Requests\/Auth\/CheckAccountRequest.php":708120184,"app\/Http\/Resources\/LanguageResource.php":1673048322,"app\/Http\/Resources\/PaymentCardCollection.php":35382430,"app\/Http\/Resources\/InvoiceAdminCollection.php":274747241,"app\/Http\/Resources\/PageResource.php":2562874131,"app\/Http\/Resources\/UsersCollection.php":3057145737,"app\/Http\/Resources\/PricingCollection.php":549452717,"app\/Http\/Resources\/PlanCollection.php":1402537053,"app\/Http\/Resources\/PaymentDefaultCardResource.php":1710261108,"app\/Http\/Resources\/FileResource.php":2500497589,"app\/Http\/Resources\/PaymentCardResource.php":407843952,"app\/Http\/Resources\/ShareResource.php":3638836792,"app\/Http\/Resources\/UserResource.php":3514384770,"app\/Http\/Resources\/InvoiceResource.php":4272309745,"app\/Http\/Resources\/InvoiceAdminResource.php":545842233,"app\/Http\/Resources\/InvoiceCollection.php":3442384146,"app\/Http\/Resources\/LanguageCollection.php":1364645788,"app\/Http\/Resources\/PlanResource.php":4254133748,"app\/Http\/Resources\/UserSubscription.php":1868974562,"app\/Http\/Resources\/PricingResource.php":2786525720,"app\/Http\/Resources\/PageCollection.php":842383211,"app\/Http\/Resources\/UserStorageResource.php":3173368149,"app\/Http\/Middleware\/TrimStrings.php":10633912,"app\/Http\/Middleware\/Authenticate.php":829439188,"app\/Http\/Middleware\/PreventRequestsDuringMaintenance.php":2280943271,"app\/Http\/Middleware\/VerifyCsrfToken.php":2876451146,"app\/Http\/Middleware\/EncryptCookies.php":1502216959,"app\/Http\/Middleware\/TrustProxies.php":3573151230,"app\/Http\/Middleware\/CheckForMaintenanceMode.php":3053801562,"app\/Http\/Middleware\/RedirectIfAuthenticated.php":4037446582,"app\/Http\/Notifications\/ConfirmPayment.php":332683570,"app\/Http\/Controllers\/User\/PaymentMethodsController.php":2933452549,"app\/Http\/Controllers\/User\/SubscriptionController.php":2751297300,"app\/Http\/Controllers\/User\/AccountController.php":4219317847,"app\/Http\/Controllers\/App\/SetupWizardController.php":1789728519,"app\/Http\/Controllers\/App\/AppFunctionsController.php":2947857832,"app\/Http\/Controllers\/App\/Maintenance.php":96974254,"app\/Http\/Controllers\/Sharing\/ManipulateShareItemsController.php":14558414,"app\/Http\/Controllers\/Sharing\/BrowseShareController.php":4259232858,"app\/Http\/Controllers\/Sharing\/FileSharedAccessController.php":3821037715,"app\/Http\/Controllers\/Controller.php":2646027293,"app\/Http\/Controllers\/FileManager\/FileAccessController.php":2326554064,"app\/Http\/Controllers\/FileManager\/ShareController.php":2848524553,"app\/Http\/Controllers\/FileManager\/TrashController.php":4243775923,"app\/Http\/Controllers\/FileManager\/EditItemsController.php":2432718425,"app\/Http\/Controllers\/FileManager\/BrowseController.php":115194502,"app\/Http\/Controllers\/FileManager\/FavouriteController.php":2757720034,"app\/Http\/Controllers\/Admin\/LanguageController.php":158330191,"app\/Http\/Controllers\/Admin\/InvoiceController.php":1079333231,"app\/Http\/Controllers\/Admin\/UserController.php":4145576478,"app\/Http\/Controllers\/Admin\/PagesController.php":3632846828,"app\/Http\/Controllers\/Admin\/PlanController.php":3739538168,"app\/Http\/Controllers\/Admin\/SettingController.php":432117552,"app\/Http\/Controllers\/Admin\/DashboardController.php":3257386128,"app\/Http\/Controllers\/Subscription\/StripeWebhookController.php":2426977191,"app\/Http\/Controllers\/Auth\/LoginController.php":2932123434,"app\/Http\/Controllers\/Auth\/ConfirmPasswordController.php":711266715,"app\/Http\/Controllers\/Auth\/ForgotPasswordController.php":2521654140,"app\/Http\/Controllers\/Auth\/AuthController.php":3570080690,"app\/Http\/Controllers\/Auth\/ResetPasswordController.php":348514476,"app\/Http\/Controllers\/Auth\/VerificationController.php":260994322,"app\/Models\/Share.php":1870843212,"app\/Models\/Invoice.php":3022282710,"app\/Models\/Traffic.php":2512673789,"app\/Models\/User.php":3940609624,"app\/Models\/Language.php":1756684391,"app\/Models\/File.php":389252858,"app\/Models\/LanguageTranslation.php":1555765712,"app\/Models\/UserSettings.php":3400206961,"app\/Models\/Zip.php":2771946819,"app\/Models\/Page.php":907354308,"app\/Models\/Folder.php":3323761622,"app\/Models\/Setting.php":3917536845,"app\/Notifications\/ResetPassword.php":3421477680,"app\/Notifications\/SharedSendViaEmail.php":113607832,"app\/Exceptions\/Handler.php":1302274777,"app\/Console\/Commands\/SetupDevEnvironment.php":3776309589,"app\/Console\/Commands\/SetupProdEnvironment.php":1770210272,"app\/Console\/Kernel.php":3670235513,"app\/Actions\/Fortify\/UpdateUserPassword.php":3951771953,"app\/Actions\/Fortify\/ResetUserPassword.php":4190615589,"app\/Actions\/Fortify\/UpdateUserProfileInformation.php":2472609909,"app\/Actions\/Fortify\/PasswordValidationRules.php":2923916238,"app\/Actions\/Fortify\/CreateNewUser.php":3715974201,"app\/Rules\/DisabledMimetypes.php":3208905600,"routes\/web.php":2818253027,"routes\/setup.php":174846292,"routes\/api.php":3451943582,"routes\/share.php":1915112226,"routes\/console.php":2045403946,"routes\/channels.php":2877044881,"routes\/admin.php":1753159742,"routes\/user.php":4259547085,"routes\/maintenance.php":3748923669,"routes\/file.php":3064209512,"config\/database.php":2792060856,"config\/cache.php":1332522112,"config\/filesystems.php":2319776559,"config\/broadcasting.php":2563027683,"config\/view.php":3441258419,"config\/cors.php":814133164,"config\/scout.php":3982286810,"config\/fortify.php":26876281,"config\/backup.php":3248077103,"config\/cashier.php":3667756931,"config\/language-translations.php":3255368688,"config\/laravel-query-monitor.php":1440668834,"config\/content.php":395802805,"config\/custom-language-translations.php":1251541856,"config\/auth.php":3170093846,"config\/mail.php":328575859,"config\/queue.php":1206545377,"config\/logging.php":794303111,"config\/services.php":2567151055,"config\/hashing.php":509629418,"config\/session.php":2232050276,"config\/vuefilemanager.php":1126120216,"config\/app.php":2412183403}} \ No newline at end of file +{"php":"8.0.5","version":"2.18.6","indent":" ","lineEnding":"\n","rules":{"blank_line_after_namespace":true,"braces":true,"class_definition":true,"constant_case":true,"elseif":true,"function_declaration":true,"indentation_type":true,"line_ending":true,"lowercase_keywords":true,"method_argument_space":{"on_multiline":"ensure_fully_multiline","keep_multiple_spaces_after_comma":true},"no_break_comment":true,"no_closing_tag":true,"no_spaces_after_function_name":true,"no_spaces_inside_parenthesis":true,"no_trailing_whitespace":true,"no_trailing_whitespace_in_comment":true,"single_blank_line_at_eof":true,"single_class_element_per_statement":{"elements":["property"]},"single_import_per_statement":true,"single_line_after_imports":true,"switch_case_semicolon_to_colon":true,"switch_case_space":true,"visibility_required":true,"encoding":true,"full_opening_tag":true,"array_syntax":{"syntax":"short"},"ordered_imports":{"sortAlgorithm":"length"},"blank_line_before_statement":{"statements":["break","case","continue","declare","default","die","do","exit","for","foreach","goto","if","include","include_once","require","require_once","return","switch","throw","try","while","yield","yield_from"]},"class_attributes_separation":{"elements":["method"]},"no_extra_blank_lines":["break","case","continue","curly_brace_block","default","extra","parenthesis_brace_block","return","square_brace_block","switch","throw","use","useTrait","use_trait"],"cast_spaces":{"space":"single"},"phpdoc_single_line_var_spacing":true,"phpdoc_var_without_name":true,"single_space_after_construct":true,"no_unused_imports":true,"not_operator_with_successor_space":true,"trailing_comma_in_multiline_array":true,"phpdoc_scalar":true,"unary_operator_spaces":true,"binary_operator_spaces":true,"no_spaces_around_offset":true,"method_chaining_indentation":true,"array_indentation":true,"single_quote":true,"no_singleline_whitespace_before_semicolons":true,"no_empty_statement":true,"standardize_increment":true,"object_operator_without_whitespace":true,"ternary_operator_spaces":true,"no_leading_namespace_whitespace":true,"no_blank_lines_before_namespace":true,"fully_qualified_strict_types":true,"single_line_throw":true,"function_typehint_space":true,"simplified_if_return":true,"no_useless_else":true,"no_unneeded_curly_braces":true,"no_empty_comment":true,"no_blank_lines_after_class_opening":true,"whitespace_after_comma_in_array":true,"trim_array_spaces":true,"no_whitespace_before_comma_in_array":true,"lowercase_static_reference":true},"hashes":{"app\/Providers\/EventServiceProvider.php":3395009334,"app\/Providers\/FortifyServiceProvider.php":4138315837,"app\/Providers\/RouteServiceProvider.php":1824013481,"app\/Providers\/AuthServiceProvider.php":169859517,"app\/Providers\/BroadcastServiceProvider.php":3541093703,"app\/Providers\/AppServiceProvider.php":2241922344,"app\/Services\/FileManagerService.php":2226703157,"app\/Services\/StripeService.php":988442640,"app\/Services\/LanguageService.php":2377025800,"app\/Services\/HelperService.php":1615752066,"app\/Services\/DemoService.php":3417423904,"app\/Services\/SchedulerService.php":2085843092,"app\/Services\/SetupService.php":3211368368,"app\/Http\/helpers.php":3539039584,"app\/Http\/Kernel.php":2136109776,"app\/Http\/Mail\/SendContactMessage.php":594829001,"app\/Http\/Requests\/User\/UpdateUserPasswordRequest.php":2221986665,"app\/Http\/Requests\/PublicPages\/SendContactMessageRequest.php":3821039611,"app\/Http\/Requests\/FileBrowser\/SearchRequest.php":202095165,"app\/Http\/Requests\/SetupWizard\/StoreEnvironmentSetupRequest.php":662138835,"app\/Http\/Requests\/SetupWizard\/StoreAppSetupRequest.php":2162069828,"app\/Http\/Requests\/SetupWizard\/StoreDatabaseCredentialsRequest.php":3405038241,"app\/Http\/Requests\/SetupWizard\/StoreStripeBillingRequest.php":2767086903,"app\/Http\/Requests\/SetupWizard\/StoreStripePlansRequest.php":698544961,"app\/Http\/Requests\/SetupWizard\/StoreStripeCredentialsRequest.php":429869546,"app\/Http\/Requests\/FileFunctions\/CreateFolderRequest.php":1300625783,"app\/Http\/Requests\/FileFunctions\/DeleteItemRequest.php":3936258011,"app\/Http\/Requests\/FileFunctions\/UploadRequest.php":2854944424,"app\/Http\/Requests\/FileFunctions\/RenameItemRequest.php":3723095090,"app\/Http\/Requests\/FileFunctions\/MoveItemRequest.php":1125344009,"app\/Http\/Requests\/Admin\/DeleteUserRequest.php":2636618911,"app\/Http\/Requests\/Admin\/ChangeStorageCapacityRequest.php":1669862599,"app\/Http\/Requests\/Admin\/ChangeRoleRequest.php":1925938295,"app\/Http\/Requests\/Admin\/CreateUserByAdmin.php":3365802358,"app\/Http\/Requests\/Share\/AuthenticateShareRequest.php":1928811787,"app\/Http\/Requests\/Share\/CreateShareRequest.php":898178246,"app\/Http\/Requests\/Share\/UpdateShareRequest.php":403673781,"app\/Http\/Requests\/Payments\/RegisterNewPaymentMethodRequest.php":2918618691,"app\/Http\/Requests\/Languages\/CreateLanguageRequest.php":3242997343,"app\/Http\/Requests\/Languages\/UpdateStringRequest.php":477321427,"app\/Http\/Requests\/Languages\/UpdateLanguageRequest.php":3062642093,"app\/Http\/Requests\/Subscription\/StoreUpgradeAccountRequest.php":3421291521,"app\/Http\/Requests\/Auth\/CheckAccountRequest.php":708120184,"app\/Http\/Resources\/LanguageResource.php":1673048322,"app\/Http\/Resources\/PaymentCardCollection.php":35382430,"app\/Http\/Resources\/InvoiceAdminCollection.php":274747241,"app\/Http\/Resources\/PageResource.php":2562874131,"app\/Http\/Resources\/UsersCollection.php":3057145737,"app\/Http\/Resources\/PricingCollection.php":549452717,"app\/Http\/Resources\/PlanCollection.php":1402537053,"app\/Http\/Resources\/PaymentDefaultCardResource.php":1710261108,"app\/Http\/Resources\/FileResource.php":2500497589,"app\/Http\/Resources\/PaymentCardResource.php":407843952,"app\/Http\/Resources\/ShareResource.php":3638836792,"app\/Http\/Resources\/UserResource.php":3514384770,"app\/Http\/Resources\/InvoiceResource.php":4272309745,"app\/Http\/Resources\/InvoiceAdminResource.php":545842233,"app\/Http\/Resources\/InvoiceCollection.php":3442384146,"app\/Http\/Resources\/LanguageCollection.php":1364645788,"app\/Http\/Resources\/PlanResource.php":4254133748,"app\/Http\/Resources\/UserSubscription.php":1868974562,"app\/Http\/Resources\/PricingResource.php":2786525720,"app\/Http\/Resources\/PageCollection.php":842383211,"app\/Http\/Resources\/UserStorageResource.php":3173368149,"app\/Http\/Middleware\/TrimStrings.php":10633912,"app\/Http\/Middleware\/Authenticate.php":829439188,"app\/Http\/Middleware\/PreventRequestsDuringMaintenance.php":2280943271,"app\/Http\/Middleware\/VerifyCsrfToken.php":2876451146,"app\/Http\/Middleware\/EncryptCookies.php":1502216959,"app\/Http\/Middleware\/TrustProxies.php":3573151230,"app\/Http\/Middleware\/CheckForMaintenanceMode.php":3053801562,"app\/Http\/Middleware\/RedirectIfAuthenticated.php":4037446582,"app\/Http\/Notifications\/ConfirmPayment.php":332683570,"app\/Http\/Controllers\/User\/PaymentMethodsController.php":2933452549,"app\/Http\/Controllers\/User\/SubscriptionController.php":2751297300,"app\/Http\/Controllers\/User\/AccountController.php":4219317847,"app\/Http\/Controllers\/App\/SetupWizardController.php":1789728519,"app\/Http\/Controllers\/App\/AppFunctionsController.php":2947857832,"app\/Http\/Controllers\/App\/Maintenance.php":96974254,"app\/Http\/Controllers\/Sharing\/ManipulateShareItemsController.php":14558414,"app\/Http\/Controllers\/Sharing\/BrowseShareController.php":4259232858,"app\/Http\/Controllers\/Sharing\/FileSharedAccessController.php":3821037715,"app\/Http\/Controllers\/Controller.php":2646027293,"app\/Http\/Controllers\/FileManager\/FileAccessController.php":2326554064,"app\/Http\/Controllers\/FileManager\/ShareController.php":2848524553,"app\/Http\/Controllers\/FileManager\/TrashController.php":4243775923,"app\/Http\/Controllers\/FileManager\/EditItemsController.php":2432718425,"app\/Http\/Controllers\/FileManager\/BrowseController.php":115194502,"app\/Http\/Controllers\/FileManager\/FavouriteController.php":2757720034,"app\/Http\/Controllers\/Admin\/LanguageController.php":158330191,"app\/Http\/Controllers\/Admin\/InvoiceController.php":1079333231,"app\/Http\/Controllers\/Admin\/UserController.php":4145576478,"app\/Http\/Controllers\/Admin\/PagesController.php":3632846828,"app\/Http\/Controllers\/Admin\/PlanController.php":3739538168,"app\/Http\/Controllers\/Admin\/SettingController.php":432117552,"app\/Http\/Controllers\/Admin\/DashboardController.php":3257386128,"app\/Http\/Controllers\/Subscription\/StripeWebhookController.php":2426977191,"app\/Http\/Controllers\/Auth\/LoginController.php":2932123434,"app\/Http\/Controllers\/Auth\/ConfirmPasswordController.php":711266715,"app\/Http\/Controllers\/Auth\/ForgotPasswordController.php":2521654140,"app\/Http\/Controllers\/Auth\/AuthController.php":3570080690,"app\/Http\/Controllers\/Auth\/ResetPasswordController.php":348514476,"app\/Http\/Controllers\/Auth\/VerificationController.php":260994322,"app\/Models\/Share.php":1870843212,"app\/Models\/Invoice.php":3022282710,"app\/Models\/Traffic.php":2512673789,"app\/Models\/User.php":3940609624,"app\/Models\/Language.php":1756684391,"app\/Models\/File.php":389252858,"app\/Models\/LanguageTranslation.php":1555765712,"app\/Models\/UserSettings.php":3400206961,"app\/Models\/Zip.php":2771946819,"app\/Models\/Page.php":907354308,"app\/Models\/Folder.php":3323761622,"app\/Models\/Setting.php":3917536845,"app\/Notifications\/ResetPassword.php":3421477680,"app\/Notifications\/SharedSendViaEmail.php":113607832,"app\/Exceptions\/Handler.php":1302274777,"app\/Console\/Commands\/SetupDevEnvironment.php":3776309589,"app\/Console\/Commands\/SetupProdEnvironment.php":1770210272,"app\/Console\/Kernel.php":3670235513,"app\/Actions\/Fortify\/UpdateUserPassword.php":3951771953,"app\/Actions\/Fortify\/ResetUserPassword.php":4190615589,"app\/Actions\/Fortify\/UpdateUserProfileInformation.php":2472609909,"app\/Actions\/Fortify\/PasswordValidationRules.php":2923916238,"app\/Actions\/Fortify\/CreateNewUser.php":3715974201,"app\/Rules\/DisabledMimetypes.php":3208905600,"routes\/web.php":2818253027,"routes\/setup.php":174846292,"routes\/api.php":3451943582,"routes\/share.php":1915112226,"routes\/console.php":2045403946,"routes\/channels.php":2877044881,"routes\/admin.php":1753159742,"routes\/user.php":4259547085,"routes\/maintenance.php":3748923669,"routes\/file.php":3064209512,"config\/database.php":2792060856,"config\/cache.php":1332522112,"config\/filesystems.php":2319776559,"config\/broadcasting.php":2563027683,"config\/view.php":3441258419,"config\/cors.php":814133164,"config\/scout.php":3982286810,"config\/fortify.php":26876281,"config\/backup.php":3248077103,"config\/cashier.php":3667756931,"config\/language-translations.php":3255368688,"config\/laravel-query-monitor.php":1440668834,"config\/content.php":395802805,"config\/custom-language-translations.php":1251541856,"config\/auth.php":3170093846,"config\/mail.php":328575859,"config\/queue.php":1206545377,"config\/logging.php":794303111,"config\/services.php":2567151055,"config\/hashing.php":509629418,"config\/session.php":2232050276,"config\/vuefilemanager.php":1126120216,"config\/app.php":2412183403}} \ No newline at end of file From 9fbd5fd4729dcd0addff7c08ec484c8e695c7d53 Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Thu, 6 May 2021 09:28:31 +0200 Subject: [PATCH 11/42] removed shared files single page --- composer.lock | 97 ++-- config/language-translations.php | 1 + public/mix-manifest.json | 486 +++++++++++++++--- .../js/components/Sidebar/ContentGroup.vue | 2 +- .../components/Sidebar/SidebarNavigation.vue | 16 - resources/js/router.js | 9 - resources/js/views/FilePages/Files.vue | 36 +- resources/js/views/FilePages/SharedFiles.vue | 67 --- 8 files changed, 498 insertions(+), 216 deletions(-) delete mode 100644 resources/js/views/FilePages/SharedFiles.vue diff --git a/composer.lock b/composer.lock index a17380b4..17d2625d 100644 --- a/composer.lock +++ b/composer.lock @@ -230,16 +230,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.179.2", + "version": "3.180.3", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "7d3490e35878d0884905fa0c1ab43ecf178c8d9b" + "reference": "99c08e621c33ca4b2efa1df162c1ce0ecb3068dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/7d3490e35878d0884905fa0c1ab43ecf178c8d9b", - "reference": "7d3490e35878d0884905fa0c1ab43ecf178c8d9b", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/99c08e621c33ca4b2efa1df162c1ce0ecb3068dd", + "reference": "99c08e621c33ca4b2efa1df162c1ce0ecb3068dd", "shasum": "" }, "require": { @@ -314,9 +314,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.179.2" + "source": "https://github.com/aws/aws-sdk-php/tree/3.180.3" }, - "time": "2021-04-30T19:46:52+00:00" + "time": "2021-05-05T19:41:31+00:00" }, { "name": "bacon/bacon-qr-code", @@ -801,16 +801,16 @@ }, { "name": "composer/xdebug-handler", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "31d57697eb1971712a08031cfaff5a846d10bdf5" + "reference": "964adcdd3a28bf9ed5d9ac6450064e0d71ed7496" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/31d57697eb1971712a08031cfaff5a846d10bdf5", - "reference": "31d57697eb1971712a08031cfaff5a846d10bdf5", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/964adcdd3a28bf9ed5d9ac6450064e0d71ed7496", + "reference": "964adcdd3a28bf9ed5d9ac6450064e0d71ed7496", "shasum": "" }, "require": { @@ -845,7 +845,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/2.0.0" + "source": "https://github.com/composer/xdebug-handler/tree/2.0.1" }, "funding": [ { @@ -861,7 +861,7 @@ "type": "tidelift" } ], - "time": "2021-04-09T19:40:06+00:00" + "time": "2021-05-05T19:37:51+00:00" }, { "name": "dasprid/enum", @@ -1966,16 +1966,16 @@ }, { "name": "friendsofphp/php-cs-fixer", - "version": "v2.18.6", + "version": "v2.19.0", "source": { "type": "git", "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git", - "reference": "5fed214993e7863cef88a08f214344891299b9e4" + "reference": "d5b8a9d852b292c2f8a035200fa6844b1f82300b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/5fed214993e7863cef88a08f214344891299b9e4", - "reference": "5fed214993e7863cef88a08f214344891299b9e4", + "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/d5b8a9d852b292c2f8a035200fa6844b1f82300b", + "reference": "d5b8a9d852b292c2f8a035200fa6844b1f82300b", "shasum": "" }, "require": { @@ -2023,6 +2023,11 @@ "php-cs-fixer" ], "type": "application", + "extra": { + "branch-alias": { + "dev-master": "2.19-dev" + } + }, "autoload": { "psr-4": { "PhpCsFixer\\": "src/" @@ -2058,7 +2063,7 @@ "description": "A tool to automatically fix PHP code style", "support": { "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues", - "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v2.18.6" + "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v2.19.0" }, "funding": [ { @@ -2066,7 +2071,7 @@ "type": "github" } ], - "time": "2021-04-19T19:45:11+00:00" + "time": "2021-05-03T21:43:24+00:00" }, { "name": "fruitcake/laravel-cors", @@ -4306,16 +4311,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.10.4", + "version": "v4.10.5", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e" + "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e", - "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f", + "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f", "shasum": "" }, "require": { @@ -4356,9 +4361,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5" }, - "time": "2020-12-20T10:01:03+00:00" + "time": "2021-05-03T19:11:20+00:00" }, { "name": "openlss/lib-array2xml", @@ -5817,16 +5822,16 @@ }, { "name": "psr/log", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", "shasum": "" }, "require": { @@ -5850,7 +5855,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for logging libraries", @@ -5861,9 +5866,9 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/1.1.3" + "source": "https://github.com/php-fig/log/tree/1.1.4" }, - "time": "2020-03-23T09:12:05+00:00" + "time": "2021-05-03T11:20:27+00:00" }, { "name": "psr/simple-cache", @@ -7612,16 +7617,16 @@ }, { "name": "stripe/stripe-php", - "version": "v7.77.0", + "version": "v7.78.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "f6724447481f6fb8c2e714165e092adad9ca470a" + "reference": "6ec33fa8e9de2322be93d28dfd685661c67ca549" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/f6724447481f6fb8c2e714165e092adad9ca470a", - "reference": "f6724447481f6fb8c2e714165e092adad9ca470a", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/6ec33fa8e9de2322be93d28dfd685661c67ca549", + "reference": "6ec33fa8e9de2322be93d28dfd685661c67ca549", "shasum": "" }, "require": { @@ -7667,9 +7672,9 @@ ], "support": { "issues": "https://github.com/stripe/stripe-php/issues", - "source": "https://github.com/stripe/stripe-php/tree/v7.77.0" + "source": "https://github.com/stripe/stripe-php/tree/v7.78.0" }, - "time": "2021-04-12T17:19:16+00:00" + "time": "2021-05-05T23:55:32+00:00" }, { "name": "swiftmailer/swiftmailer", @@ -11108,12 +11113,12 @@ "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "bfea0f7d1e991f237ccf448b0a0d24ede02d923a" + "reference": "649087d6de158dc4da73a06c7759dec5932be5a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/bfea0f7d1e991f237ccf448b0a0d24ede02d923a", - "reference": "bfea0f7d1e991f237ccf448b0a0d24ede02d923a", + "url": "https://api.github.com/repos/composer/composer/zipball/649087d6de158dc4da73a06c7759dec5932be5a5", + "reference": "649087d6de158dc4da73a06c7759dec5932be5a5", "shasum": "" }, "require": { @@ -11199,7 +11204,7 @@ "type": "tidelift" } ], - "time": "2021-05-02T14:50:42+00:00" + "time": "2021-05-04T14:47:54+00:00" }, { "name": "composer/metadata-minifier", @@ -11416,16 +11421,16 @@ }, { "name": "facade/ignition", - "version": "2.8.4", + "version": "2.9.0", "source": { "type": "git", "url": "https://github.com/facade/ignition.git", - "reference": "87fb348dab0ae1a7c206c3e902a5a44ba541742f" + "reference": "e7db3b601ce742568b92648818ef903904d20164" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/ignition/zipball/87fb348dab0ae1a7c206c3e902a5a44ba541742f", - "reference": "87fb348dab0ae1a7c206c3e902a5a44ba541742f", + "url": "https://api.github.com/repos/facade/ignition/zipball/e7db3b601ce742568b92648818ef903904d20164", + "reference": "e7db3b601ce742568b92648818ef903904d20164", "shasum": "" }, "require": { @@ -11489,7 +11494,7 @@ "issues": "https://github.com/facade/ignition/issues", "source": "https://github.com/facade/ignition" }, - "time": "2021-04-29T13:55:26+00:00" + "time": "2021-05-05T06:45:12+00:00" }, { "name": "facade/ignition-contracts", diff --git a/config/language-translations.php b/config/language-translations.php index 5ec38c28..64a04d2b 100644 --- a/config/language-translations.php +++ b/config/language-translations.php @@ -570,6 +570,7 @@ return [ 'shared_form.recipients_label' => 'Recipients', 'shared_form.share_by_email' => 'Share by Email', 'shared_form.share_by_link' => 'Share by Link', + 'sidebar.sharing' => 'Sharing', 'sidebar.favourites' => 'Favourites', 'sidebar.favourites_empty' => 'Drag here your favourite folder.', 'sidebar.folders_empty' => 'Create some new folder.', diff --git a/public/mix-manifest.json b/public/mix-manifest.json index d6073ee7..d2607c38 100644 --- a/public/mix-manifest.json +++ b/public/mix-manifest.json @@ -1,77 +1,413 @@ { - "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~2fac28cc.js": "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~2fac28cc.js?id=d8dac775684711abc6e2", - "/chunks/admin-account~chunks/app-setup~chunks/billings-detail~chunks/create-new-password~chunks/datab~5f8db287.js": "/chunks/admin-account~chunks/app-setup~chunks/billings-detail~chunks/create-new-password~chunks/datab~5f8db287.js?id=d85e8bc2bb4fc4b9cd7e", - "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.js?id=e5c9ba18c9210405a275", - "/chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser.js?id=7e0a45370cf7547a2908", - "/chunks/files~chunks/shared-files~chunks/shared/file-browser~chunks/shared/single-file.js": "/chunks/files~chunks/shared-files~chunks/shared/file-browser~chunks/shared/single-file.js?id=9a534868c4529d8a9381", - "/chunks/admin~chunks/platform~chunks/shared.js": "/chunks/admin~chunks/platform~chunks/shared.js?id=b1bd58b72c9a10cfa038", - "/chunks/files~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/shared-files~chunks/shared/file-browser.js?id=fe21c6fc3a9bf39242d6", - "/chunks/not-found.js": "/chunks/not-found.js?id=fc2ff097020968f2d5cd", - "/chunks/profile~chunks/settings-password.js": "/chunks/profile~chunks/settings-password.js?id=f8bbbfc34e2ff40112b8", - "/vendors~chunks/platform~chunks/shared.js": "/vendors~chunks/platform~chunks/shared.js?id=4ad4631716535ab7736a", - "/js/main.js": "/js/main.js?id=f4f3ae15bb4edaf96051", - "/css/app.css": "/css/app.css?id=5ef36155a311dd4539c1", - "/chunks/admin.js": "/chunks/admin.js?id=0fdb9af01652c8b518aa", - "/chunks/admin-account.js": "/chunks/admin-account.js?id=8f980b2f04bf8979e95e", - "/chunks/app-appearance.js": "/chunks/app-appearance.js?id=f643635457b8e817685f", - "/chunks/app-billings.js": "/chunks/app-billings.js?id=1e4bbdd483151fb305e2", - "/chunks/app-email.js": "/chunks/app-email.js?id=ea37d998b93d5172cc99", - "/chunks/app-index.js": "/chunks/app-index.js?id=f3b0815e40a5d8f539ea", - "/chunks/app-language.js": "/chunks/app-language.js?id=3d09cc79320459f73c47", - "/chunks/app-others.js": "/chunks/app-others.js?id=9bfeac235166c6de6e91", - "/chunks/app-payments.js": "/chunks/app-payments.js?id=c5658a753f0f3d785f19", - "/chunks/app-settings.js": "/chunks/app-settings.js?id=59b1c50cf2a010ed9cac", - "/chunks/app-setup.js": "/chunks/app-setup.js?id=7c8bab2aac20190c4462", - "/chunks/billings-detail.js": "/chunks/billings-detail.js?id=efc85303b181ab6db677", - "/chunks/contact-us.js": "/chunks/contact-us.js?id=e3c45469a83f82938eef", - "/chunks/create-new-password.js": "/chunks/create-new-password.js?id=f67f77d78c62e27feb8d", - "/chunks/dashboard.js": "/chunks/dashboard.js?id=9733a858e43d62897baa", - "/chunks/database.js": "/chunks/database.js?id=553d4df0e6bb2807045e", - "/chunks/dynamic-page.js": "/chunks/dynamic-page.js?id=6a4f59eb5a9b27c9bcea", - "/chunks/environment-setup.js": "/chunks/environment-setup.js?id=626151d7ccbf0915188f", - "/chunks/files.js": "/chunks/files.js?id=8e4d948ecef98280e869", - "/chunks/forgotten-password.js": "/chunks/forgotten-password.js?id=5760d4df726d6fb823f0", - "/chunks/homepage.js": "/chunks/homepage.js?id=a42a4f84e60f306a9fd8", - "/chunks/installation-disclaimer.js": "/chunks/installation-disclaimer.js?id=6432e93a69af6a5b81d1", - "/chunks/invoices.js": "/chunks/invoices.js?id=ed402e30b866e9ed2efc", - "/chunks/page-edit.js": "/chunks/page-edit.js?id=a8720c13a8c0480ce599", - "/chunks/pages.js": "/chunks/pages.js?id=43d38a40cebd33d07c20", - "/chunks/plan.js": "/chunks/plan.js?id=1a91b7b670b92913f356", - "/chunks/plan-create.js": "/chunks/plan-create.js?id=44a15916faafdad16763", - "/chunks/plan-delete.js": "/chunks/plan-delete.js?id=9f42b1eb10d062c5b57c", - "/chunks/plan-settings.js": "/chunks/plan-settings.js?id=dbc3e7b7278a715e8506", - "/chunks/plan-subscribers.js": "/chunks/plan-subscribers.js?id=ee51996877dadb448de6", - "/chunks/plans.js": "/chunks/plans.js?id=9a686523372a7a49827d", - "/chunks/platform.js": "/chunks/platform.js?id=b741db6e5999e47965e6", - "/chunks/profile.js": "/chunks/profile.js?id=922506c18798ab70af52", - "/chunks/purchase-code.js": "/chunks/purchase-code.js?id=2670fa01f9ecc4bee62d", - "/chunks/settings.js": "/chunks/settings.js?id=3434fbf5ac6e1ab50ad1", - "/chunks/settings-create-payment-methods.js": "/chunks/settings-create-payment-methods.js?id=bdff596e9c8996bb5810", - "/chunks/settings-invoices.js": "/chunks/settings-invoices.js?id=fcdac45f003019e38a2b", - "/chunks/settings-password.js": "/chunks/settings-password.js?id=af99ddcdc5baac89f34b", - "/chunks/settings-payment-methods.js": "/chunks/settings-payment-methods.js?id=77354eee8f6948161ae0", - "/chunks/settings-storage.js": "/chunks/settings-storage.js?id=e948dcbd9bf687e5cb04", - "/chunks/settings-subscription.js": "/chunks/settings-subscription.js?id=3a976e5177c56c433271", - "/chunks/setup-wizard.js": "/chunks/setup-wizard.js?id=d60972a2216523642850", - "/chunks/shared.js": "/chunks/shared.js?id=469258e470b6aa7cd636", - "/chunks/shared-files.js": "/chunks/shared-files.js?id=6b262bf0b62fc79dfd85", - "/chunks/shared/authenticate.js": "/chunks/shared/authenticate.js?id=c679dd7737bbad19700a", - "/chunks/shared/file-browser.js": "/chunks/shared/file-browser.js?id=ae9371c1dc9ff4d42132", - "/chunks/shared/single-file.js": "/chunks/shared/single-file.js?id=d57e261a133924a8857f", - "/chunks/sign-in.js": "/chunks/sign-in.js?id=6a92a83db12f0d425dff", - "/chunks/sign-up.js": "/chunks/sign-up.js?id=d9a106720f1b216845ee", - "/chunks/stripe-credentials.js": "/chunks/stripe-credentials.js?id=7138567e2de4280fc84e", - "/chunks/subscription-plans.js": "/chunks/subscription-plans.js?id=e3b11d7b3e3ca69996b4", - "/chunks/subscription-service.js": "/chunks/subscription-service.js?id=b01f9ac1237e22eba7e5", - "/chunks/upgrade-billing.js": "/chunks/upgrade-billing.js?id=7829055314854bd7ce70", - "/chunks/upgrade-plan.js": "/chunks/upgrade-plan.js?id=e03ab9ef2810015e98bf", - "/chunks/user.js": "/chunks/user.js?id=d18afe12be9c588be90d", - "/chunks/user-create.js": "/chunks/user-create.js?id=f00e640be5d3958ca91c", - "/chunks/user-delete.js": "/chunks/user-delete.js?id=0662bae659b479e85f4f", - "/chunks/user-detail.js": "/chunks/user-detail.js?id=595261641625eca9a815", - "/chunks/user-invoices.js": "/chunks/user-invoices.js?id=7e6ada023f6041ed3f7d", - "/chunks/user-password.js": "/chunks/user-password.js?id=9d1c9cdac5b2d51fb905", - "/chunks/user-storage.js": "/chunks/user-storage.js?id=eed055b1f60039e33698", - "/chunks/user-subscription.js": "/chunks/user-subscription.js?id=4543c5a48bb7cb825143", - "/chunks/users.js": "/chunks/users.js?id=5788d80daa3902c94fe9" + "/js/main.js": "/js/main.js", + "/css/app.css": "/css/app.css", + "/chunks/admin.js": "/chunks/admin.js?id=2971d15f4e0bd0662482", + "/chunks/admin-account.js": "/chunks/admin-account.js?id=3036df3e72596fabc42e", + "/chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chu~e360f8a1.js": "/chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chu~e360f8a1.js?id=9a997811677c9fcc0c6e", + "/chunks/admin-account~chunks/app-setup~chunks/billings-detail~chunks/create-new-password~chunks/datab~062c965c.js": "/chunks/admin-account~chunks/app-setup~chunks/billings-detail~chunks/create-new-password~chunks/datab~062c965c.js?id=515118382f7ad5724a54", + "/chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/~56ae6336.js": "/chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/~56ae6336.js?id=3500df10c19053acd77b", + "/chunks/admin~chunks/files~chunks/oasis/invoices~chunks/oasis/invoices/list~chunks/platform~chunks/sh~f205bd67.js": "/chunks/admin~chunks/files~chunks/oasis/invoices~chunks/oasis/invoices/list~chunks/platform~chunks/sh~f205bd67.js?id=94e67ef1eef94f3de4a7", + "/chunks/admin~chunks/files~chunks/oasis/invoices~chunks/settings~chunks/shared-files~chunks/shared/fi~41abd910.js": "/chunks/admin~chunks/files~chunks/oasis/invoices~chunks/settings~chunks/shared-files~chunks/shared/fi~41abd910.js?id=c804f9bf9138c4da52e9", + "/chunks/admin~chunks/oasis/invoices~chunks/platform.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform.js?id=fc287552563b5b5c2136", + "/chunks/admin~chunks/oasis/invoices~chunks/platform~chunks/shared.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform~chunks/shared.js?id=a7e1f2b5096c12b0d23a", + "/chunks/app-appearance.js": "/chunks/app-appearance.js?id=b4e2d99a172f06a1d312", + "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~262a2a36.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~262a2a36.js?id=e6505b93727b56256f92", + "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~2e0b85bd.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~2e0b85bd.js?id=d4fb46f05374a298ac1b", + "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~c329baf3.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~c329baf3.js?id=917423b1c6ec5a0c7435", + "/chunks/app-billings.js": "/chunks/app-billings.js?id=82133cc16f55222bbbe6", + "/chunks/app-email.js": "/chunks/app-email.js?id=c578a85112c6a4b1ed0e", + "/chunks/app-index.js": "/chunks/app-index.js?id=5bf1c4a8df85876205a0", + "/chunks/app-language.js": "/chunks/app-language.js?id=ccf2292ad048d4bfad60", + "/chunks/app-language~chunks/app-settings~chunks/dashboard~chunks/dashboard-oasis~chunks/invoices~chun~93101a7f.js": "/chunks/app-language~chunks/app-settings~chunks/dashboard~chunks/dashboard-oasis~chunks/invoices~chun~93101a7f.js?id=93fb27b76209e5b7b2d9", + "/chunks/app-language~chunks/dashboard~chunks/dashboard-oasis~chunks/files~chunks/invoices~chunks/oasi~c6e9de01.js": "/chunks/app-language~chunks/dashboard~chunks/dashboard-oasis~chunks/files~chunks/invoices~chunks/oasi~c6e9de01.js?id=f9af3b7905bb7c35023d", + "/chunks/app-others.js": "/chunks/app-others.js?id=9156adba3b1697a8bf3e", + "/chunks/app-payments.js": "/chunks/app-payments.js?id=7e1a982c90174f568fb2", + "/chunks/app-settings.js": "/chunks/app-settings.js?id=acc6ba7a93681f0d5d64", + "/chunks/app-setup.js": "/chunks/app-setup.js?id=d0e3e046e147ca928f34", + "/chunks/billings-detail.js": "/chunks/billings-detail.js?id=d0ade32264f71dd7a2af", + "/chunks/contact-us.js": "/chunks/contact-us.js?id=f5276b101b2e0c97d6d1", + "/chunks/contact-us~chunks/dynamic-page~chunks/homepage.js": "/chunks/contact-us~chunks/dynamic-page~chunks/homepage.js?id=22bd5db44c72e8de5f5b", + "/chunks/create-new-password.js": "/chunks/create-new-password.js?id=48dc53ccbd502c2739ec", + "/chunks/dashboard.js": "/chunks/dashboard.js?id=9825336101be68307708", + "/chunks/dashboard-oasis.js": "/chunks/dashboard-oasis.js?id=8b37095a96ece7d6c1d8", + "/chunks/dashboard~chunks/dashboard-oasis.js": "/chunks/dashboard~chunks/dashboard-oasis.js?id=67a4a8d617c2e38cb1f3", + "/chunks/dashboard~chunks/dashboard-oasis~chunks/invoices~chunks/oasis/invoices/client-invoices~chunks~4ba83fa1.js": "/chunks/dashboard~chunks/dashboard-oasis~chunks/invoices~chunks/oasis/invoices/client-invoices~chunks~4ba83fa1.js?id=2e029bf012cccfd18e6c", + "/chunks/database.js": "/chunks/database.js?id=7374830dc3cbddf41abb", + "/chunks/dynamic-page.js": "/chunks/dynamic-page.js?id=6dccc2158cc6278f683d", + "/chunks/dynamic-page~chunks/oasis/homepage.js": "/chunks/dynamic-page~chunks/oasis/homepage.js?id=9840011d02134efd9210", + "/chunks/environment-setup.js": "/chunks/environment-setup.js?id=208de84df68177288a2a", + "/chunks/files.js": "/chunks/files.js?id=af40942fb64ed6bbdd99", + "/chunks/files~chunks/oasis/invoices/list~chunks/oasis/platba~chunks/settings-subscription~chunks/shar~d6675e1e.js": "/chunks/files~chunks/oasis/invoices/list~chunks/oasis/platba~chunks/settings-subscription~chunks/shar~d6675e1e.js?id=effef49b99446fdaee0b", + "/chunks/files~chunks/oasis/invoices/list~chunks/platform~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/oasis/invoices/list~chunks/platform~chunks/shared-files~chunks/shared/file-browser.js?id=e4b969d39eeef45f88f5", + "/chunks/files~chunks/oasis/invoices/list~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/oasis/invoices/list~chunks/shared-files~chunks/shared/file-browser.js?id=bf0089c1be9398233d98", + "/chunks/files~chunks/oasis/invoices~chunks/oasis/invoices/list~chunks/platform~chunks/shared~chunks/s~87b39a8d.js": "/chunks/files~chunks/oasis/invoices~chunks/oasis/invoices/list~chunks/platform~chunks/shared~chunks/s~87b39a8d.js?id=c226fe89b510c599615f", + "/chunks/files~chunks/oasis/invoices~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/f~9f6a6eef.js": "/chunks/files~chunks/oasis/invoices~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/f~9f6a6eef.js?id=d85fcb76a9b5d1cf4da5", + "/chunks/files~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/shared-files~chunks/shared/file-browser.js?id=ad0ae37b1adbba66f83f", + "/chunks/files~chunks/shared-files~chunks/shared/file-browser~chunks/shared/single-file.js": "/chunks/files~chunks/shared-files~chunks/shared/file-browser~chunks/shared/single-file.js?id=87a26719b4e2b0800163", + "/chunks/files~chunks/shared/file-browser.js": "/chunks/files~chunks/shared/file-browser.js?id=ef4bcb55086540b7804d", + "/chunks/forgotten-password.js": "/chunks/forgotten-password.js?id=877a9289b77ac3885042", + "/chunks/homepage.js": "/chunks/homepage.js?id=48e0e9b3c870c46218ce", + "/chunks/installation-disclaimer.js": "/chunks/installation-disclaimer.js?id=c523e816ae410f52d767", + "/chunks/invoices.js": "/chunks/invoices.js?id=432dbcaa4cff9f76d093", + "/chunks/not-found-shared.js": "/chunks/not-found-shared.js?id=7fc7f9b6f10bdfac770e", + "/chunks/oasis/homepage.js": "/chunks/oasis/homepage.js?id=a1885dd8814f9eb63a1c", + "/chunks/oasis/invoices.js": "/chunks/oasis/invoices.js?id=73d1d3e360d271600cb5", + "/chunks/oasis/invoices/client.js": "/chunks/oasis/invoices/client.js?id=63a83703890e6cf422f4", + "/chunks/oasis/invoices/client-detail.js": "/chunks/oasis/invoices/client-detail.js?id=2414e131ef16f6f2a27a", + "/chunks/oasis/invoices/client-invoices.js": "/chunks/oasis/invoices/client-invoices.js?id=ccf5c9160393a47ffae1", + "/chunks/oasis/invoices/create-client.js": "/chunks/oasis/invoices/create-client.js?id=1074eed0dd32164a0459", + "/chunks/oasis/invoices/create-invoice.js": "/chunks/oasis/invoices/create-invoice.js?id=d9deb3eb0c78b7cb9a12", + "/chunks/oasis/invoices/edit-invoice.js": "/chunks/oasis/invoices/edit-invoice.js?id=f46025ebb44bb463b0e4", + "/chunks/oasis/invoices/list.js": "/chunks/oasis/invoices/list.js?id=6ae008cd536881c544b1", + "/chunks/oasis/invoices/profile.js": "/chunks/oasis/invoices/profile.js?id=f5e6fe3ce017639e0bfd", + "/chunks/oasis/invoices~chunks/platform~chunks/shared.js": "/chunks/oasis/invoices~chunks/platform~chunks/shared.js?id=865f72ddd4457b2f06a7", + "/chunks/oasis/platba.js": "/chunks/oasis/platba.js?id=74bc76fa643e04156e64", + "/chunks/oasis/platba~chunks/oasis/upgrade-billing~chunks/oasis/upgrade-plan~chunks/upgrade-billing~ch~6880400b.js": "/chunks/oasis/platba~chunks/oasis/upgrade-billing~chunks/oasis/upgrade-plan~chunks/upgrade-billing~ch~6880400b.js?id=0c8d1c3cca084baa177f", + "/chunks/oasis/sign-up.js": "/chunks/oasis/sign-up.js?id=e53eeb48ebabae259f9c", + "/chunks/oasis/upgrade-billing.js": "/chunks/oasis/upgrade-billing.js?id=3b2f29d137b49337fef9", + "/chunks/oasis/upgrade-plan.js": "/chunks/oasis/upgrade-plan.js?id=d1c7d3fef894070daf3e", + "/chunks/oasis/user-create.js": "/chunks/oasis/user-create.js?id=3049cab9b83dbaa2e845", + "/chunks/oasis/users.js": "/chunks/oasis/users.js?id=d15e1dd3ad4aa6cd8a77", + "/chunks/page-edit.js": "/chunks/page-edit.js?id=4c04e9f1bbecd8d1d9ba", + "/chunks/pages.js": "/chunks/pages.js?id=99b0fdc98f5a75997fa0", + "/chunks/plan.js": "/chunks/plan.js?id=ac3046761e9083aa3053", + "/chunks/plan-create.js": "/chunks/plan-create.js?id=b966184a7aa84bdd297e", + "/chunks/plan-delete.js": "/chunks/plan-delete.js?id=f193816778245ea66d02", + "/chunks/plan-settings.js": "/chunks/plan-settings.js?id=66123f72696b47a986a2", + "/chunks/plan-subscribers.js": "/chunks/plan-subscribers.js?id=08e2056bc3744b2ea8f9", + "/chunks/plans.js": "/chunks/plans.js?id=83fc2cc3cd4b76c8f8f0", + "/chunks/platform.js": "/chunks/platform.js?id=2abcf9db97eafddc7dfb", + "/chunks/platform~chunks/shared.js": "/chunks/platform~chunks/shared.js?id=7e8eacb61e51486a09d9", + "/chunks/profile.js": "/chunks/profile.js?id=1c1c666004fb44b1c404", + "/chunks/purchase-code.js": "/chunks/purchase-code.js?id=e00ee12cde704060e15b", + "/chunks/settings.js": "/chunks/settings.js?id=fcc97a29894164e2977c", + "/chunks/settings-create-payment-methods.js": "/chunks/settings-create-payment-methods.js?id=88849e6ddce9226d49a5", + "/chunks/settings-invoices.js": "/chunks/settings-invoices.js?id=444b9bbc310647ddd297", + "/chunks/settings-password.js": "/chunks/settings-password.js?id=46961d5c0fc91f4ad638", + "/chunks/settings-payment-methods.js": "/chunks/settings-payment-methods.js?id=3bc709a228c0849a6f62", + "/chunks/settings-storage.js": "/chunks/settings-storage.js?id=0c243c68b17ca976d05a", + "/chunks/settings-subscription.js": "/chunks/settings-subscription.js?id=22e5c49d5b0a154e1a28", + "/chunks/setup-wizard.js": "/chunks/setup-wizard.js?id=c6b88005b133268ed88f", + "/chunks/shared.js": "/chunks/shared.js?id=a2c4342bfddd4946cb85", + "/chunks/shared-files.js": "/chunks/shared-files.js?id=cd25025e7c2930dbc7d7", + "/chunks/shared/authenticate.js": "/chunks/shared/authenticate.js?id=3d5c7754d438830a4204", + "/chunks/shared/file-browser.js": "/chunks/shared/file-browser.js?id=f46e9dc63c1313bc2256", + "/chunks/shared/single-file.js": "/chunks/shared/single-file.js?id=e8aedb75df7fe227d693", + "/chunks/sign-in.js": "/chunks/sign-in.js?id=162161aa204ab6931826", + "/chunks/sign-up.js": "/chunks/sign-up.js?id=ce15b1156cf37c0a9703", + "/chunks/stripe-credentials.js": "/chunks/stripe-credentials.js?id=1acdec3a157c8943a88d", + "/chunks/subscription-plans.js": "/chunks/subscription-plans.js?id=a843f8cf90ff1e3168e8", + "/chunks/subscription-service.js": "/chunks/subscription-service.js?id=90c1aa9431689a89eb3d", + "/chunks/upgrade-billing.js": "/chunks/upgrade-billing.js?id=b06efc03a40bcba2bdad", + "/chunks/upgrade-plan.js": "/chunks/upgrade-plan.js?id=35179531a8241da128e9", + "/chunks/user.js": "/chunks/user.js?id=3090bfd5b85dd1b200ec", + "/chunks/user-create.js": "/chunks/user-create.js?id=e1e6127d661c7edf0793", + "/chunks/user-delete.js": "/chunks/user-delete.js?id=8dfec8efd3019616377b", + "/chunks/user-detail.js": "/chunks/user-detail.js?id=b9b70e43cf551a574443", + "/chunks/user-invoices.js": "/chunks/user-invoices.js?id=6c4d0e9e058be11dc1f7", + "/chunks/user-password.js": "/chunks/user-password.js?id=a4b4ab4f4af11533eb4d", + "/chunks/user-storage.js": "/chunks/user-storage.js?id=4aec2d7b60ec0bc35fb9", + "/chunks/user-subscription.js": "/chunks/user-subscription.js?id=99efdd410910267db66e", + "/chunks/users.js": "/chunks/users.js?id=d28a9ac62a41f1ca4af8", + "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~bc1bf558.js": "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~bc1bf558.js?id=034c637712e863643bd6", + "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~ebd71fa1.js": "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~ebd71fa1.js?id=47a427056410805b2f8f", + "/vendors~chunks/files~chunks/oasis/invoices~chunks/platform~chunks/shared~chunks/shared-files~chunks/~9b82b04f.js": "/vendors~chunks/files~chunks/oasis/invoices~chunks/platform~chunks/shared~chunks/shared-files~chunks/~9b82b04f.js?id=548bff41ffa0385b8f01", + "/vendors~chunks/oasis/invoices~chunks/platform~chunks/shared.js": "/vendors~chunks/oasis/invoices~chunks/platform~chunks/shared.js?id=03d3cf785cbafa4d31f0", + "/chunks/oasis/invoices/list.026f4ba9898058caf041.hot-update.js": "/chunks/oasis/invoices/list.026f4ba9898058caf041.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.4eddb775c74335508f0a.hot-update.js": "/chunks/oasis/invoices/edit-invoice.4eddb775c74335508f0a.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.0e2a2f7c01c9d8f7bd89.hot-update.js": "/chunks/oasis/invoices/edit-invoice.0e2a2f7c01c9d8f7bd89.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.63a0d4c1bbf0fa598abe.hot-update.js": "/chunks/oasis/invoices/edit-invoice.63a0d4c1bbf0fa598abe.hot-update.js", + "/js/main.f715490e36d652014460.hot-update.js": "/js/main.f715490e36d652014460.hot-update.js", + "/chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chu~f7b5598c.js": "/chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chu~f7b5598c.js?id=561bbeab3ee2be3482d1", + "/chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/~968e2d44.js": "/chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/~968e2d44.js?id=e84800d9aeaa44d365c5", + "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~2a5ca68e.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~2a5ca68e.js?id=988a6dd68e8842584a2f", + "/chunks/app-language~chunks/app-settings~chunks/dashboard~chunks/dashboard-oasis~chunks/invoices~chun~860c81f3.js": "/chunks/app-language~chunks/app-settings~chunks/dashboard~chunks/dashboard-oasis~chunks/invoices~chun~860c81f3.js?id=32f0f57fa68fadd9ab6d", + "/chunks/oasis/invoices/edit-invoice.f715490e36d652014460.hot-update.js": "/chunks/oasis/invoices/edit-invoice.f715490e36d652014460.hot-update.js", + "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~7e795377.js": "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~7e795377.js?id=fa4b880e7f3c8341dab9", + "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~a77ef2b6.js": "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~a77ef2b6.js?id=d08013f096cb8da8d64c", + "/chunks/oasis/invoices/list.899af304fb7a63894193.hot-update.js": "/chunks/oasis/invoices/list.899af304fb7a63894193.hot-update.js", + "/js/main.56461b40fb3fb6f4c9fc.hot-update.js": "/js/main.56461b40fb3fb6f4c9fc.hot-update.js", + "/chunks/oasis/invoices.56461b40fb3fb6f4c9fc.hot-update.js": "/chunks/oasis/invoices.56461b40fb3fb6f4c9fc.hot-update.js", + "/chunks/oasis/invoices/client-invoices.56461b40fb3fb6f4c9fc.hot-update.js": "/chunks/oasis/invoices/client-invoices.56461b40fb3fb6f4c9fc.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.56461b40fb3fb6f4c9fc.hot-update.js": "/chunks/oasis/invoices/edit-invoice.56461b40fb3fb6f4c9fc.hot-update.js", + "/chunks/oasis/invoices/list.56461b40fb3fb6f4c9fc.hot-update.js": "/chunks/oasis/invoices/list.56461b40fb3fb6f4c9fc.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.af27cf38064ea659e2c4.hot-update.js": "/chunks/oasis/invoices/edit-invoice.af27cf38064ea659e2c4.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.d348d20e525ce5579274.hot-update.js": "/chunks/oasis/invoices/edit-invoice.d348d20e525ce5579274.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.4ff8e31134d4c3ef3833.hot-update.js": "/chunks/oasis/invoices/edit-invoice.4ff8e31134d4c3ef3833.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.41fc16199810702a0399.hot-update.js": "/chunks/oasis/invoices/edit-invoice.41fc16199810702a0399.hot-update.js", + "/chunks/oasis/invoices/list.7bb780bfed72b74b5b0f.hot-update.js": "/chunks/oasis/invoices/list.7bb780bfed72b74b5b0f.hot-update.js", + "/chunks/oasis/invoices/create-invoice.48e2ec0329a24604e772.hot-update.js": "/chunks/oasis/invoices/create-invoice.48e2ec0329a24604e772.hot-update.js", + "/chunks/oasis/invoices/create-invoice.78477379f3f48137c8c0.hot-update.js": "/chunks/oasis/invoices/create-invoice.78477379f3f48137c8c0.hot-update.js", + "/chunks/oasis/invoices/create-invoice.9d09da188e2a535bdf58.hot-update.js": "/chunks/oasis/invoices/create-invoice.9d09da188e2a535bdf58.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.611d4ff1848396f4d487.hot-update.js": "/chunks/oasis/invoices/edit-invoice.611d4ff1848396f4d487.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.815ffe2ce16f8f9a13d5.hot-update.js": "/chunks/oasis/invoices/edit-invoice.815ffe2ce16f8f9a13d5.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.a98fb514aae350478e29.hot-update.js": "/chunks/oasis/invoices/edit-invoice.a98fb514aae350478e29.hot-update.js", + "/chunks/settings-invoices.ba300614b6cfac28ecf2.hot-update.js": "/chunks/settings-invoices.ba300614b6cfac28ecf2.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.52146d054f77a2fddea3.hot-update.js": "/chunks/oasis/invoices/edit-invoice.52146d054f77a2fddea3.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.c2891d965396f19e73fa.hot-update.js": "/chunks/oasis/invoices/edit-invoice.c2891d965396f19e73fa.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.84852c4dca8df35c0da6.hot-update.js": "/chunks/oasis/invoices/edit-invoice.84852c4dca8df35c0da6.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.923b2ffca6b622513d08.hot-update.js": "/chunks/oasis/invoices/edit-invoice.923b2ffca6b622513d08.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.2dad59f98d87a20dfc1c.hot-update.js": "/chunks/oasis/invoices/edit-invoice.2dad59f98d87a20dfc1c.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.08c250011f233f62ed41.hot-update.js": "/chunks/oasis/invoices/edit-invoice.08c250011f233f62ed41.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.8a8486d58bbfbd70fbf8.hot-update.js": "/chunks/oasis/invoices/edit-invoice.8a8486d58bbfbd70fbf8.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.bc4f02507b8051750090.hot-update.js": "/chunks/oasis/invoices/edit-invoice.bc4f02507b8051750090.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.7a3c56c1d20c5b1b3516.hot-update.js": "/chunks/oasis/invoices/edit-invoice.7a3c56c1d20c5b1b3516.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.ef33517e3b97aef5dd0f.hot-update.js": "/chunks/oasis/invoices/edit-invoice.ef33517e3b97aef5dd0f.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.fe68c7be6dbd18ac8c17.hot-update.js": "/chunks/oasis/invoices/edit-invoice.fe68c7be6dbd18ac8c17.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.a85b437e975e59b79683.hot-update.js": "/chunks/oasis/invoices/edit-invoice.a85b437e975e59b79683.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.19c86b7bb6f4f540a01c.hot-update.js": "/chunks/oasis/invoices/edit-invoice.19c86b7bb6f4f540a01c.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.cb4f67dd12024e29db04.hot-update.js": "/chunks/oasis/invoices/edit-invoice.cb4f67dd12024e29db04.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.80a52aeb3183100af99d.hot-update.js": "/chunks/oasis/invoices/edit-invoice.80a52aeb3183100af99d.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.ffea9fa001d9b2ac34eb.hot-update.js": "/chunks/oasis/invoices/edit-invoice.ffea9fa001d9b2ac34eb.hot-update.js", + "/chunks/oasis/invoices/edit-invoice.91f9c200784731462be0.hot-update.js": "/chunks/oasis/invoices/edit-invoice.91f9c200784731462be0.hot-update.js", + "/chunks/oasis/invoices/client-invoices.5072ebf8fa7df556cb57.hot-update.js": "/chunks/oasis/invoices/client-invoices.5072ebf8fa7df556cb57.hot-update.js", + "/chunks/files~chunks/oasis/invoices/list~chunks/shared-files~chunks/shared/file-browser.b74b4a9e0d0fce8c9999.hot-update.js": "/chunks/files~chunks/oasis/invoices/list~chunks/shared-files~chunks/shared/file-browser.b74b4a9e0d0fce8c9999.hot-update.js", + "/chunks/oasis/invoices/list.b74b4a9e0d0fce8c9999.hot-update.js": "/chunks/oasis/invoices/list.b74b4a9e0d0fce8c9999.hot-update.js", + "/chunks/oasis/invoices/list.a530873b79e6f02e963b.hot-update.js": "/chunks/oasis/invoices/list.a530873b79e6f02e963b.hot-update.js", + "/chunks/oasis/invoices/list.3ef4bc2a5de3c62b1a5b.hot-update.js": "/chunks/oasis/invoices/list.3ef4bc2a5de3c62b1a5b.hot-update.js", + "/chunks/oasis/invoices/list.7752eb2fa6862f28056d.hot-update.js": "/chunks/oasis/invoices/list.7752eb2fa6862f28056d.hot-update.js", + "/chunks/oasis/invoices/list.aa29b2473860c7f19e8a.hot-update.js": "/chunks/oasis/invoices/list.aa29b2473860c7f19e8a.hot-update.js", + "/chunks/oasis/invoices/list.69799a73ad4b61c770d5.hot-update.js": "/chunks/oasis/invoices/list.69799a73ad4b61c770d5.hot-update.js", + "/chunks/oasis/invoices/list.d090fc1951292d8ff624.hot-update.js": "/chunks/oasis/invoices/list.d090fc1951292d8ff624.hot-update.js", + "/chunks/files~chunks/oasis/invoices/list~chunks/shared-files~chunks/shared/file-browser.1eeaa09c71309950462a.hot-update.js": "/chunks/files~chunks/oasis/invoices/list~chunks/shared-files~chunks/shared/file-browser.1eeaa09c71309950462a.hot-update.js", + "/chunks/oasis/invoices/list.1eeaa09c71309950462a.hot-update.js": "/chunks/oasis/invoices/list.1eeaa09c71309950462a.hot-update.js", + "/chunks/oasis/invoices/list.08544d7b8731a337ef90.hot-update.js": "/chunks/oasis/invoices/list.08544d7b8731a337ef90.hot-update.js", + "/chunks/oasis/invoices/list.ccf656f65531c10a92bd.hot-update.js": "/chunks/oasis/invoices/list.ccf656f65531c10a92bd.hot-update.js", + "/chunks/oasis/invoices/list.18e55f927f14fa1d4280.hot-update.js": "/chunks/oasis/invoices/list.18e55f927f14fa1d4280.hot-update.js", + "/chunks/oasis/invoices/list.d32761e519863923f58b.hot-update.js": "/chunks/oasis/invoices/list.d32761e519863923f58b.hot-update.js", + "/chunks/oasis/invoices/list.9c653b2af725b526e8c7.hot-update.js": "/chunks/oasis/invoices/list.9c653b2af725b526e8c7.hot-update.js", + "/chunks/oasis/invoices/list.273d35f00b860ba38a0c.hot-update.js": "/chunks/oasis/invoices/list.273d35f00b860ba38a0c.hot-update.js", + "/chunks/oasis/invoices/list.32466dc196d5899a7512.hot-update.js": "/chunks/oasis/invoices/list.32466dc196d5899a7512.hot-update.js", + "/chunks/oasis/invoices/list.b5235811bc51f8ec5c72.hot-update.js": "/chunks/oasis/invoices/list.b5235811bc51f8ec5c72.hot-update.js", + "/chunks/oasis/invoices/list.1f90791d8365c6f04be1.hot-update.js": "/chunks/oasis/invoices/list.1f90791d8365c6f04be1.hot-update.js", + "/chunks/oasis/invoices/list.43e162d60462e4a7ac9c.hot-update.js": "/chunks/oasis/invoices/list.43e162d60462e4a7ac9c.hot-update.js", + "/chunks/oasis/invoices/list.f3674673c63d2b13e36a.hot-update.js": "/chunks/oasis/invoices/list.f3674673c63d2b13e36a.hot-update.js", + "/chunks/oasis/invoices/list.989c61f17b13c9a59ee3.hot-update.js": "/chunks/oasis/invoices/list.989c61f17b13c9a59ee3.hot-update.js", + "/chunks/oasis/invoices/list.8f464b4bcd840fef801b.hot-update.js": "/chunks/oasis/invoices/list.8f464b4bcd840fef801b.hot-update.js", + "/chunks/oasis/invoices/list.c2ee1fee228bbdea8c6a.hot-update.js": "/chunks/oasis/invoices/list.c2ee1fee228bbdea8c6a.hot-update.js", + "/chunks/oasis/invoices.6d960f3754123a387928.hot-update.js": "/chunks/oasis/invoices.6d960f3754123a387928.hot-update.js", + "/chunks/oasis/invoices/list.6d960f3754123a387928.hot-update.js": "/chunks/oasis/invoices/list.6d960f3754123a387928.hot-update.js", + "/chunks/oasis/invoices/list.aa9ca31164bc17e8ea1e.hot-update.js": "/chunks/oasis/invoices/list.aa9ca31164bc17e8ea1e.hot-update.js", + "/chunks/oasis/invoices/list.a98a7ec97895651e30d0.hot-update.js": "/chunks/oasis/invoices/list.a98a7ec97895651e30d0.hot-update.js", + "/chunks/oasis/invoices/list.fa3795eb169c96b0dcd3.hot-update.js": "/chunks/oasis/invoices/list.fa3795eb169c96b0dcd3.hot-update.js", + "/chunks/oasis/invoices/list.363db8c53aa63943b976.hot-update.js": "/chunks/oasis/invoices/list.363db8c53aa63943b976.hot-update.js", + "/chunks/oasis/invoices/list.1602a2804fc10d48d94e.hot-update.js": "/chunks/oasis/invoices/list.1602a2804fc10d48d94e.hot-update.js", + "/chunks/oasis/invoices/list.5b6f375d9ac0bd58b748.hot-update.js": "/chunks/oasis/invoices/list.5b6f375d9ac0bd58b748.hot-update.js", + "/chunks/oasis/invoices/list.a3b1b93dfbfa2b24354e.hot-update.js": "/chunks/oasis/invoices/list.a3b1b93dfbfa2b24354e.hot-update.js", + "/chunks/oasis/invoices/list.3b8fb33e179c233a099f.hot-update.js": "/chunks/oasis/invoices/list.3b8fb33e179c233a099f.hot-update.js", + "/chunks/oasis/invoices/create-invoice.df15c2f6ab404c0a5aa5.hot-update.js": "/chunks/oasis/invoices/create-invoice.df15c2f6ab404c0a5aa5.hot-update.js", + "/chunks/oasis/invoices/create-client.5295c95cefe5a365db39.hot-update.js": "/chunks/oasis/invoices/create-client.5295c95cefe5a365db39.hot-update.js", + "/chunks/oasis/invoices/create-invoice.2ead30e8d0c6b1c13381.hot-update.js": "/chunks/oasis/invoices/create-invoice.2ead30e8d0c6b1c13381.hot-update.js", + "/chunks/oasis/invoices/create-invoice.e562483356f2538a3914.hot-update.js": "/chunks/oasis/invoices/create-invoice.e562483356f2538a3914.hot-update.js", + "/chunks/oasis/invoices/create-invoice.f955b3c368ef5e10b02e.hot-update.js": "/chunks/oasis/invoices/create-invoice.f955b3c368ef5e10b02e.hot-update.js", + "/chunks/oasis/invoices/create-invoice.b87e7cc19deb5d8134ac.hot-update.js": "/chunks/oasis/invoices/create-invoice.b87e7cc19deb5d8134ac.hot-update.js", + "/chunks/oasis/invoices/create-invoice.c3185882e157a1203d4c.hot-update.js": "/chunks/oasis/invoices/create-invoice.c3185882e157a1203d4c.hot-update.js", + "/chunks/oasis/invoices/create-invoice.fce45048a1e1b00ef163.hot-update.js": "/chunks/oasis/invoices/create-invoice.fce45048a1e1b00ef163.hot-update.js", + "/chunks/oasis/invoices/profile.7b4e2eb09a7e1d1c7a86.hot-update.js": "/chunks/oasis/invoices/profile.7b4e2eb09a7e1d1c7a86.hot-update.js", + "/chunks/oasis/invoices/profile.8f2b3ea340152ed10407.hot-update.js": "/chunks/oasis/invoices/profile.8f2b3ea340152ed10407.hot-update.js", + "/chunks/oasis/invoices/profile.a4401fcd8d0cab3a61de.hot-update.js": "/chunks/oasis/invoices/profile.a4401fcd8d0cab3a61de.hot-update.js", + "/chunks/oasis/invoices/profile.7ec8b3dc8ec616ae8432.hot-update.js": "/chunks/oasis/invoices/profile.7ec8b3dc8ec616ae8432.hot-update.js", + "/chunks/oasis/invoices/profile.49426fdaf898284be9c2.hot-update.js": "/chunks/oasis/invoices/profile.49426fdaf898284be9c2.hot-update.js", + "/chunks/oasis/invoices/profile.49b6146eea561183bf6c.hot-update.js": "/chunks/oasis/invoices/profile.49b6146eea561183bf6c.hot-update.js", + "/chunks/dashboard~chunks/dashboard-oasis.9c012ddbb007b59a2484.hot-update.js": "/chunks/dashboard~chunks/dashboard-oasis.9c012ddbb007b59a2484.hot-update.js", + "/chunks/invoices.9c012ddbb007b59a2484.hot-update.js": "/chunks/invoices.9c012ddbb007b59a2484.hot-update.js", + "/chunks/oasis/invoices/client-invoices.9c012ddbb007b59a2484.hot-update.js": "/chunks/oasis/invoices/client-invoices.9c012ddbb007b59a2484.hot-update.js", + "/chunks/oasis/invoices/profile.9c012ddbb007b59a2484.hot-update.js": "/chunks/oasis/invoices/profile.9c012ddbb007b59a2484.hot-update.js", + "/chunks/pages.9c012ddbb007b59a2484.hot-update.js": "/chunks/pages.9c012ddbb007b59a2484.hot-update.js", + "/chunks/plans.9c012ddbb007b59a2484.hot-update.js": "/chunks/plans.9c012ddbb007b59a2484.hot-update.js", + "/chunks/user-invoices.9c012ddbb007b59a2484.hot-update.js": "/chunks/user-invoices.9c012ddbb007b59a2484.hot-update.js", + "/chunks/oasis/invoices/profile.587fbdc2aea51d7d3e31.hot-update.js": "/chunks/oasis/invoices/profile.587fbdc2aea51d7d3e31.hot-update.js", + "/chunks/oasis/invoices/profile.19640dd8f223226fbe6e.hot-update.js": "/chunks/oasis/invoices/profile.19640dd8f223226fbe6e.hot-update.js", + "/chunks/dashboard~chunks/dashboard-oasis.9e52264e5f7b725e356c.hot-update.js": "/chunks/dashboard~chunks/dashboard-oasis.9e52264e5f7b725e356c.hot-update.js", + "/chunks/invoices.9e52264e5f7b725e356c.hot-update.js": "/chunks/invoices.9e52264e5f7b725e356c.hot-update.js", + "/chunks/oasis/invoices/client-invoices.9e52264e5f7b725e356c.hot-update.js": "/chunks/oasis/invoices/client-invoices.9e52264e5f7b725e356c.hot-update.js", + "/chunks/oasis/invoices/profile.9e52264e5f7b725e356c.hot-update.js": "/chunks/oasis/invoices/profile.9e52264e5f7b725e356c.hot-update.js", + "/chunks/pages.9e52264e5f7b725e356c.hot-update.js": "/chunks/pages.9e52264e5f7b725e356c.hot-update.js", + "/chunks/plans.9e52264e5f7b725e356c.hot-update.js": "/chunks/plans.9e52264e5f7b725e356c.hot-update.js", + "/chunks/user-invoices.9e52264e5f7b725e356c.hot-update.js": "/chunks/user-invoices.9e52264e5f7b725e356c.hot-update.js", + "/chunks/dashboard~chunks/dashboard-oasis.1e7faf1470c2bc7db836.hot-update.js": "/chunks/dashboard~chunks/dashboard-oasis.1e7faf1470c2bc7db836.hot-update.js", + "/chunks/invoices.1e7faf1470c2bc7db836.hot-update.js": "/chunks/invoices.1e7faf1470c2bc7db836.hot-update.js", + "/chunks/oasis/invoices/client-invoices.1e7faf1470c2bc7db836.hot-update.js": "/chunks/oasis/invoices/client-invoices.1e7faf1470c2bc7db836.hot-update.js", + "/chunks/oasis/invoices/profile.1e7faf1470c2bc7db836.hot-update.js": "/chunks/oasis/invoices/profile.1e7faf1470c2bc7db836.hot-update.js", + "/chunks/pages.1e7faf1470c2bc7db836.hot-update.js": "/chunks/pages.1e7faf1470c2bc7db836.hot-update.js", + "/chunks/plans.1e7faf1470c2bc7db836.hot-update.js": "/chunks/plans.1e7faf1470c2bc7db836.hot-update.js", + "/chunks/user-invoices.1e7faf1470c2bc7db836.hot-update.js": "/chunks/user-invoices.1e7faf1470c2bc7db836.hot-update.js", + "/chunks/dashboard~chunks/dashboard-oasis.7390af0a50d7d48f339d.hot-update.js": "/chunks/dashboard~chunks/dashboard-oasis.7390af0a50d7d48f339d.hot-update.js", + "/chunks/invoices.7390af0a50d7d48f339d.hot-update.js": "/chunks/invoices.7390af0a50d7d48f339d.hot-update.js", + "/chunks/oasis/invoices/client-invoices.7390af0a50d7d48f339d.hot-update.js": "/chunks/oasis/invoices/client-invoices.7390af0a50d7d48f339d.hot-update.js", + "/chunks/oasis/invoices/profile.7390af0a50d7d48f339d.hot-update.js": "/chunks/oasis/invoices/profile.7390af0a50d7d48f339d.hot-update.js", + "/chunks/pages.7390af0a50d7d48f339d.hot-update.js": "/chunks/pages.7390af0a50d7d48f339d.hot-update.js", + "/chunks/plans.7390af0a50d7d48f339d.hot-update.js": "/chunks/plans.7390af0a50d7d48f339d.hot-update.js", + "/chunks/user-invoices.7390af0a50d7d48f339d.hot-update.js": "/chunks/user-invoices.7390af0a50d7d48f339d.hot-update.js", + "/chunks/oasis/invoices/profile.a8da95a0f6161990bb7c.hot-update.js": "/chunks/oasis/invoices/profile.a8da95a0f6161990bb7c.hot-update.js", + "/chunks/dashboard~chunks/dashboard-oasis.6a7a27a2f22c54f9022f.hot-update.js": "/chunks/dashboard~chunks/dashboard-oasis.6a7a27a2f22c54f9022f.hot-update.js", + "/chunks/invoices.6a7a27a2f22c54f9022f.hot-update.js": "/chunks/invoices.6a7a27a2f22c54f9022f.hot-update.js", + "/chunks/oasis/invoices/client-invoices.6a7a27a2f22c54f9022f.hot-update.js": "/chunks/oasis/invoices/client-invoices.6a7a27a2f22c54f9022f.hot-update.js", + "/chunks/oasis/invoices/profile.6a7a27a2f22c54f9022f.hot-update.js": "/chunks/oasis/invoices/profile.6a7a27a2f22c54f9022f.hot-update.js", + "/chunks/pages.6a7a27a2f22c54f9022f.hot-update.js": "/chunks/pages.6a7a27a2f22c54f9022f.hot-update.js", + "/chunks/plans.6a7a27a2f22c54f9022f.hot-update.js": "/chunks/plans.6a7a27a2f22c54f9022f.hot-update.js", + "/chunks/user-invoices.6a7a27a2f22c54f9022f.hot-update.js": "/chunks/user-invoices.6a7a27a2f22c54f9022f.hot-update.js", + "/chunks/oasis/invoices.876ee177ec9266d05012.hot-update.js": "/chunks/oasis/invoices.876ee177ec9266d05012.hot-update.js", + "/chunks/oasis/invoices.ef4be04d8d1e51770a02.hot-update.js": "/chunks/oasis/invoices.ef4be04d8d1e51770a02.hot-update.js", + "/chunks/oasis/invoices/list.9ae2394a14af2dd7a81f.hot-update.js": "/chunks/oasis/invoices/list.9ae2394a14af2dd7a81f.hot-update.js", + "/chunks/oasis/invoices.34e9637a36852035965a.hot-update.js": "/chunks/oasis/invoices.34e9637a36852035965a.hot-update.js", + "/chunks/oasis/invoices/list.87c70b2682d2521f3320.hot-update.js": "/chunks/oasis/invoices/list.87c70b2682d2521f3320.hot-update.js", + "/chunks/oasis/invoices/list.ca048b52ab8347055f21.hot-update.js": "/chunks/oasis/invoices/list.ca048b52ab8347055f21.hot-update.js", + "/chunks/oasis/invoices/list.cfa8bbd0d7c7f25596ee.hot-update.js": "/chunks/oasis/invoices/list.cfa8bbd0d7c7f25596ee.hot-update.js", + "/chunks/oasis/invoices/list.e7342535fb52068d1839.hot-update.js": "/chunks/oasis/invoices/list.e7342535fb52068d1839.hot-update.js", + "/chunks/oasis/invoices.858f59b6b628dc7a1b8b.hot-update.js": "/chunks/oasis/invoices.858f59b6b628dc7a1b8b.hot-update.js", + "/chunks/admin~chunks/oasis/invoices~chunks/platform.9fd5b5a1dfce25c44aa8.hot-update.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform.9fd5b5a1dfce25c44aa8.hot-update.js", + "/chunks/admin~chunks/oasis/invoices~chunks/platform.0f8ef4f46bb06934d372.hot-update.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform.0f8ef4f46bb06934d372.hot-update.js", + "/chunks/admin~chunks/oasis/invoices~chunks/platform.66fce2bf92edbd823f05.hot-update.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform.66fce2bf92edbd823f05.hot-update.js", + "/chunks/admin~chunks/oasis/invoices~chunks/platform.906190d2055d94bb4650.hot-update.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform.906190d2055d94bb4650.hot-update.js", + "/chunks/admin~chunks/oasis/invoices~chunks/platform.8015cb9cba74a6fda751.hot-update.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform.8015cb9cba74a6fda751.hot-update.js", + "/chunks/admin~chunks/oasis/invoices~chunks/platform.30c5838a3f7d2d46ea96.hot-update.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform.30c5838a3f7d2d46ea96.hot-update.js", + "/chunks/admin~chunks/oasis/invoices~chunks/platform.d2e15c5eb6a6e7a1d64f.hot-update.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform.d2e15c5eb6a6e7a1d64f.hot-update.js", + "/chunks/admin~chunks/oasis/invoices~chunks/platform.6d7f9790a467dbc88510.hot-update.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform.6d7f9790a467dbc88510.hot-update.js", + "/chunks/oasis/invoices/list.abc045c4c76cb2c5f996.hot-update.js": "/chunks/oasis/invoices/list.abc045c4c76cb2c5f996.hot-update.js", + "/chunks/oasis/invoices.943b5fae818faca09dd4.hot-update.js": "/chunks/oasis/invoices.943b5fae818faca09dd4.hot-update.js", + "/chunks/oasis/invoices/profile.bd7771e06e77bb0bf112.hot-update.js": "/chunks/oasis/invoices/profile.bd7771e06e77bb0bf112.hot-update.js", + "/chunks/oasis/invoices/profile.a861f0c0e49d05712a31.hot-update.js": "/chunks/oasis/invoices/profile.a861f0c0e49d05712a31.hot-update.js", + "/chunks/oasis/invoices/profile.007f1021a3cd4998913c.hot-update.js": "/chunks/oasis/invoices/profile.007f1021a3cd4998913c.hot-update.js", + "/chunks/oasis/invoices/profile.338c01656824f0d0e4f5.hot-update.js": "/chunks/oasis/invoices/profile.338c01656824f0d0e4f5.hot-update.js", + "/chunks/oasis/invoices/profile.0eef57513d1f6523048a.hot-update.js": "/chunks/oasis/invoices/profile.0eef57513d1f6523048a.hot-update.js", + "/chunks/oasis/invoices/profile.b356d50ed2447b62f236.hot-update.js": "/chunks/oasis/invoices/profile.b356d50ed2447b62f236.hot-update.js", + "/js/main.50b2426dc6c75ea256e0.hot-update.js": "/js/main.50b2426dc6c75ea256e0.hot-update.js", + "/chunks/admin~chunks/oasis/invoices~chunks/platform.50b2426dc6c75ea256e0.hot-update.js": "/chunks/admin~chunks/oasis/invoices~chunks/platform.50b2426dc6c75ea256e0.hot-update.js", + "/chunks/oasis/invoices.50b2426dc6c75ea256e0.hot-update.js": "/chunks/oasis/invoices.50b2426dc6c75ea256e0.hot-update.js", + "/chunks/oasis/invoices/profile.50b2426dc6c75ea256e0.hot-update.js": "/chunks/oasis/invoices/profile.50b2426dc6c75ea256e0.hot-update.js", + "/chunks/oasis/invoices/profile.b49575aafd75fe518435.hot-update.js": "/chunks/oasis/invoices/profile.b49575aafd75fe518435.hot-update.js", + "/chunks/oasis/invoices/profile.b3799c150d900e5cc19f.hot-update.js": "/chunks/oasis/invoices/profile.b3799c150d900e5cc19f.hot-update.js", + "/chunks/oasis/invoices/profile.0c3638e318c9e405cb81.hot-update.js": "/chunks/oasis/invoices/profile.0c3638e318c9e405cb81.hot-update.js", + "/chunks/oasis/invoices/profile.08244c593dd7d91fe7e0.hot-update.js": "/chunks/oasis/invoices/profile.08244c593dd7d91fe7e0.hot-update.js", + "/chunks/oasis/invoices/profile.bc1abde1582426c749e9.hot-update.js": "/chunks/oasis/invoices/profile.bc1abde1582426c749e9.hot-update.js", + "/chunks/oasis/invoices/profile.a238a521c697dd727639.hot-update.js": "/chunks/oasis/invoices/profile.a238a521c697dd727639.hot-update.js", + "/chunks/oasis/invoices/profile.446b243e77985846b884.hot-update.js": "/chunks/oasis/invoices/profile.446b243e77985846b884.hot-update.js", + "/chunks/oasis/invoices/profile.2572d10116ab9bf6aab3.hot-update.js": "/chunks/oasis/invoices/profile.2572d10116ab9bf6aab3.hot-update.js", + "/chunks/oasis/invoices/profile.88494b5d73d9114d6c0e.hot-update.js": "/chunks/oasis/invoices/profile.88494b5d73d9114d6c0e.hot-update.js", + "/chunks/oasis/invoices/profile.7c48ba71324804eb7251.hot-update.js": "/chunks/oasis/invoices/profile.7c48ba71324804eb7251.hot-update.js", + "/chunks/oasis/invoices/profile.3ee8a206069b40743915.hot-update.js": "/chunks/oasis/invoices/profile.3ee8a206069b40743915.hot-update.js", + "/chunks/oasis/invoices/profile.49504ccbdc3545756d29.hot-update.js": "/chunks/oasis/invoices/profile.49504ccbdc3545756d29.hot-update.js", + "/chunks/oasis/invoices/profile.2009bfce7482eaf7f61c.hot-update.js": "/chunks/oasis/invoices/profile.2009bfce7482eaf7f61c.hot-update.js", + "/chunks/oasis/invoices/profile.81a5f064983651f75e60.hot-update.js": "/chunks/oasis/invoices/profile.81a5f064983651f75e60.hot-update.js", + "/chunks/oasis/invoices/profile.adf6d3a116cac3afcf3b.hot-update.js": "/chunks/oasis/invoices/profile.adf6d3a116cac3afcf3b.hot-update.js", + "/chunks/oasis/invoices/profile.1601836d1585541f02d1.hot-update.js": "/chunks/oasis/invoices/profile.1601836d1585541f02d1.hot-update.js", + "/chunks/oasis/invoices/profile.cd985ba56bbcc3734f94.hot-update.js": "/chunks/oasis/invoices/profile.cd985ba56bbcc3734f94.hot-update.js", + "/chunks/oasis/invoices/profile.cfa1f2a4956c0fbfa80d.hot-update.js": "/chunks/oasis/invoices/profile.cfa1f2a4956c0fbfa80d.hot-update.js", + "/chunks/oasis/invoices/profile.5883ec031820eb732eab.hot-update.js": "/chunks/oasis/invoices/profile.5883ec031820eb732eab.hot-update.js", + "/chunks/oasis/invoices/profile.2f9b0a5f92dcb87be84f.hot-update.js": "/chunks/oasis/invoices/profile.2f9b0a5f92dcb87be84f.hot-update.js", + "/chunks/oasis/invoices/profile.9e506f4d322679f289ef.hot-update.js": "/chunks/oasis/invoices/profile.9e506f4d322679f289ef.hot-update.js", + "/chunks/oasis/invoices/profile.df8761275e69e305e95a.hot-update.js": "/chunks/oasis/invoices/profile.df8761275e69e305e95a.hot-update.js", + "/chunks/oasis/invoices/list.644baaa5ebb70505b104.hot-update.js": "/chunks/oasis/invoices/list.644baaa5ebb70505b104.hot-update.js", + "/chunks/oasis/invoices/list.d7f3fee440c4c019d235.hot-update.js": "/chunks/oasis/invoices/list.d7f3fee440c4c019d235.hot-update.js", + "/chunks/oasis/invoices/list.89a76692335eeec8ea5f.hot-update.js": "/chunks/oasis/invoices/list.89a76692335eeec8ea5f.hot-update.js", + "/chunks/oasis/invoices/list.7d085e0a66f4309bc82a.hot-update.js": "/chunks/oasis/invoices/list.7d085e0a66f4309bc82a.hot-update.js", + "/chunks/oasis/invoices/list.5f3f40c60610c9d4c83c.hot-update.js": "/chunks/oasis/invoices/list.5f3f40c60610c9d4c83c.hot-update.js", + "/chunks/oasis/invoices/list.22c08a917f64f927231f.hot-update.js": "/chunks/oasis/invoices/list.22c08a917f64f927231f.hot-update.js", + "/chunks/oasis/invoices/list.3fdc621b760f1efa317d.hot-update.js": "/chunks/oasis/invoices/list.3fdc621b760f1efa317d.hot-update.js", + "/chunks/oasis/invoices/list.ca9be51ef6d4eb4c9bf0.hot-update.js": "/chunks/oasis/invoices/list.ca9be51ef6d4eb4c9bf0.hot-update.js", + "/chunks/oasis/invoices/list.092c9b166c72863f5e4d.hot-update.js": "/chunks/oasis/invoices/list.092c9b166c72863f5e4d.hot-update.js", + "/chunks/oasis/invoices/list.89eef0253968ce10d28d.hot-update.js": "/chunks/oasis/invoices/list.89eef0253968ce10d28d.hot-update.js", + "/chunks/oasis/invoices/list.cd2111e8b73790b11e8e.hot-update.js": "/chunks/oasis/invoices/list.cd2111e8b73790b11e8e.hot-update.js", + "/chunks/oasis/invoices/profile.1811f3e46e365402e0d9.hot-update.js": "/chunks/oasis/invoices/profile.1811f3e46e365402e0d9.hot-update.js", + "/chunks/oasis/invoices/list.5d6d81552adff4b103b3.hot-update.js": "/chunks/oasis/invoices/list.5d6d81552adff4b103b3.hot-update.js", + "/chunks/oasis/invoices/profile.4b864a0c460887fd7c31.hot-update.js": "/chunks/oasis/invoices/profile.4b864a0c460887fd7c31.hot-update.js", + "/js/main.e14ae36bec2dc7e377a5.hot-update.js": "/js/main.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/admin.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/admin.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/admin-account.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/admin-account.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chu~c7a13fb0.js": "/chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chu~c7a13fb0.js?id=62b552a0492fe95b2223", + "/chunks/admin-account~chunks/app-setup~chunks/billings-detail~chunks/create-new-password~chunks/datab~cf616679.js": "/chunks/admin-account~chunks/app-setup~chunks/billings-detail~chunks/create-new-password~chunks/datab~cf616679.js?id=fd241499c4e3b6a88840", + "/chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/~eeab5771.js": "/chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/~eeab5771.js?id=dc1abd740ef0db3451a2", + "/chunks/admin~chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/admin~chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser.js?id=a76042074e958eaab108", + "/chunks/admin~chunks/files~chunks/settings~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/admin~chunks/files~chunks/settings~chunks/shared-files~chunks/shared/file-browser.js?id=ebe46b2b6e56655c98f1", + "/chunks/admin~chunks/platform.js": "/chunks/admin~chunks/platform.js?id=26d495095073454b4c8f", + "/chunks/admin~chunks/platform~chunks/shared.js": "/chunks/admin~chunks/platform~chunks/shared.js?id=7e94943976a0aea65e09", + "/chunks/app-appearance.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/app-appearance.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~605f4c49.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~605f4c49.js?id=1ae1e65bb6a5ed7c3e10", + "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.js?id=7702f37f277478ad66c6", + "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~b9e5655a.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~b9e5655a.js?id=04f0cd9719723459b685", + "/chunks/app-billings.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/app-billings.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/app-email.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/app-email.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/app-index.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/app-index.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/app-language.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/app-language.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/app-language~chunks/app-settings~chunks/dashboard~chunks/invoices~chunks/page-edit~chunks/pag~824d674f.js": "/chunks/app-language~chunks/app-settings~chunks/dashboard~chunks/invoices~chunks/page-edit~chunks/pag~824d674f.js?id=46d89e7310e4babf1999", + "/chunks/app-language~chunks/dashboard~chunks/files~chunks/invoices~chunks/pages~chunks/plans~chunks/s~38c276fc.js": "/chunks/app-language~chunks/dashboard~chunks/files~chunks/invoices~chunks/pages~chunks/plans~chunks/s~38c276fc.js?id=da04bade02d8f48d5f8b", + "/chunks/app-others.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/app-others.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/app-payments.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/app-payments.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/app-setup.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/app-setup.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/billings-detail.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/billings-detail.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/contact-us.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/contact-us.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/dashboard.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/dashboard.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/dashboard~chunks/invoices~chunks/pages~chunks/plan-subscribers~chunks/plans~chunks/settings-i~0e2a0654.js": "/chunks/dashboard~chunks/invoices~chunks/pages~chunks/plan-subscribers~chunks/plans~chunks/settings-i~0e2a0654.js?id=9c449e322b1d52b8ad89", + "/chunks/database.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/database.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/dynamic-page.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/dynamic-page.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/environment-setup.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/environment-setup.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/files~chunks/platform~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/platform~chunks/shared-files~chunks/shared/file-browser.js?id=39233d603662ca3738e8", + "/chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser.js?id=4231d578d933b87cf7a2", + "/chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser~chunks/sha~8510f6c9.js": "/chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser~chunks/sha~8510f6c9.js?id=b4ccb4a816e5c72a0b85", + "/chunks/files~chunks/settings-subscription~chunks/shared-files~chunks/shared/file-browser~chunks/user~9058a49f.js": "/chunks/files~chunks/settings-subscription~chunks/shared-files~chunks/shared/file-browser~chunks/user~9058a49f.js?id=31a17ad1d2536342abbe", + "/chunks/files~chunks/shared-files~chunks/shared/file-browser.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/files~chunks/shared-files~chunks/shared/file-browser.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/files~chunks/shared-files~chunks/shared/file-browser~chunks/shared/single-file.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/files~chunks/shared-files~chunks/shared/file-browser~chunks/shared/single-file.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/homepage.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/homepage.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/installation-disclaimer.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/installation-disclaimer.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/invoices.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/invoices.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/not-found.js": "/chunks/not-found.js?id=7204a74c2db0ab70149c", + "/chunks/page-edit.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/page-edit.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/pages.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/pages.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/plan-create.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/plan-create.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/plan-delete.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/plan-delete.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/plan-settings.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/plan-settings.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/plan-subscribers.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/plan-subscribers.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/plans.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/plans.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/platform.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/platform.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/platform~chunks/shared.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/platform~chunks/shared.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/profile.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/profile.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/profile~chunks/settings-password.js": "/chunks/profile~chunks/settings-password.js?id=d0a44ee2cc3e9882c14a", + "/chunks/purchase-code.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/purchase-code.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/settings-create-payment-methods.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/settings-create-payment-methods.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/settings-invoices.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/settings-invoices.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/settings-password.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/settings-password.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/settings-payment-methods.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/settings-payment-methods.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/settings-storage.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/settings-storage.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/settings-subscription.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/settings-subscription.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/shared.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/shared.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/sign-in.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/sign-in.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/stripe-credentials.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/stripe-credentials.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/subscription-plans.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/subscription-plans.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/subscription-service.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/subscription-service.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/upgrade-billing.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/upgrade-billing.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/upgrade-billing~chunks/upgrade-plan.js": "/chunks/upgrade-billing~chunks/upgrade-plan.js?id=0bdf2950a5a73e6e6975", + "/chunks/upgrade-plan.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/upgrade-plan.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/user-create.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/user-create.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/user-delete.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/user-delete.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/user-detail.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/user-detail.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/user-invoices.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/user-invoices.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/user-password.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/user-password.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/user-storage.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/user-storage.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/user-subscription.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/user-subscription.e14ae36bec2dc7e377a5.hot-update.js", + "/chunks/users.e14ae36bec2dc7e377a5.hot-update.js": "/chunks/users.e14ae36bec2dc7e377a5.hot-update.js", + "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~2fac28cc.js": "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~2fac28cc.js?id=57c854adb91ed9a9d088", + "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~d5e36d91.js": "/vendors~chunks/admin~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~d5e36d91.js?id=170765b4fd923b62195c", + "/vendors~chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser~ch~52c14f2e.js": "/vendors~chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser~ch~52c14f2e.js?id=66afa0e341251a68c3d3", + "/vendors~chunks/platform~chunks/shared.js": "/vendors~chunks/platform~chunks/shared.js?id=eb141834bc24b72d8e92", + "/chunks/files.9b65c4391318da62cb5e.hot-update.js": "/chunks/files.9b65c4391318da62cb5e.hot-update.js", + "/chunks/files.7eee618b5a25d48acefd.hot-update.js": "/chunks/files.7eee618b5a25d48acefd.hot-update.js", + "/chunks/admin~chunks/platform.d9836e3498981bff49a7.hot-update.js": "/chunks/admin~chunks/platform.d9836e3498981bff49a7.hot-update.js", + "/chunks/admin~chunks/files~chunks/settings~chunks/shared-files~chunks/shared/file-browser.44f3a186549df7820367.hot-update.js": "/chunks/admin~chunks/files~chunks/settings~chunks/shared-files~chunks/shared/file-browser.44f3a186549df7820367.hot-update.js", + "/chunks/files.cd3cba455f84eb6635e5.hot-update.js": "/chunks/files.cd3cba455f84eb6635e5.hot-update.js", + "/chunks/files.468d675492042233acdd.hot-update.js": "/chunks/files.468d675492042233acdd.hot-update.js", + "/chunks/files.a65661e23aeac37cf0b8.hot-update.js": "/chunks/files.a65661e23aeac37cf0b8.hot-update.js", + "/chunks/admin~chunks/platform.668560e7afd04d140957.hot-update.js": "/chunks/admin~chunks/platform.668560e7afd04d140957.hot-update.js", + "/js/main.46a17203074cc430e987.hot-update.js": "/js/main.46a17203074cc430e987.hot-update.js", + "/chunks/admin~chunks/files~chunks/platform~chunks/shared~chunks/shared/file-browser.js": "/chunks/admin~chunks/files~chunks/platform~chunks/shared~chunks/shared/file-browser.js?id=15ca7a475288d2081302", + "/chunks/admin~chunks/files~chunks/settings~chunks/shared/file-browser.js": "/chunks/admin~chunks/files~chunks/settings~chunks/shared/file-browser.js?id=6e8f4b2902f25274a2ce", + "/chunks/app-language~chunks/dashboard~chunks/files~chunks/invoices~chunks/pages~chunks/plans~chunks/s~934b6779.js": "/chunks/app-language~chunks/dashboard~chunks/files~chunks/invoices~chunks/pages~chunks/plans~chunks/s~934b6779.js?id=1fdbe6ca547ba7bd5266", + "/chunks/files~chunks/platform~chunks/shared/file-browser.js": "/chunks/files~chunks/platform~chunks/shared/file-browser.js?id=197929fd6e8fb853bdbb", + "/chunks/files~chunks/platform~chunks/shared~chunks/shared/file-browser.js": "/chunks/files~chunks/platform~chunks/shared~chunks/shared/file-browser.js?id=79fbefea1ea5353aadff", + "/chunks/files~chunks/platform~chunks/shared~chunks/shared/file-browser~chunks/shared/single-file.js": "/chunks/files~chunks/platform~chunks/shared~chunks/shared/file-browser~chunks/shared/single-file.js?id=c311ddf66665e756332e", + "/chunks/files~chunks/settings-subscription~chunks/shared/file-browser~chunks/user-subscription.js": "/chunks/files~chunks/settings-subscription~chunks/shared/file-browser~chunks/user-subscription.js?id=8e64aa7dcf2243d072cf", + "/chunks/files~chunks/shared/file-browser~chunks/shared/single-file.js": "/chunks/files~chunks/shared/file-browser~chunks/shared/single-file.js?id=7290a11135390d651b60", + "/chunks/shared-files.46a17203074cc430e987.hot-update.js": "/chunks/shared-files.46a17203074cc430e987.hot-update.js", + "/vendors~chunks/files~chunks/platform~chunks/shared~chunks/shared/file-browser~chunks/shared/single-file.js": "/vendors~chunks/files~chunks/platform~chunks/shared~chunks/shared/file-browser~chunks/shared/single-file.js?id=ca01bfe1656f58710763", + "/js/main.bdb0092d351af22274c5.hot-update.js": "/js/main.bdb0092d351af22274c5.hot-update.js" } diff --git a/resources/js/components/Sidebar/ContentGroup.vue b/resources/js/components/Sidebar/ContentGroup.vue index 0acbe4be..7583bbf7 100644 --- a/resources/js/components/Sidebar/ContentGroup.vue +++ b/resources/js/components/Sidebar/ContentGroup.vue @@ -57,7 +57,7 @@ @import '@assets/vuefilemanager/_mixins'; .content-group { - margin-bottom: 30px; + margin-bottom: 15px; transition: all 300ms; .group-title { diff --git a/resources/js/components/Sidebar/SidebarNavigation.vue b/resources/js/components/Sidebar/SidebarNavigation.vue index 7b93e69c..dcc51735 100644 --- a/resources/js/components/Sidebar/SidebarNavigation.vue +++ b/resources/js/components/Sidebar/SidebarNavigation.vue @@ -14,12 +14,6 @@ - -
- -
-
-
@@ -175,16 +169,6 @@ } } - &.shared { - .button-icon { - background: rgba($yellow, 0.1); - - path, line, polyline, rect, circle { - stroke: $yellow; - } - } - } - &.trash { .button-icon { background: rgba($red, 0.1); diff --git a/resources/js/router.js b/resources/js/router.js index 3edf4294..1b188ed7 100644 --- a/resources/js/router.js +++ b/resources/js/router.js @@ -387,15 +387,6 @@ const routesUser = [ requiresAuth: true }, }, - { - name: 'SharedFiles', - path: '/platform/shared-files', - component: () => - import(/* webpackChunkName: "chunks/shared-files" */ './views/FilePages/SharedFiles'), - meta: { - requiresAuth: true - }, - }, { name: 'Settings', path: '/platform/settings', diff --git a/resources/js/views/FilePages/Files.vue b/resources/js/views/FilePages/Files.vue index 6161382f..09242169 100644 --- a/resources/js/views/FilePages/Files.vue +++ b/resources/js/views/FilePages/Files.vue @@ -38,6 +38,28 @@
+ + + + + @@ -85,7 +107,9 @@ import { FolderIcon, Trash2Icon, HomeIcon, - XIcon + XIcon, + LinkIcon, + UsersIcon, } from 'vue-feather-icons' export default { @@ -101,7 +125,9 @@ export default { FolderIcon, Trash2Icon, HomeIcon, - XIcon + XIcon, + LinkIcon, + UsersIcon, }, computed: { ...mapGetters(['user', 'homeDirectory', 'currentFolder', 'config', 'clipboard']), @@ -122,6 +148,12 @@ export default { } }, methods: { + getShared() { + this.$store.dispatch('getShared', [{back: false, init: false}]) + }, + getParticipantUploads() { + this.$store.dispatch('getParticipantUploads') + }, getTrash() { this.$store.dispatch('getTrash') }, diff --git a/resources/js/views/FilePages/SharedFiles.vue b/resources/js/views/FilePages/SharedFiles.vue deleted file mode 100644 index 6ce1c52a..00000000 --- a/resources/js/views/FilePages/SharedFiles.vue +++ /dev/null @@ -1,67 +0,0 @@ - - - - - From da38580504ca074e08983cbb5c845303840130d5 Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Thu, 6 May 2021 09:50:43 +0200 Subject: [PATCH 12/42] - reverse pdf zoom icons - store pdf zoom level into localstorage --- public/mix-manifest.json | 14 +++++++-- .../components/FilesView/FilePreviewMedia.vue | 31 +++++++++++++------ .../FilesView/FilePreviewToolbar.vue | 2 +- 3 files changed, 35 insertions(+), 12 deletions(-) diff --git a/public/mix-manifest.json b/public/mix-manifest.json index d2607c38..6f391ae3 100644 --- a/public/mix-manifest.json +++ b/public/mix-manifest.json @@ -77,7 +77,7 @@ "/chunks/plan-subscribers.js": "/chunks/plan-subscribers.js?id=08e2056bc3744b2ea8f9", "/chunks/plans.js": "/chunks/plans.js?id=83fc2cc3cd4b76c8f8f0", "/chunks/platform.js": "/chunks/platform.js?id=2abcf9db97eafddc7dfb", - "/chunks/platform~chunks/shared.js": "/chunks/platform~chunks/shared.js?id=7e8eacb61e51486a09d9", + "/chunks/platform~chunks/shared.js": "/chunks/platform~chunks/shared.js?id=159989005a7a026733d7", "/chunks/profile.js": "/chunks/profile.js?id=1c1c666004fb44b1c404", "/chunks/purchase-code.js": "/chunks/purchase-code.js?id=e00ee12cde704060e15b", "/chunks/settings.js": "/chunks/settings.js?id=fcc97a29894164e2977c", @@ -409,5 +409,15 @@ "/chunks/files~chunks/shared/file-browser~chunks/shared/single-file.js": "/chunks/files~chunks/shared/file-browser~chunks/shared/single-file.js?id=7290a11135390d651b60", "/chunks/shared-files.46a17203074cc430e987.hot-update.js": "/chunks/shared-files.46a17203074cc430e987.hot-update.js", "/vendors~chunks/files~chunks/platform~chunks/shared~chunks/shared/file-browser~chunks/shared/single-file.js": "/vendors~chunks/files~chunks/platform~chunks/shared~chunks/shared/file-browser~chunks/shared/single-file.js?id=ca01bfe1656f58710763", - "/js/main.bdb0092d351af22274c5.hot-update.js": "/js/main.bdb0092d351af22274c5.hot-update.js" + "/js/main.bdb0092d351af22274c5.hot-update.js": "/js/main.bdb0092d351af22274c5.hot-update.js", + "/chunks/platform~chunks/shared.5b967ec684a0e0d432fd.hot-update.js": "/chunks/platform~chunks/shared.5b967ec684a0e0d432fd.hot-update.js", + "/chunks/platform~chunks/shared.71db151c2925324c28a6.hot-update.js": "/chunks/platform~chunks/shared.71db151c2925324c28a6.hot-update.js", + "/chunks/platform~chunks/shared.6efdf43ed1a40677352d.hot-update.js": "/chunks/platform~chunks/shared.6efdf43ed1a40677352d.hot-update.js", + "/chunks/platform~chunks/shared.77fd9f61a8083f2256c5.hot-update.js": "/chunks/platform~chunks/shared.77fd9f61a8083f2256c5.hot-update.js", + "/chunks/platform~chunks/shared.162dd564700977ca831b.hot-update.js": "/chunks/platform~chunks/shared.162dd564700977ca831b.hot-update.js", + "/chunks/platform~chunks/shared.c41db38e07faf6709204.hot-update.js": "/chunks/platform~chunks/shared.c41db38e07faf6709204.hot-update.js", + "/chunks/platform~chunks/shared.6073e7b8d91739056e45.hot-update.js": "/chunks/platform~chunks/shared.6073e7b8d91739056e45.hot-update.js", + "/chunks/platform~chunks/shared.170f21e66b3c9c901033.hot-update.js": "/chunks/platform~chunks/shared.170f21e66b3c9c901033.hot-update.js", + "/chunks/platform~chunks/shared.6c21d61908391d289fde.hot-update.js": "/chunks/platform~chunks/shared.6c21d61908391d289fde.hot-update.js", + "/chunks/platform~chunks/shared.1107858fead4e99c0777.hot-update.js": "/chunks/platform~chunks/shared.1107858fead4e99c0777.hot-update.js" } diff --git a/resources/js/components/FilesView/FilePreviewMedia.vue b/resources/js/components/FilesView/FilePreviewMedia.vue index eef25114..082bbd17 100644 --- a/resources/js/components/FilesView/FilePreviewMedia.vue +++ b/resources/js/components/FilesView/FilePreviewMedia.vue @@ -194,27 +194,40 @@ export default { } }) }, + getDocumentSize() { + + if (window.innerWidth < 960) { + this.documentSize = 100 + } + + if (window.innerWidth > 960){ + this.documentSize = localStorage.getItem('documentSize') + ? parseInt(localStorage.getItem('documentSize')) + : 50; + } + } }, created() { - // Set zoom size - this.documentSize = window.innerWidth < 960 ? 100 : 50 - - events.$on('file-preview:next', () => this.next()) + events.$on('file-preview:next', () => this.next()) events.$on('file-preview:prev', () => this.prev()) events.$on('document-zoom:in', () => { - if (this.documentSize < 100) - this.documentSize += 10 + if (this.documentSize < 100) { + this.documentSize += 10 + localStorage.setItem('documentSize', this.documentSize) + } }) events.$on('document-zoom:out', () => { - if (this.documentSize > 40) - this.documentSize -= 10 + if (this.documentSize > 40) { + this.documentSize -= 10 + localStorage.setItem('documentSize', this.documentSize) + } }) + this.getDocumentSize() this.getFilesForView() - } } diff --git a/resources/js/components/FilesView/FilePreviewToolbar.vue b/resources/js/components/FilesView/FilePreviewToolbar.vue index 311c9fe1..43a8e52b 100644 --- a/resources/js/components/FilesView/FilePreviewToolbar.vue +++ b/resources/js/components/FilesView/FilePreviewToolbar.vue @@ -17,8 +17,8 @@