From 35d5269f96727bb09e79ece16cff448314064a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Stan=C4=9Bk?= Date: Mon, 1 Mar 2021 21:16:39 +0100 Subject: [PATCH] Opravy chyb helpdesk (#797) * block capacity check fix * check tables existence fix * downgrade nette forms --- .../ProgramModule/Forms/BlockFormFactory.php | 2 +- .../Presenters/InstallPresenter.php | 19 +- app/WebModule/Presenters/WebBasePresenter.php | 6 +- composer.json | 2 +- composer.lock | 946 +++++++++++++++--- 5 files changed, 823 insertions(+), 152 deletions(-) diff --git a/app/AdminModule/ProgramModule/Forms/BlockFormFactory.php b/app/AdminModule/ProgramModule/Forms/BlockFormFactory.php index fc56d128b..71170a966 100644 --- a/app/AdminModule/ProgramModule/Forms/BlockFormFactory.php +++ b/app/AdminModule/ProgramModule/Forms/BlockFormFactory.php @@ -158,7 +158,7 @@ public function create(int $id, int $userId): Form $capacityText->addCondition(Form::FILLED) ->addRule(Form::INTEGER, 'admin.program.blocks.form.capacity_format') ->toggle('alternatesAllowedCheckbox'); - $minAllowedCapacity = $this->queryBus->handle(new MinBlockAllowedCapacityQuery($this->block)); + $minAllowedCapacity = $this->block !== null ? $this->queryBus->handle(new MinBlockAllowedCapacityQuery($this->block)) : null; if ($minAllowedCapacity !== null) { $capacityText->addCondition(Form::FILLED) ->addRule(Form::MIN, 'admin.program.blocks.form.capacity_low', $minAllowedCapacity); diff --git a/app/InstallModule/Presenters/InstallPresenter.php b/app/InstallModule/Presenters/InstallPresenter.php index 8577d2fb2..7e0add2cb 100644 --- a/app/InstallModule/Presenters/InstallPresenter.php +++ b/app/InstallModule/Presenters/InstallPresenter.php @@ -7,7 +7,6 @@ use App\Model\Acl\Repositories\RoleRepository; use App\Model\Acl\Role; use App\Model\Settings\Commands\SetSettingBoolValue; -use App\Model\Settings\Exceptions\SettingsItemNotFoundException; use App\Model\Settings\Queries\SettingBoolValueQuery; use App\Model\Settings\Settings; use App\Model\Structure\Repositories\SubeventRepository; @@ -17,7 +16,6 @@ use App\Services\QueryBus; use Contributte\Console\Application; use Doctrine\Common\Collections\ArrayCollection; -use Doctrine\DBAL\Exception\TableNotFoundException; use Doctrine\Migrations\Tools\Console\Command\MigrateCommand; use Doctrine\ORM\EntityManagerInterface; use Exception; @@ -25,6 +23,7 @@ use Skautis\Skautis; use Skautis\Wsdl\WsdlException; use Symfony\Component\Console\Input\ArrayInput; +use Symfony\Component\Messenger\Exception\HandlerFailedException; use Throwable; use Tracy\Debugger; use Tracy\ILogger; @@ -84,8 +83,8 @@ public function renderDefault(): void $this->flashMessage('install.schema.schema_already_created', 'info'); $this->redirect('admin'); - } catch (TableNotFoundException $ex) { - } catch (SettingsItemNotFoundException $ex) { + } catch (HandlerFailedException $ex) { + // ignoruje se, tabulky ještě nejsou vytvořeny } } @@ -126,9 +125,7 @@ public function renderAdmin(): void $this->flashMessage('install.admin.admin_already_created', 'info'); $this->redirect('finish'); } - } catch (TableNotFoundException $ex) { - $this->redirect('default'); - } catch (SettingsItemNotFoundException $ex) { + } catch (HandlerFailedException $ex) { $this->redirect('default'); } @@ -185,9 +182,7 @@ public function renderFinish(): void if (! $this->queryBus->handle(new SettingBoolValueQuery(Settings::ADMIN_CREATED))) { $this->redirect('default'); } - } catch (TableNotFoundException $ex) { - $this->redirect('default'); - } catch (SettingsItemNotFoundException $ex) { + } catch (HandlerFailedException $ex) { $this->redirect('default'); } } @@ -204,9 +199,7 @@ public function renderInstalled(): void if (! $this->queryBus->handle(new SettingBoolValueQuery(Settings::ADMIN_CREATED))) { $this->redirect('default'); } - } catch (TableNotFoundException $ex) { - $this->redirect('default'); - } catch (SettingsItemNotFoundException $ex) { + } catch (HandlerFailedException $ex) { $this->redirect('default'); } } diff --git a/app/WebModule/Presenters/WebBasePresenter.php b/app/WebModule/Presenters/WebBasePresenter.php index 2ffe04ba5..87d7cdafb 100644 --- a/app/WebModule/Presenters/WebBasePresenter.php +++ b/app/WebModule/Presenters/WebBasePresenter.php @@ -20,8 +20,8 @@ use App\Services\CmsService; use App\Services\QueryBus; use App\Services\SkautIsService; -use Doctrine\DBAL\Exception\TableNotFoundException; use Nette\Application\AbortException; +use Symfony\Component\Messenger\Exception\HandlerFailedException; use Throwable; use WebLoader\Nette\CssLoader; use WebLoader\Nette\JavaScriptLoader; @@ -140,9 +140,7 @@ private function checkInstallation(): void if (! $this->queryBus->handle(new SettingBoolValueQuery(Settings::ADMIN_CREATED))) { $this->redirect(':Install:Install:default'); } - } catch (TableNotFoundException $ex) { - $this->redirect(':Install:Install:default'); - } catch (SettingsItemNotFoundException $ex) { + } catch (HandlerFailedException $ex) { $this->redirect(':Install:Install:default'); } } diff --git a/composer.json b/composer.json index 74063369f..b5152a0c0 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "nette/database": "^3.1", "nette/di": "^3.0", "nette/finder": "^2.5", - "nette/forms": "^3.0", + "nette/forms": "~3.0.0", "nette/http": "^3.1", "nette/mail": "^3.1", "nette/robot-loader": "^3.3", diff --git a/composer.lock b/composer.lock index 3582ce501..2c09cdb0a 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": "7805cb83180f5c2fb676145c3dd1fd78", + "content-hash": "335d6525476d1299c370eea225856a41", "packages": [ { "name": "azuyalabs/yasumi", @@ -57,6 +57,10 @@ "national", "time" ], + "support": { + "issues": "https://github.com/azuyalabs/yasumi/issues", + "source": "https://github.com/azuyalabs/yasumi/tree/support/1.8.x" + }, "time": "2019-01-11T07:54:19+00:00" }, { @@ -103,6 +107,10 @@ ], "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/master" + }, "time": "2017-10-17T09:59:25+00:00" }, { @@ -157,6 +165,9 @@ "doctrine", "orm" ], + "support": { + "source": "https://github.com/beberlei/DoctrineExtensions/tree/v1.3.0" + }, "time": "2020-11-29T07:37:23+00:00" }, { @@ -248,6 +259,10 @@ "reload", "webloader" ], + "support": { + "issues": "https://github.com/bicisteadm/WebLoader-Reload/issues", + "source": "https://github.com/bicisteadm/WebLoader-Reload/tree/master" + }, "time": "2020-02-03T21:01:03+00:00" }, { @@ -305,6 +320,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", @@ -374,6 +394,10 @@ } ], "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", @@ -450,6 +474,10 @@ "nette", "presenter" ], + "support": { + "issues": "https://github.com/contributte/application/issues", + "source": "https://github.com/contributte/application/tree/v0.4.1" + }, "time": "2020-04-01T17:34:21+00:00" }, { @@ -509,6 +537,10 @@ "nette", "symfony" ], + "support": { + "issues": "https://github.com/contributte/console/issues", + "source": "https://github.com/contributte/console/tree/v0.9.0" + }, "time": "2020-12-11T13:00:07+00:00" }, { @@ -576,29 +608,34 @@ "inject", "nette" ], + "support": { + "issues": "https://github.com/contributte/di/issues", + "source": "https://github.com/contributte/di/tree/v0.5.1" + }, "time": "2020-12-26T17:02:42+00:00" }, { "name": "contributte/pdf", - "version": "v6.0.2", + "version": "v6.1.0", "source": { "type": "git", "url": "https://github.com/contributte/pdf.git", - "reference": "1e746334a36fbcdd2337484a39f4ee5520024a90" + "reference": "9c3feafefb970e92ffc3e98defbc3854733fb7eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/contributte/pdf/zipball/1e746334a36fbcdd2337484a39f4ee5520024a90", - "reference": "1e746334a36fbcdd2337484a39f4ee5520024a90", + "url": "https://api.github.com/repos/contributte/pdf/zipball/9c3feafefb970e92ffc3e98defbc3854733fb7eb", + "reference": "9c3feafefb970e92ffc3e98defbc3854733fb7eb", "shasum": "" }, "require": { "mpdf/mpdf": "^8.0", + "nette/application": "~3.0", + "nette/http": "~3.0", "php": ">=7.1" }, "require-dev": { - "latte/latte": "~2.10.0", - "nette/application": "~3.0.0", + "latte/latte": "^2.10", "nette/di": "^3.0.0", "ninjify/nunjuck": "^0.3.0", "ninjify/qa": "^0.12", @@ -606,8 +643,8 @@ "phpstan/phpstan-deprecation-rules": "^0.12", "phpstan/phpstan-nette": "^0.12", "phpstan/phpstan-strict-rules": "^0.12", - "symfony/css-selector": "~4.4.0", - "symfony/dom-crawler": "~4.4.0" + "symfony/css-selector": "^4.4|^5.0", + "symfony/dom-crawler": "^4.4|^5.0" }, "suggest": { "nette/nette": "PHP framework to which this extension belongs to.", @@ -616,7 +653,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "6.0-dev" + "dev-master": "6.1-dev" } }, "autoload": { @@ -654,6 +691,10 @@ } ], "description": "Pdf response extension for Nette Framework", + "support": { + "issues": "https://github.com/contributte/pdf/issues", + "source": "https://github.com/contributte/pdf/tree/v6.1.0" + }, "funding": [ { "url": "https://github.com/f3l1x", @@ -664,7 +705,7 @@ "type": "github" } ], - "time": "2021-01-27T21:41:35+00:00" + "time": "2021-02-28T18:30:39+00:00" }, { "name": "contributte/recaptcha", @@ -727,6 +768,10 @@ "nette", "recaptcha" ], + "support": { + "issues": "https://github.com/contributte/reCAPTCHA/issues", + "source": "https://github.com/contributte/reCAPTCHA/tree/v3.4.1" + }, "time": "2021-02-06T17:15:30+00:00" }, { @@ -800,6 +845,10 @@ "symfony", "translation" ], + "support": { + "issues": "https://github.com/contributte/translation/issues", + "source": "https://github.com/contributte/translation/tree/v0.8.0" + }, "time": "2020-11-16T21:13:17+00:00" }, { @@ -846,6 +895,10 @@ "platba", "qr" ], + "support": { + "issues": "https://github.com/dfridrich/QRPlatba/issues", + "source": "https://github.com/dfridrich/QRPlatba/tree/master" + }, "time": "2018-07-10T16:21:02+00:00" }, { @@ -886,20 +939,23 @@ "keywords": [ "mysql" ], + "support": { + "source": "https://github.com/dg/MySQL-dump/tree/master" + }, "time": "2019-09-10T21:36:25+00:00" }, { "name": "doctrine/annotations", - "version": "1.11.1", + "version": "1.12.1", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad" + "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad", - "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/b17c5014ef81d212ac539f07a1001832df1b6d3b", + "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b", "shasum": "" }, "require": { @@ -914,11 +970,6 @@ "phpunit/phpunit": "^7.5 || ^9.1.5" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.11.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" @@ -957,7 +1008,11 @@ "docblock", "parser" ], - "time": "2020-10-26T10:28:16+00:00" + "support": { + "issues": "https://github.com/doctrine/annotations/issues", + "source": "https://github.com/doctrine/annotations/tree/1.12.1" + }, + "time": "2021-02-21T21:00:45+00:00" }, { "name": "doctrine/cache", @@ -1039,6 +1094,10 @@ "redis", "xcache" ], + "support": { + "issues": "https://github.com/doctrine/cache/issues", + "source": "https://github.com/doctrine/cache/tree/1.10.x" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -1118,6 +1177,10 @@ "iterators", "php" ], + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/1.6.7" + }, "time": "2020-07-27T17:53:49+00:00" }, { @@ -1189,6 +1252,10 @@ "doctrine", "php" ], + "support": { + "issues": "https://github.com/doctrine/common/issues", + "source": "https://github.com/doctrine/common/tree/3.1.1" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -1296,6 +1363,10 @@ "sqlserver", "sqlsrv" ], + "support": { + "issues": "https://github.com/doctrine/dbal/issues", + "source": "https://github.com/doctrine/dbal/tree/2.12.1" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -1386,6 +1457,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", @@ -1477,6 +1552,10 @@ "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", @@ -1542,6 +1621,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", @@ -1618,6 +1701,10 @@ "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", @@ -1714,6 +1801,10 @@ "migrations", "php" ], + "support": { + "issues": "https://github.com/doctrine/migrations/issues", + "source": "https://github.com/doctrine/migrations/tree/2.3.2" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -1732,16 +1823,16 @@ }, { "name": "doctrine/orm", - "version": "2.8.1", + "version": "2.8.2", "source": { "type": "git", "url": "https://github.com/doctrine/orm.git", - "reference": "242cf1a33df1b8bc5e1b86c3ebd01db07851c833" + "reference": "ebae57eb9637acd8252b398df3121b120688ed5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/orm/zipball/242cf1a33df1b8bc5e1b86c3ebd01db07851c833", - "reference": "242cf1a33df1b8bc5e1b86c3ebd01db07851c833", + "url": "https://api.github.com/repos/doctrine/orm/zipball/ebae57eb9637acd8252b398df3121b120688ed5c", + "reference": "ebae57eb9637acd8252b398df3121b120688ed5c", "shasum": "" }, "require": { @@ -1749,7 +1840,7 @@ "doctrine/annotations": "^1.11.1", "doctrine/cache": "^1.9.1", "doctrine/collections": "^1.5", - "doctrine/common": "^3.0", + "doctrine/common": "^3.0.3", "doctrine/dbal": "^2.10.0", "doctrine/event-manager": "^1.1", "doctrine/inflector": "^1.4|^2.0", @@ -1816,7 +1907,11 @@ "database", "orm" ], - "time": "2020-12-04T19:53:07+00:00" + "support": { + "issues": "https://github.com/doctrine/orm/issues", + "source": "https://github.com/doctrine/orm/tree/2.8.2" + }, + "time": "2021-02-16T22:10:18+00:00" }, { "name": "doctrine/persistence", @@ -1896,6 +1991,10 @@ "orm", "persistence" ], + "support": { + "issues": "https://github.com/doctrine/persistence/issues", + "source": "https://github.com/doctrine/persistence/tree/2.1.0" + }, "time": "2020-10-24T22:13:54+00:00" }, { @@ -1947,6 +2046,10 @@ "ics", "php calendar" ], + "support": { + "issues": "https://github.com/markuspoerschke/iCal/issues", + "source": "https://github.com/markuspoerschke/iCal" + }, "time": "2020-10-04T17:41:11+00:00" }, { @@ -2016,6 +2119,10 @@ "qrcode", "symfony" ], + "support": { + "issues": "https://github.com/endroid/qr-code/issues", + "source": "https://github.com/endroid/qr-code/tree/2.5.0" + }, "time": "2017-10-22T18:56:00+00:00" }, { @@ -2066,6 +2173,10 @@ "keywords": [ "html" ], + "support": { + "issues": "https://github.com/ezyang/htmlpurifier/issues", + "source": "https://github.com/ezyang/htmlpurifier/tree/master" + }, "time": "2020-06-29T00:56:53+00:00" }, { @@ -2099,6 +2210,7 @@ "phpstan/phpstan": "^0.12", "phpunit/phpunit": "^9.5" }, + "default-branch": true, "type": "library", "autoload": { "psr-4": { @@ -2125,6 +2237,10 @@ "symfony", "symfony-messenger" ], + "support": { + "issues": "https://github.com/fmasa/messenger/issues", + "source": "https://github.com/fmasa/messenger/tree/1.0.0" + }, "time": "2021-01-06T16:43:45+00:00" }, { @@ -2193,6 +2309,10 @@ "proxy pattern", "service proxies" ], + "support": { + "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues", + "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.3" + }, "funding": [ { "url": "https://github.com/Ocramius", @@ -2283,6 +2403,10 @@ "rest", "web service" ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.2.0" + }, "funding": [ { "url": "https://github.com/GrahamCampbell", @@ -2352,6 +2476,10 @@ "keywords": [ "promise" ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.4.0" + }, "time": "2020-09-30T07:37:28+00:00" }, { @@ -2423,6 +2551,10 @@ "uri", "url" ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.7.0" + }, "time": "2020-09-30T07:37:11+00:00" }, { @@ -2482,6 +2614,10 @@ "xml", "yaml" ], + "support": { + "issues": "https://github.com/schmittjoh/metadata/issues", + "source": "https://github.com/schmittjoh/metadata/tree/2.4.0" + }, "time": "2020-11-30T11:08:28+00:00" }, { @@ -2564,6 +2700,10 @@ "serialization", "xml" ], + "support": { + "issues": "https://github.com/schmittjoh/serializer/issues", + "source": "https://github.com/schmittjoh/serializer/tree/3.11.0" + }, "funding": [ { "url": "https://github.com/goetas", @@ -2623,6 +2763,10 @@ "progress", "upload" ], + "support": { + "issues": "https://github.com/kartik-v/bootstrap-fileinput/issues", + "source": "https://github.com/kartik-v/bootstrap-fileinput/tree/v5.1.4" + }, "funding": [ { "url": "https://opencollective.com/bootstrap-fileinput", @@ -2679,6 +2823,10 @@ "qr", "zxing" ], + "support": { + "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues", + "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.4" + }, "time": "2020-11-29T18:50:26+00:00" }, { @@ -2736,6 +2884,14 @@ "laminas", "laminasframework" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-code/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-code/issues", + "rss": "https://github.com/laminas/laminas-code/releases.atom", + "source": "https://github.com/laminas/laminas-code" + }, "funding": [ { "url": "https://funding.communitybridge.org/projects/laminas-project", @@ -2800,6 +2956,14 @@ "events", "laminas" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-eventmanager/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-eventmanager/issues", + "rss": "https://github.com/laminas/laminas-eventmanager/releases.atom", + "source": "https://github.com/laminas/laminas-eventmanager" + }, "funding": [ { "url": "https://funding.communitybridge.org/projects/laminas-project", @@ -2810,24 +2974,26 @@ }, { "name": "laminas/laminas-zendframework-bridge", - "version": "1.1.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "6ede70583e101030bcace4dcddd648f760ddf642" + "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642", - "reference": "6ede70583e101030bcace4dcddd648f760ddf642", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6cccbddfcfc742eb02158d6137ca5687d92cee32", + "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0 || ^8.0" + "php": "^7.3 || ^8.0" }, "require-dev": { "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3", - "squizlabs/php_codesniffer": "^3.5" + "psalm/plugin-phpunit": "^0.15.1", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.6" }, "type": "library", "extra": { @@ -2854,26 +3020,32 @@ "laminas", "zf" ], + "support": { + "forum": "https://discourse.laminas.dev/", + "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues", + "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom", + "source": "https://github.com/laminas/laminas-zendframework-bridge" + }, "funding": [ { "url": "https://funding.communitybridge.org/projects/laminas-project", "type": "community_bridge" } ], - "time": "2020-09-14T14:23:00+00:00" + "time": "2021-02-25T21:54:58+00:00" }, { "name": "latte/latte", - "version": "v2.10.2", + "version": "v2.10.3", "source": { "type": "git", "url": "https://github.com/nette/latte.git", - "reference": "2f8dd896472b8a2f2069934f128a02566631d876" + "reference": "dd2c58863e830c22a2c6b85af63f37b829d255df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/latte/zipball/2f8dd896472b8a2f2069934f128a02566631d876", - "reference": "2f8dd896472b8a2f2069934f128a02566631d876", + "url": "https://api.github.com/repos/nette/latte/zipball/dd2c58863e830c22a2c6b85af63f37b829d255df", + "reference": "dd2c58863e830c22a2c6b85af63f37b829d255df", "shasum": "" }, "require": { @@ -2937,7 +3109,11 @@ "template", "twig" ], - "time": "2021-02-08T08:16:26+00:00" + "support": { + "issues": "https://github.com/nette/latte/issues", + "source": "https://github.com/nette/latte/tree/v2.10.3" + }, + "time": "2021-02-22T11:17:13+00:00" }, { "name": "maennchen/zipstream-php", @@ -2998,6 +3174,10 @@ "stream", "zip" ], + "support": { + "issues": "https://github.com/maennchen/ZipStream-PHP/issues", + "source": "https://github.com/maennchen/ZipStream-PHP/tree/master" + }, "funding": [ { "url": "https://opencollective.com/zipstream", @@ -3099,6 +3279,10 @@ "complex", "mathematics" ], + "support": { + "issues": "https://github.com/MarkBaker/PHPComplex/issues", + "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8" + }, "time": "2020-08-26T10:42:07+00:00" }, { @@ -3169,6 +3353,10 @@ "matrix", "vector" ], + "support": { + "issues": "https://github.com/MarkBaker/PHPMatrix/issues", + "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.2" + }, "time": "2021-01-23T16:37:31+00:00" }, { @@ -3222,6 +3410,10 @@ "api", "fio" ], + "support": { + "issues": "https://github.com/mhujer/fio-api-php/issues", + "source": "https://github.com/mhujer/fio-api-php/tree/4.1.3" + }, "time": "2020-12-29T17:15:25+00:00" }, { @@ -3286,6 +3478,11 @@ "php", "utf-8" ], + "support": { + "docs": "http://mpdf.github.io", + "issues": "https://github.com/mpdf/mpdf/issues", + "source": "https://github.com/mpdf/mpdf" + }, "funding": [ { "url": "https://www.paypal.me/mpdf", @@ -3349,6 +3546,10 @@ "qr", "qrcode" ], + "support": { + "issues": "https://github.com/mpdf/qrcode/issues", + "source": "https://github.com/mpdf/qrcode/tree/v1.1.1" + }, "time": "2021-01-12T18:16:41+00:00" }, { @@ -3397,6 +3598,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,26 +3612,26 @@ }, { "name": "myclabs/php-enum", - "version": "1.7.7", + "version": "1.8.0", "source": { "type": "git", "url": "https://github.com/myclabs/php-enum.git", - "reference": "d178027d1e679832db9f38248fcc7200647dc2b7" + "reference": "46cf3d8498b095bd33727b13fd5707263af99421" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7", - "reference": "d178027d1e679832db9f38248fcc7200647dc2b7", + "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421", + "reference": "46cf3d8498b095bd33727b13fd5707263af99421", "shasum": "" }, "require": { "ext-json": "*", - "php": ">=7.1" + "php": "^7.3 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^7", + "phpunit/phpunit": "^9.5", "squizlabs/php_codesniffer": "1.*", - "vimeo/psalm": "^3.8" + "vimeo/psalm": "^4.5.1" }, "type": "library", "autoload": { @@ -3449,6 +3654,10 @@ "keywords": [ "enum" ], + "support": { + "issues": "https://github.com/myclabs/php-enum/issues", + "source": "https://github.com/myclabs/php-enum/tree/1.8.0" + }, "funding": [ { "url": "https://github.com/mnapoli", @@ -3459,7 +3668,7 @@ "type": "tidelift" } ], - "time": "2020-11-14T18:14:52+00:00" + "time": "2021-02-15T16:11:48+00:00" }, { "name": "nette/application", @@ -3546,6 +3755,10 @@ "routing", "seo" ], + "support": { + "issues": "https://github.com/nette/application/issues", + "source": "https://github.com/nette/application/tree/v3.1.2" + }, "time": "2021-02-08T05:57:00+00:00" }, { @@ -3623,6 +3836,10 @@ "configurator", "nette" ], + "support": { + "issues": "https://github.com/nette/bootstrap/issues", + "source": "https://github.com/nette/bootstrap/tree/v3.1.1" + }, "time": "2021-01-25T00:31:21+00:00" }, { @@ -3690,6 +3907,10 @@ "nette", "sqlite" ], + "support": { + "issues": "https://github.com/nette/caching/issues", + "source": "https://github.com/nette/caching/tree/v3.1.0" + }, "time": "2020-12-30T23:39:33+00:00" }, { @@ -3748,6 +3969,10 @@ "components", "nette" ], + "support": { + "issues": "https://github.com/nette/component-model/issues", + "source": "https://github.com/nette/component-model/tree/v3.0.1" + }, "time": "2020-04-21T13:48:20+00:00" }, { @@ -3821,6 +4046,10 @@ "queries", "sqlite" ], + "support": { + "issues": "https://github.com/nette/database/issues", + "source": "https://github.com/nette/database/tree/v3.1.1" + }, "time": "2021-01-12T12:24:12+00:00" }, { @@ -3892,6 +4121,10 @@ "nette", "static" ], + "support": { + "issues": "https://github.com/nette/di/issues", + "source": "https://github.com/nette/di/tree/v3.0.7" + }, "time": "2020-12-30T22:27:52+00:00" }, { @@ -3955,34 +4188,37 @@ "iterator", "nette" ], + "support": { + "issues": "https://github.com/nette/finder/issues", + "source": "https://github.com/nette/finder/tree/v2.5.2" + }, "time": "2020-01-03T20:35:40+00:00" }, { "name": "nette/forms", - "version": "v3.1.2", + "version": "v3.0.7", "source": { "type": "git", "url": "https://github.com/nette/forms.git", - "reference": "54858a9eeb0c57c316a07cea5aa2fa135c6807ac" + "reference": "cfe069b5880e07930e92058b774f22e491aa7b0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/forms/zipball/54858a9eeb0c57c316a07cea5aa2fa135c6807ac", - "reference": "54858a9eeb0c57c316a07cea5aa2fa135c6807ac", + "url": "https://api.github.com/repos/nette/forms/zipball/cfe069b5880e07930e92058b774f22e491aa7b0e", + "reference": "cfe069b5880e07930e92058b774f22e491aa7b0e", "shasum": "" }, "require": { "nette/component-model": "^3.0", - "nette/http": "^3.1", - "nette/utils": "^3.2.1", - "php": ">=7.2 <8.1" + "nette/http": "^3.0", + "nette/utils": "^3.0", + "php": ">=7.1" }, "conflict": { - "latte/latte": ">=3.0", "nette/di": "<3.0-stable" }, "require-dev": { - "latte/latte": "^2.10.2", + "latte/latte": "^2.8", "nette/application": "^3.0", "nette/di": "^3.0", "nette/tester": "^2.0", @@ -3992,7 +4228,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -4016,7 +4252,7 @@ "homepage": "https://nette.org/contributors" } ], - "description": "📝 Nette Forms: generating, validating and processing secure forms in PHP. Handy API, fully customizable, server & client side validation and mature design.", + "description": "?? Nette Forms: generating, validating and processing secure forms in PHP. Handy API, fully customizable, server & client side validation and mature design.", "homepage": "https://nette.org", "keywords": [ "Forms", @@ -4026,7 +4262,11 @@ "nette", "validation" ], - "time": "2021-02-11T03:49:59+00:00" + "support": { + "issues": "https://github.com/nette/forms/issues", + "source": "https://github.com/nette/forms/tree/v3.0.7" + }, + "time": "2020-11-02T15:52:20+00:00" }, { "name": "nette/http", @@ -4100,26 +4340,30 @@ "session", "url" ], + "support": { + "issues": "https://github.com/nette/http/issues", + "source": "https://github.com/nette/http/tree/v3.1.1" + }, "time": "2021-01-25T20:15:01+00:00" }, { "name": "nette/mail", - "version": "v3.1.5", + "version": "v3.1.6", "source": { "type": "git", "url": "https://github.com/nette/mail.git", - "reference": "e072486ef2dbb533189f36a53c020f06b7659f4f" + "reference": "d5035afcb733ff76b353b8a126a1a6fd560005de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/mail/zipball/e072486ef2dbb533189f36a53c020f06b7659f4f", - "reference": "e072486ef2dbb533189f36a53c020f06b7659f4f", + "url": "https://api.github.com/repos/nette/mail/zipball/d5035afcb733ff76b353b8a126a1a6fd560005de", + "reference": "d5035afcb733ff76b353b8a126a1a6fd560005de", "shasum": "" }, "require": { "ext-iconv": "*", "nette/utils": "^3.1", - "php": ">=7.1" + "php": ">=7.1 <8.1" }, "conflict": { "nette/di": "<3.0-stable" @@ -4170,24 +4414,27 @@ "nette", "smtp" ], - "time": "2020-11-02T16:08:27+00:00" + "support": { + "issues": "https://github.com/nette/mail/issues", + "source": "https://github.com/nette/mail/tree/v3.1.6" + }, + "time": "2021-02-24T20:29:52+00:00" }, { "name": "nette/neon", - "version": "v3.2.1", + "version": "v3.2.2", "source": { "type": "git", "url": "https://github.com/nette/neon.git", - "reference": "a5b3a60833d2ef55283a82d0c30b45d136b29e75" + "reference": "e4ca6f4669121ca6876b1d048c612480e39a28d5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/neon/zipball/a5b3a60833d2ef55283a82d0c30b45d136b29e75", - "reference": "a5b3a60833d2ef55283a82d0c30b45d136b29e75", + "url": "https://api.github.com/repos/nette/neon/zipball/e4ca6f4669121ca6876b1d048c612480e39a28d5", + "reference": "e4ca6f4669121ca6876b1d048c612480e39a28d5", "shasum": "" }, "require": { - "ext-iconv": "*", "ext-json": "*", "php": ">=7.1" }, @@ -4232,20 +4479,24 @@ "nette", "yaml" ], - "time": "2020-07-31T12:28:05+00:00" + "support": { + "issues": "https://github.com/nette/neon/issues", + "source": "https://github.com/nette/neon/tree/v3.2.2" + }, + "time": "2021-02-28T12:30:32+00:00" }, { "name": "nette/php-generator", - "version": "v3.5.2", + "version": "v3.5.3", "source": { "type": "git", "url": "https://github.com/nette/php-generator.git", - "reference": "41dcc5d1cb322835e5950a76515166c90923c6b7" + "reference": "119f01a7bd590469cb01b538f20a125a28853626" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/php-generator/zipball/41dcc5d1cb322835e5950a76515166c90923c6b7", - "reference": "41dcc5d1cb322835e5950a76515166c90923c6b7", + "url": "https://api.github.com/repos/nette/php-generator/zipball/119f01a7bd590469cb01b538f20a125a28853626", + "reference": "119f01a7bd590469cb01b538f20a125a28853626", "shasum": "" }, "require": { @@ -4296,7 +4547,11 @@ "php", "scaffolding" ], - "time": "2021-01-19T13:02:23+00:00" + "support": { + "issues": "https://github.com/nette/php-generator/issues", + "source": "https://github.com/nette/php-generator/tree/v3.5.3" + }, + "time": "2021-02-24T18:40:21+00:00" }, { "name": "nette/robot-loader", @@ -4359,6 +4614,10 @@ "nette", "trait" ], + "support": { + "issues": "https://github.com/nette/robot-loader/issues", + "source": "https://github.com/nette/robot-loader/tree/v3.3.1" + }, "time": "2020-09-15T15:14:17+00:00" }, { @@ -4417,6 +4676,10 @@ "keywords": [ "nette" ], + "support": { + "issues": "https://github.com/nette/routing/issues", + "source": "https://github.com/nette/routing/tree/v3.0.2" + }, "time": "2021-02-06T04:08:30+00:00" }, { @@ -4475,6 +4738,10 @@ "config", "nette" ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.2.0" + }, "time": "2021-01-21T14:49:23+00:00" }, { @@ -4540,6 +4807,10 @@ "authorization", "nette" ], + "support": { + "issues": "https://github.com/nette/security/issues", + "source": "https://github.com/nette/security/tree/v3.1.3" + }, "time": "2021-01-18T14:03:39+00:00" }, { @@ -4621,6 +4892,10 @@ "utility", "validation" ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v3.2.1" + }, "time": "2021-01-11T03:05:59+00:00" }, { @@ -4685,6 +4960,10 @@ "nette", "nettrine" ], + "support": { + "issues": "https://github.com/nettrine/annotations/issues", + "source": "https://github.com/nettrine/annotations/tree/v0.7.0" + }, "time": "2020-12-10T18:01:50+00:00" }, { @@ -4744,6 +5023,10 @@ "nette", "nettrine" ], + "support": { + "issues": "https://github.com/nettrine/cache/issues", + "source": "https://github.com/nettrine/cache/tree/v0.3.0" + }, "time": "2020-12-10T17:56:32+00:00" }, { @@ -4810,6 +5093,10 @@ "postgres", "sqlite" ], + "support": { + "issues": "https://github.com/nettrine/dbal/issues", + "source": "https://github.com/nettrine/dbal/tree/v0.7.0" + }, "time": "2020-12-11T15:36:41+00:00" }, { @@ -4874,6 +5161,10 @@ "migrations", "nette" ], + "support": { + "issues": "https://github.com/nettrine/migrations/issues", + "source": "https://github.com/nettrine/migrations/tree/v0.7.0" + }, "time": "2020-12-11T13:57:37+00:00" }, { @@ -4942,6 +5233,10 @@ "nette", "orm" ], + "support": { + "issues": "https://github.com/nettrine/orm/issues", + "source": "https://github.com/nettrine/orm/tree/v0.8.1" + }, "funding": [ { "url": "https://contributte.org/partners.html", @@ -5015,6 +5310,10 @@ "form", "nette" ], + "support": { + "issues": "https://github.com/nextras/form-components/issues", + "source": "https://github.com/nextras/form-components/tree/master" + }, "time": "2019-08-12T15:25:40+00:00" }, { @@ -5075,6 +5374,10 @@ "nette", "nextras" ], + "support": { + "issues": "https://github.com/nextras/forms-rendering/issues", + "source": "https://github.com/nextras/forms-rendering/tree/v1.0.0" + }, "time": "2019-04-07T21:05:17+00:00" }, { @@ -5120,6 +5423,11 @@ "pseudorandom", "random" ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, "time": "2020-10-15T08:29:30+00:00" }, { @@ -5169,6 +5477,10 @@ "integer", "precision" ], + "support": { + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Math_BigInteger", + "source": "https://github.com/pear/Math_BigInteger" + }, "time": "2016-04-12T05:46:52+00:00" }, { @@ -5236,6 +5548,10 @@ "keywords": [ "numbers" ], + "support": { + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Numbers_Words", + "source": "https://github.com/pear/Numbers_Words" + }, "time": "2018-02-13T13:58:45+00:00" }, { @@ -5333,6 +5649,10 @@ "xls", "xlsx" ], + "support": { + "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0" + }, "time": "2020-12-31T18:03:49+00:00" }, { @@ -5382,6 +5702,10 @@ "MIT" ], "description": "PHPDoc parser with support for nullable, intersection and generic types", + "support": { + "issues": "https://github.com/phpstan/phpdoc-parser/issues", + "source": "https://github.com/phpstan/phpdoc-parser/tree/master" + }, "time": "2020-08-03T20:32:43+00:00" }, { @@ -5431,6 +5755,10 @@ "container-interop", "psr" ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/master" + }, "time": "2017-02-14T16:28:37+00:00" }, { @@ -5477,6 +5805,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" }, { @@ -5526,6 +5858,9 @@ "psr", "psr-18" ], + "support": { + "source": "https://github.com/php-fig/http-client/tree/master" + }, "time": "2020-06-29T06:28:15+00:00" }, { @@ -5578,6 +5913,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-factory/tree/master" + }, "time": "2019-04-30T12:38:16+00:00" }, { @@ -5628,6 +5966,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, "time": "2016-08-06T14:39:51+00:00" }, { @@ -5675,6 +6016,9 @@ "psr", "psr-3" ], + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.3" + }, "time": "2020-03-23T09:12:05+00:00" }, { @@ -5723,6 +6067,9 @@ "psr-16", "simple-cache" ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/master" + }, "time": "2017-10-23T01:57:42+00:00" }, { @@ -5763,6 +6110,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" }, { @@ -5825,6 +6176,10 @@ "fpdi", "pdf" ], + "support": { + "issues": "https://github.com/Setasign/FPDI/issues", + "source": "https://github.com/Setasign/FPDI/tree/v2.3.6" + }, "funding": [ { "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi", @@ -5888,6 +6243,11 @@ "nette", "skautis" ], + "support": { + "issues": "https://github.com/skaut/SkautisNette/issues", + "source": "https://github.com/skaut/SkautisNette", + "wiki": "http://is.skaut.cz/napoveda/" + }, "time": "2020-02-14T11:45:16+00:00" }, { @@ -5946,6 +6306,11 @@ "soap", "wsdl" ], + "support": { + "issues": "https://github.com/skaut/Skautis/issues", + "source": "https://github.com/skaut/Skautis", + "wiki": "http://is.skaut.cz/napoveda/" + }, "time": "2019-09-12T12:19:19+00:00" }, { @@ -5996,6 +6361,10 @@ "replacement", "select" ], + "support": { + "issues": "https://github.com/snapappointments/bootstrap-select/issues", + "source": "https://github.com/snapappointments/bootstrap-select/tree/v1.13.18" + }, "funding": [ { "url": "https://github.com/caseyjhol", @@ -6054,6 +6423,9 @@ ], "description": "Symfony AMQP extension Messenger Bridge", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/amqp-messenger/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6129,6 +6501,9 @@ ], "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/config/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6223,6 +6598,9 @@ "console", "terminal" ], + "support": { + "source": "https://github.com/symfony/console/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6287,6 +6665,9 @@ ], "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/master" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6357,6 +6738,9 @@ ], "description": "Symfony Doctrine Messenger Bridge", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/doctrine-messenger/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6439,6 +6823,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.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6515,6 +6902,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6574,6 +6964,9 @@ ], "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/filesystem/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6659,6 +7052,9 @@ ], "description": "Helps applications send and receive messages to/from other applications or via message queues", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/messenger/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6725,6 +7121,9 @@ "configuration", "options" ], + "support": { + "source": "https://github.com/symfony/options-resolver/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6743,7 +7142,7 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.22.0", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", @@ -6801,6 +7200,9 @@ "polyfill", "portable" ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6819,16 +7221,16 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.22.0", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "267a9adeb8ecb8071040a740930e077cdfb987af" + "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af", - "reference": "267a9adeb8ecb8071040a740930e077cdfb987af", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170", + "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170", "shasum": "" }, "require": { @@ -6879,6 +7281,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6893,20 +7298,20 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2021-01-22T09:19:47+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.22.0", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "6e971c891537eb617a00bb07a43d182a6915faba" + "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba", - "reference": "6e971c891537eb617a00bb07a43d182a6915faba", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248", + "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248", "shasum": "" }, "require": { @@ -6960,6 +7365,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6974,20 +7382,20 @@ "type": "tidelift" } ], - "time": "2021-01-07T17:09:11+00:00" + "time": "2021-01-22T09:19:47+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.22.0", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13" + "reference": "5232de97ee3b75b0360528dae24e73db49566ab1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13", - "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1", + "reference": "5232de97ee3b75b0360528dae24e73db49566ab1", "shasum": "" }, "require": { @@ -7037,6 +7445,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7051,11 +7462,11 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2021-01-22T09:19:47+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.22.0", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", @@ -7113,6 +7524,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7131,7 +7545,7 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.22.0", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", @@ -7193,6 +7607,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7271,6 +7688,9 @@ "property path", "reflection" ], + "support": { + "source": "https://github.com/symfony/property-access/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7358,6 +7778,9 @@ "type", "validator" ], + "support": { + "source": "https://github.com/symfony/property-info/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7422,6 +7845,9 @@ ], "description": "Symfony Redis extension Messenger Bridge", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/redis-messenger/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7498,6 +7924,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/master" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7557,6 +7986,9 @@ ], "description": "Provides a way to profile code", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/stopwatch/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7637,6 +8069,9 @@ "utf-8", "utf8" ], + "support": { + "source": "https://github.com/symfony/string/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7727,6 +8162,9 @@ ], "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7802,6 +8240,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7886,6 +8327,10 @@ "nette", "profiler" ], + "support": { + "issues": "https://github.com/nette/tracy/issues", + "source": "https://github.com/nette/tracy/tree/v2.8.3" + }, "time": "2021-01-31T23:07:09+00:00" }, { @@ -7937,6 +8382,10 @@ "sass", "web" ], + "support": { + "issues": "https://github.com/twbs/bootstrap/issues", + "source": "https://github.com/twbs/bootstrap/tree/v4.6.0" + }, "funding": [ { "url": "https://opencollective.com/bootstrap", @@ -8013,20 +8462,24 @@ "grid", "nette" ], + "support": { + "issues": "https://github.com/contributte/datagrid/issues", + "source": "https://github.com/contributte/datagrid/tree/v6.2.23" + }, "time": "2020-06-22T09:37:13+00:00" }, { "name": "ublaboo/mailing", - "version": "v1.2.0", + "version": "v1.2.1", "source": { "type": "git", "url": "https://github.com/ublaboo/mailing.git", - "reference": "244e8832d3cc8ec6bfd68f5297526b8792b4b684" + "reference": "710b808c77944a85c6748b85b2cc32d24fbe5636" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ublaboo/mailing/zipball/244e8832d3cc8ec6bfd68f5297526b8792b4b684", - "reference": "244e8832d3cc8ec6bfd68f5297526b8792b4b684", + "url": "https://api.github.com/repos/ublaboo/mailing/zipball/710b808c77944a85c6748b85b2cc32d24fbe5636", + "reference": "710b808c77944a85c6748b85b2cc32d24fbe5636", "shasum": "" }, "require": { @@ -8067,7 +8520,11 @@ "mailing", "nette" ], - "time": "2019-05-09T11:26:12+00:00" + "support": { + "issues": "https://github.com/ublaboo/mailing/issues", + "source": "https://github.com/ublaboo/mailing/tree/v1.2.1" + }, + "time": "2021-02-15T09:45:01+00:00" }, { "name": "vojtys/nette-forms-gpspicker", @@ -8086,6 +8543,7 @@ "require": { "php": ">=5.3.2" }, + "default-branch": true, "type": "library", "autoload": { "classmap": [ @@ -8174,20 +8632,24 @@ "gherkin", "parser" ], + "support": { + "issues": "https://github.com/Behat/Gherkin/issues", + "source": "https://github.com/Behat/Gherkin/tree/v4.8.0" + }, "time": "2021-02-04T12:44:21+00:00" }, { "name": "codeception/codeception", - "version": "4.1.17", + "version": "4.1.18", "source": { "type": "git", "url": "https://github.com/Codeception/Codeception.git", - "reference": "c153b1ab289b3e3109e685379aa8847c54ac2b68" + "reference": "f47547bac347dfb5ea5351ff91148cbcc08e6818" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Codeception/zipball/c153b1ab289b3e3109e685379aa8847c54ac2b68", - "reference": "c153b1ab289b3e3109e685379aa8847c54ac2b68", + "url": "https://api.github.com/repos/Codeception/Codeception/zipball/f47547bac347dfb5ea5351ff91148cbcc08e6818", + "reference": "f47547bac347dfb5ea5351ff91148cbcc08e6818", "shasum": "" }, "require": { @@ -8259,13 +8721,17 @@ "functional testing", "unit testing" ], + "support": { + "issues": "https://github.com/Codeception/Codeception/issues", + "source": "https://github.com/Codeception/Codeception/tree/4.1.18" + }, "funding": [ { "url": "https://opencollective.com/codeception", "type": "open_collective" } ], - "time": "2021-02-01T07:30:47+00:00" + "time": "2021-02-23T17:11:42+00:00" }, { "name": "codeception/lib-asserts", @@ -8315,6 +8781,10 @@ "keywords": [ "codeception" ], + "support": { + "issues": "https://github.com/Codeception/lib-asserts/issues", + "source": "https://github.com/Codeception/lib-asserts/tree/1.13.2" + }, "time": "2020-10-21T16:26:20+00:00" }, { @@ -8371,6 +8841,10 @@ "keywords": [ "codeception" ], + "support": { + "issues": "https://github.com/Codeception/lib-innerbrowser/issues", + "source": "https://github.com/Codeception/lib-innerbrowser/tree/1.4.0" + }, "time": "2021-01-29T18:17:25+00:00" }, { @@ -8412,6 +8886,10 @@ } ], "description": "Mockery Module for Codeception", + "support": { + "issues": "https://github.com/Codeception/MockeryModule/issues", + "source": "https://github.com/Codeception/MockeryModule/tree/0.4.0" + }, "time": "2020-01-17T15:08:49+00:00" }, { @@ -8457,6 +8935,10 @@ } ], "description": "PHPUnit classes used by Codeception", + "support": { + "issues": "https://github.com/Codeception/phpunit-wrapper/issues", + "source": "https://github.com/Codeception/phpunit-wrapper/tree/9.0.6" + }, "time": "2020-12-28T13:59:47+00:00" }, { @@ -8487,6 +8969,10 @@ "MIT" ], "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", + "support": { + "issues": "https://github.com/Codeception/Stub/issues", + "source": "https://github.com/Codeception/Stub/tree/3.7.0" + }, "time": "2020-07-03T15:54:43+00:00" }, { @@ -8557,6 +9043,10 @@ "nette", "testing" ], + "support": { + "issues": "https://github.com/contributte/codeception/issues", + "source": "https://github.com/contributte/codeception/tree/v1.3.1" + }, "time": "2021-01-11T21:04:00+00:00" }, { @@ -8623,6 +9113,10 @@ "stylecheck", "tests" ], + "support": { + "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", + "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" + }, "time": "2020-12-07T18:04:37+00:00" }, { @@ -8674,6 +9168,10 @@ "standard", "style" ], + "support": { + "issues": "https://github.com/doctrine/coding-standard/issues", + "source": "https://github.com/doctrine/coding-standard/tree/8.2.0" + }, "time": "2020-10-25T14:56:19+00:00" }, { @@ -8721,20 +9219,24 @@ "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": "mockery/mockery", - "version": "1.4.2", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "20cab678faed06fac225193be281ea0fddb43b93" + "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93", - "reference": "20cab678faed06fac225193be281ea0fddb43b93", + "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea", + "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea", "shasum": "" }, "require": { @@ -8789,24 +9291,28 @@ "test double", "testing" ], - "time": "2020-08-11T18:10:13+00:00" + "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": "nette/tester", - "version": "v2.3.5", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/nette/tester.git", - "reference": "86d0e32ac2011c734d8def8e90ec65522b644bc4" + "reference": "0988c33459b49bfd6c8d06e16f29de96eba341e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/tester/zipball/86d0e32ac2011c734d8def8e90ec65522b644bc4", - "reference": "86d0e32ac2011c734d8def8e90ec65522b644bc4", + "url": "https://api.github.com/repos/nette/tester/zipball/0988c33459b49bfd6c8d06e16f29de96eba341e7", + "reference": "0988c33459b49bfd6c8d06e16f29de96eba341e7", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2 <8.1" }, "require-dev": { "ext-simplexml": "*", @@ -8818,7 +9324,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-master": "2.4-dev" } }, "autoload": { @@ -8856,7 +9362,11 @@ "testing", "unit" ], - "time": "2021-01-31T22:45:55+00:00" + "support": { + "issues": "https://github.com/nette/tester/issues", + "source": "https://github.com/nette/tester/tree/v2.4.0" + }, + "time": "2021-03-01T15:27:25+00:00" }, { "name": "nextras/mail-panel", @@ -8923,6 +9433,10 @@ "mailing", "mailpanel" ], + "support": { + "issues": "https://github.com/nextras/mail-panel/issues", + "source": "https://github.com/nextras/mail-panel/tree/v2.5.3" + }, "time": "2020-12-02T15:13:37+00:00" }, { @@ -8975,6 +9489,10 @@ "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" }, { @@ -9031,20 +9549,24 @@ } ], "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" }, { "name": "phar-io/version", - "version": "3.0.4", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/phar-io/version.git", - "reference": "e4782611070e50613683d2b9a57730e9a3ba5451" + "reference": "bae7c545bef187884426f042434e561ab1ddb182" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451", - "reference": "e4782611070e50613683d2b9a57730e9a3ba5451", + "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182", + "reference": "bae7c545bef187884426f042434e561ab1ddb182", "shasum": "" }, "require": { @@ -9078,7 +9600,11 @@ } ], "description": "Library for handling version information and constraints", - "time": "2020-12-13T23:18:30+00:00" + "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" }, { "name": "phpdocumentor/reflection-common", @@ -9127,6 +9653,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" }, { @@ -9179,6 +9709,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" }, { @@ -9224,6 +9758,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" }, { @@ -9287,20 +9825,24 @@ "spy", "stub" ], + "support": { + "issues": "https://github.com/phpspec/prophecy/issues", + "source": "https://github.com/phpspec/prophecy/tree/1.12.2" + }, "time": "2020-12-19T10:15:11+00:00" }, { "name": "phpstan/phpstan", - "version": "0.12.76", + "version": "0.12.80", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "7aaaf9a759a29795e8f46d48041af1c1f1b23d38" + "reference": "c6a1b17f22ecf708d434d6bee05092647ec7e686" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/7aaaf9a759a29795e8f46d48041af1c1f1b23d38", - "reference": "7aaaf9a759a29795e8f46d48041af1c1f1b23d38", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/c6a1b17f22ecf708d434d6bee05092647ec7e686", + "reference": "c6a1b17f22ecf708d434d6bee05092647ec7e686", "shasum": "" }, "require": { @@ -9329,6 +9871,10 @@ "MIT" ], "description": "PHPStan - PHP Static Analysis Tool", + "support": { + "issues": "https://github.com/phpstan/phpstan/issues", + "source": "https://github.com/phpstan/phpstan/tree/0.12.80" + }, "funding": [ { "url": "https://github.com/ondrejmirtes", @@ -9343,7 +9889,7 @@ "type": "tidelift" } ], - "time": "2021-02-13T11:47:44+00:00" + "time": "2021-02-28T20:22:43+00:00" }, { "name": "phpstan/phpstan-doctrine", @@ -9407,6 +9953,10 @@ "MIT" ], "description": "Doctrine extensions for PHPStan", + "support": { + "issues": "https://github.com/phpstan/phpstan-doctrine/issues", + "source": "https://github.com/phpstan/phpstan-doctrine/tree/0.12.32" + }, "time": "2021-02-09T19:07:47+00:00" }, { @@ -9467,6 +10017,10 @@ "MIT" ], "description": "Nette Framework class reflection extension for PHPStan", + "support": { + "issues": "https://github.com/phpstan/phpstan-nette/issues", + "source": "https://github.com/phpstan/phpstan-nette/tree/0.12.14" + }, "time": "2021-01-05T10:04:46+00:00" }, { @@ -9534,6 +10088,10 @@ "testing", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -9590,6 +10148,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", @@ -9649,6 +10211,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", @@ -9704,6 +10270,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", @@ -9759,6 +10329,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", @@ -9854,6 +10428,10 @@ "testing", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.2" + }, "funding": [ { "url": "https://phpunit.de/donate.html", @@ -9872,12 +10450,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "5f40d4d577a71466f9723122251b46bdaf634709" + "reference": "a6bfc5a1416f0dde1f53b7737b2cf983352737b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/5f40d4d577a71466f9723122251b46bdaf634709", - "reference": "5f40d4d577a71466f9723122251b46bdaf634709", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/a6bfc5a1416f0dde1f53b7737b2cf983352737b8", + "reference": "a6bfc5a1416f0dde1f53b7737b2cf983352737b8", "shasum": "" }, "conflict": { @@ -9895,6 +10473,7 @@ "barrelstrength/sprout-forms": "<3.9", "baserproject/basercms": ">=4,<=4.3.6|>=4.4,<4.4.1", "bolt/bolt": "<3.7.1", + "bolt/core": "<4.1.13", "brightlocal/phpwhois": "<=4.2.5", "buddypress/buddypress": "<5.1.2", "bugsnag/bugsnag-laravel": ">=2,<2.0.2", @@ -10018,7 +10597,7 @@ "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", "phpwhois/phpwhois": "<=4.2.5", "phpxmlrpc/extras": "<0.6.1", - "pimcore/pimcore": "<6.3", + "pimcore/pimcore": "<6.8.8", "pocketmine/pocketmine-mp": "<3.15.4", "prestashop/autoupgrade": ">=4,<4.10.1", "prestashop/contactform": ">1.0.1,<4.3", @@ -10058,7 +10637,7 @@ "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1", "simplito/elliptic-php": "<1.0.6", "slim/slim": "<2.6", - "smarty/smarty": "<3.1.33", + "smarty/smarty": "<3.1.39", "socalnick/scn-social-auth": "<1.15.2", "socialiteproviders/steam": "<1.1", "spoonity/tcpdf": "<6.2.22", @@ -10119,6 +10698,7 @@ "ua-parser/uap-php": "<3.8", "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2", "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4", + "vrana/adminer": "<4.7.9", "wallabag/tcpdf": "<6.2.22", "willdurand/js-translation-bundle": "<2.1.1", "yii2mod/yii2-cms": "<1.9.2", @@ -10175,6 +10755,10 @@ } ], "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it", + "support": { + "issues": "https://github.com/Roave/SecurityAdvisories/issues", + "source": "https://github.com/Roave/SecurityAdvisories/tree/latest" + }, "funding": [ { "url": "https://github.com/Ocramius", @@ -10185,7 +10769,7 @@ "type": "tidelift" } ], - "time": "2021-02-10T03:02:31+00:00" + "time": "2021-02-26T20:02:39+00:00" }, { "name": "sebastian/cli-parser", @@ -10231,6 +10815,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", @@ -10283,6 +10871,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", @@ -10334,6 +10926,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", @@ -10404,6 +11000,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", @@ -10457,6 +11057,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", @@ -10519,6 +11123,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", @@ -10578,6 +11186,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", @@ -10651,6 +11263,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", @@ -10711,6 +11327,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", @@ -10764,6 +11384,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", @@ -10817,6 +11441,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", @@ -10868,6 +11496,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", @@ -10927,6 +11559,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", @@ -10978,6 +11614,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", @@ -11030,6 +11670,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", @@ -11079,6 +11723,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", @@ -11132,6 +11780,10 @@ "MIT" ], "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "support": { + "issues": "https://github.com/slevomat/coding-standard/issues", + "source": "https://github.com/slevomat/coding-standard/tree/6.4.1" + }, "funding": [ { "url": "https://github.com/kukulich", @@ -11193,6 +11845,11 @@ "phpcs", "standards" ], + "support": { + "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", + "source": "https://github.com/squizlabs/PHP_CodeSniffer", + "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" + }, "time": "2020-10-23T02:01:07+00:00" }, { @@ -11247,6 +11904,9 @@ ], "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/browser-kit/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -11309,6 +11969,9 @@ ], "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -11380,6 +12043,9 @@ ], "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/dom-crawler/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -11438,6 +12104,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.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -11510,6 +12179,9 @@ ], "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v5.2.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -11564,6 +12236,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", @@ -11619,6 +12295,10 @@ "check", "validate" ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.9.1" + }, "time": "2020-07-08T17:02:28+00:00" } ], @@ -11640,5 +12320,5 @@ "ext-soap": "*" }, "platform-dev": [], - "plugin-api-version": "1.1.0" + "plugin-api-version": "2.0.0" }