From: Vincent Vanwaelscappel Date: Tue, 6 Jul 2021 16:38:52 +0000 (+0200) Subject: wip #4216 @3 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=5b4dbe64fd03e2f52e8844cbf76de8f5e442f1a7;p=fluidbook-toolbox.git wip #4216 @3 --- diff --git a/app/Console/Commands/WorkshopMigration.php b/app/Console/Commands/WorkshopMigration.php index b760e4fa7..c7540ccb3 100644 --- a/app/Console/Commands/WorkshopMigration.php +++ b/app/Console/Commands/WorkshopMigration.php @@ -83,7 +83,6 @@ class WorkshopMigration extends CubistCommand } foreach (DB::table($this->_oldDB . '.themes')->get() as $e) { - $oldRoot = $this->_oldRoot . 'themes/' . $e->theme_id . '/'; $c = new FluidbookTheme(); foreach ($map as $old => $new) { diff --git a/app/Models/FluidbookTheme.php b/app/Models/FluidbookTheme.php index 72c17dcf5..e621d7c47 100644 --- a/app/Models/FluidbookTheme.php +++ b/app/Models/FluidbookTheme.php @@ -48,7 +48,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_fonts', 'type' => 'FormSection', - 'label' => 'Polices', + 'label' => __('Polices'), ]); $this->addField(['name' => 'interfaceFont', @@ -70,7 +70,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_bouton', 'type' => 'FormSection', - 'label' => 'Personnalisation des boutons', + 'label' => __('Flèches de navigation'), ]); $this->addField([ 'name' => 'arrowsEnabled', @@ -121,7 +121,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_menu', 'type' => 'FormSection', - 'label' => 'Personnalisation des menus', + 'label' => __('Menus (popups)'), ]); $this->addField([ 'name' => 'couleurB', @@ -275,7 +275,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_search', 'type' => 'FormSection', - 'label' => 'Personnalisation de la recherche', + 'label' => __('Moteur de recherche'), ]); $this->addField([ 'name' => 'couleurS', @@ -334,7 +334,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_icones', 'type' => 'FormSection', - 'label' => 'Personnalisation des icônes', + 'label' => __('Icônes (menu horizontal)'), ]); $this->addField([ 'name' => 'iconSet', @@ -399,11 +399,13 @@ class FluidbookTheme extends CubistMagicAbstractModel 'default' => 'auto', 'translatable' => false, ]); + $this->addField([ - 'name' => 'section_book', + 'name' => 'section_effects', 'type' => 'FormSection', - 'label' => 'Personnalisation de la publication', + 'label' => __('Reflets, ombres et bordures'), ]); + $this->addField([ 'name' => 'pageReflection', 'type' => 'Checkbox', @@ -472,6 +474,7 @@ class FluidbookTheme extends CubistMagicAbstractModel 'default' => 100, 'translatable' => false, ]); + $this->addField([ 'type' => 'FormSeparator', ]); @@ -483,8 +486,11 @@ class FluidbookTheme extends CubistMagicAbstractModel 'allows_alpha' => true, 'translatable' => false, ]); + $this->addField([ - 'type' => 'FormSeparator', + 'name' => 'section_numbers', + 'type' => 'FormSection', + 'label' => __('Numéros de pages'), ]); $this->addField([ 'name' => 'displayPageNumber', @@ -502,7 +508,9 @@ class FluidbookTheme extends CubistMagicAbstractModel 'translatable' => false, ]); $this->addField([ - 'type' => 'FormSeparator', + 'name' => 'section_links', + 'type' => 'FormSection', + 'label' => __('Liens et multimédia'), ]); $this->addField([ 'name' => 'linksColor', @@ -521,7 +529,9 @@ class FluidbookTheme extends CubistMagicAbstractModel 'translatable' => false, ]); $this->addField([ - 'type' => 'FormSeparator', + 'name' => 'section_tooltips', + 'type' => 'FormSection', + 'label' => __('Infobulles'), ]); $this->addField([ 'name' => 'tooltipBackColor', @@ -547,7 +557,9 @@ class FluidbookTheme extends CubistMagicAbstractModel 'translatable' => false, ]); $this->addField([ - 'type' => 'FormSeparator', + 'name' => 'section_bookmarks', + 'type' => 'FormSection', + 'label' => __('Marque-pages'), ]); $this->addField([ 'name' => 'bookmarkBackgroundColor', @@ -576,7 +588,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_credits', 'type' => 'FormSection', - 'label' => 'Personnalisation des crédits', + 'label' => __('Crédits (footer)'), ]); $this->addField([ 'name' => 'creditsColor', @@ -589,7 +601,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_background', 'type' => 'FormSection', - 'label' => 'Personnalisation du fond', + 'label' => __('Fond d\'écran'), ]); $this->addField([ 'name' => 'transparentBackground', @@ -673,7 +685,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_menubar', 'type' => 'FormSection', - 'label' => 'Personnalisation de la barre de menu', + 'label' => __('Barre de menu'), ]); $this->addField([ 'name' => 'menuHeight', @@ -759,7 +771,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_logo', 'type' => 'FormSection', - 'label' => 'Personnalisation du logo', + 'label' => __('Logo'), ]); $this->addField([ 'name' => 'logo', @@ -805,7 +817,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_loader', 'type' => 'FormSection', - 'label' => 'Personnalisation du loader', + 'label' => __('Loader (écran de chargement)'), ]); $this->addField([ 'name' => 'loadingBackColor', @@ -851,7 +863,7 @@ class FluidbookTheme extends CubistMagicAbstractModel $this->addField([ 'name' => 'section_pagesbar', 'type' => 'FormSection', - 'label' => 'Personnalisation de la barre des pages', + 'label' => __('Slider'), ]); $this->addField([ 'name' => 'pagesBar', @@ -929,6 +941,19 @@ class FluidbookTheme extends CubistMagicAbstractModel $media = $theme->getMedia($v)->get(0); if (null !== $media) { $v = $media->getAttribute('file_name'); + $dir = '/data1/extranet/www/fluidbook/themes3/' . $theme->id; + if (!file_exists($dir)) { + mkdir($dir, 0777, true); + } + $dest = $dir . '/' . $v; + $path = $media->getPath(); + $exists = file_exists($dest); + if (!$exists || realpath($dest) !== realpath($path)) { + if ($exists) { + unlink($dest); + } + `ln -s $path $dest`; + } } } } diff --git a/composer.lock b/composer.lock index a69a91ef9..29c7d4bf8 100644 --- a/composer.lock +++ b/composer.lock @@ -1318,13 +1318,13 @@ "source": { "type": "git", "url": "git://git.cubedesigners.com/cubist_cms-back.git", - "reference": "2335d29f14a249d127f4e563727b6573454ffd39" + "reference": "69b0a22495e9084094cb3ec5baba9e2c5537cbf9" }, "dist": { "type": "tar", - "url": "https://composer.cubedesigners.com/dist/cubist/cms-back/cubist-cms-back-dev-master-9865d3.tar", - "reference": "2335d29f14a249d127f4e563727b6573454ffd39", - "shasum": "64b84523f876fc39b3575c4ef26885017c8423bf" + "url": "https://composer.cubedesigners.com/dist/cubist/cms-back/cubist-cms-back-dev-master-b3bace.tar", + "reference": "69b0a22495e9084094cb3ec5baba9e2c5537cbf9", + "shasum": "1405311db81a24b61c5b331113791999313226cc" }, "require": { "backpack/backupmanager": "^2.0", @@ -1399,7 +1399,7 @@ } ], "description": "Cubist Backpack extension", - "time": "2021-06-14T16:07:28+00:00" + "time": "2021-06-29T16:23:24+00:00" }, { "name": "cubist/cms-front", @@ -3289,29 +3289,32 @@ }, { "name": "guzzlehttp/psr7", - "version": "1.8.2", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "dc960a912984efb74d0a90222870c72c87f10c91" + "reference": "1dc8d9cba3897165e16d12bb13d813afb1eb3fe7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91", - "reference": "dc960a912984efb74d0a90222870c72c87f10c91", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/1dc8d9cba3897165e16d12bb13d813afb1eb3fe7", + "reference": "1dc8d9cba3897165e16d12bb13d813afb1eb3fe7", "shasum": "" }, "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.0", + "ralouphie/getallheaders": "^3.0" }, "provide": { + "psr/http-factory-implementation": "1.0", "psr/http-message-implementation": "1.0" }, "require-dev": { - "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" + "bamarni/composer-bin-plugin": "^1.4.1", + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^8.5.8 || ^9.3.10" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -3319,16 +3322,13 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.7-dev" + "dev-master": "2.0-dev" } }, "autoload": { "psr-4": { "GuzzleHttp\\Psr7\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3343,6 +3343,11 @@ { "name": "Tobias Schultze", "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" } ], "description": "PSR-7 message implementation that also provides common utility methods", @@ -3358,38 +3363,39 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.8.2" + "source": "https://github.com/guzzle/psr7/tree/2.0.0" }, - "time": "2021-04-26T09:17:50+00:00" + "time": "2021-06-30T20:03:07+00:00" }, { "name": "intervention/image", - "version": "2.5.1", + "version": "dev-master", "source": { "type": "git", "url": "https://github.com/Intervention/image.git", - "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e" + "reference": "94c17999bdc86552e1c4c685c5fda52a5b4f994d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e", - "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e", + "url": "https://api.github.com/repos/Intervention/image/zipball/94c17999bdc86552e1c4c685c5fda52a5b4f994d", + "reference": "94c17999bdc86552e1c4c685c5fda52a5b4f994d", "shasum": "" }, "require": { "ext-fileinfo": "*", - "guzzlehttp/psr7": "~1.1", + "guzzlehttp/psr7": "~1.1 || ^2.0", "php": ">=5.4.0" }, "require-dev": { "mockery/mockery": "~0.9.2", - "phpunit/phpunit": "^4.8 || ^5.7" + "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15" }, "suggest": { "ext-gd": "to use GD library based image processing.", "ext-imagick": "to use Imagick based image processing.", "intervention/imagecache": "Caching extension for the Intervention Image library" }, + "default-branch": true, "type": "library", "extra": { "branch-alias": { @@ -3434,7 +3440,17 @@ "issues": "https://github.com/Intervention/image/issues", "source": "https://github.com/Intervention/image/tree/master" }, - "time": "2019-11-02T09:15:47+00:00" + "funding": [ + { + "url": "https://www.paypal.me/interventionphp", + "type": "custom" + }, + { + "url": "https://github.com/Intervention", + "type": "github" + } + ], + "time": "2021-07-05T17:34:12+00:00" }, { "name": "jaybizzle/crawler-detect", @@ -4673,16 +4689,16 @@ }, { "name": "monolog/monolog", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084" + "reference": "df991fd88693ab703aa403413d83e15f688dae33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084", - "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/df991fd88693ab703aa403413d83e15f688dae33", + "reference": "df991fd88693ab703aa403413d83e15f688dae33", "shasum": "" }, "require": { @@ -4701,7 +4717,7 @@ "php-amqplib/php-amqplib": "~2.4", "php-console/php-console": "^3.1.3", "phpspec/prophecy": "^1.6.1", - "phpstan/phpstan": "^0.12.59", + "phpstan/phpstan": "^0.12.91", "phpunit/phpunit": "^8.5", "predis/predis": "^1.1", "rollbar/rollbar": "^1.3", @@ -4753,7 +4769,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.2.0" + "source": "https://github.com/Seldaek/monolog/tree/2.3.0" }, "funding": [ { @@ -4765,20 +4781,20 @@ "type": "tidelift" } ], - "time": "2020-12-14T13:15:25+00:00" + "time": "2021-07-05T11:34:13+00:00" }, { "name": "myclabs/php-enum", - "version": "1.8.1", + "version": "1.8.3", "source": { "type": "git", "url": "https://github.com/myclabs/php-enum.git", - "reference": "55555d31a622b4bc9662664132a0533ae6ef47b1" + "reference": "b942d263c641ddb5190929ff840c68f78713e937" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/php-enum/zipball/55555d31a622b4bc9662664132a0533ae6ef47b1", - "reference": "55555d31a622b4bc9662664132a0533ae6ef47b1", + "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937", + "reference": "b942d263c641ddb5190929ff840c68f78713e937", "shasum": "" }, "require": { @@ -4813,7 +4829,7 @@ ], "support": { "issues": "https://github.com/myclabs/php-enum/issues", - "source": "https://github.com/myclabs/php-enum/tree/1.8.1" + "source": "https://github.com/myclabs/php-enum/tree/1.8.3" }, "funding": [ { @@ -4825,7 +4841,7 @@ "type": "tidelift" } ], - "time": "2021-06-29T09:20:05+00:00" + "time": "2021-07-05T08:18:36+00:00" }, { "name": "nesbot/carbon", @@ -7372,16 +7388,16 @@ }, { "name": "symfony/error-handler", - "version": "v5.3.0", + "version": "v5.3.3", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2" + "reference": "43323e79c80719e8a4674e33484bca98270d223f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/0e6768b8c0dcef26df087df2bbbaa143867a59b2", - "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/43323e79c80719e8a4674e33484bca98270d223f", + "reference": "43323e79c80719e8a4674e33484bca98270d223f", "shasum": "" }, "require": { @@ -7421,7 +7437,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v5.3.0" + "source": "https://github.com/symfony/error-handler/tree/v5.3.3" }, "funding": [ { @@ -7437,7 +7453,7 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2021-06-24T08:13:00+00:00" }, { "name": "symfony/event-dispatcher", @@ -7605,16 +7621,16 @@ }, { "name": "symfony/filesystem", - "version": "v5.3.0", + "version": "v5.3.3", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "348116319d7fb7d1faa781d26a48922428013eb2" + "reference": "19b71c8f313b411172dd5f470fd61f24466d79a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/348116319d7fb7d1faa781d26a48922428013eb2", - "reference": "348116319d7fb7d1faa781d26a48922428013eb2", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/19b71c8f313b411172dd5f470fd61f24466d79a9", + "reference": "19b71c8f313b411172dd5f470fd61f24466d79a9", "shasum": "" }, "require": { @@ -7647,7 +7663,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v5.3.0" + "source": "https://github.com/symfony/filesystem/tree/v5.3.3" }, "funding": [ { @@ -7663,7 +7679,7 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2021-06-30T07:27:52+00:00" }, { "name": "symfony/finder", @@ -7806,16 +7822,16 @@ }, { "name": "symfony/http-foundation", - "version": "v5.3.2", + "version": "v5.3.3", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "7b6dd714d95106b831aaa7f3c9c612ab886516bd" + "reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7b6dd714d95106b831aaa7f3c9c612ab886516bd", - "reference": "7b6dd714d95106b831aaa7f3c9c612ab886516bd", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0e45ab1574caa0460d9190871a8ce47539e40ccf", + "reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf", "shasum": "" }, "require": { @@ -7859,7 +7875,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v5.3.2" + "source": "https://github.com/symfony/http-foundation/tree/v5.3.3" }, "funding": [ { @@ -7875,20 +7891,20 @@ "type": "tidelift" } ], - "time": "2021-06-12T10:15:17+00:00" + "time": "2021-06-27T09:19:40+00:00" }, { "name": "symfony/http-kernel", - "version": "v5.3.2", + "version": "v5.3.3", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "e7021165d9dbfb4051296b8de827e92c8a7b5c87" + "reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e7021165d9dbfb4051296b8de827e92c8a7b5c87", - "reference": "e7021165d9dbfb4051296b8de827e92c8a7b5c87", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8", + "reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8", "shasum": "" }, "require": { @@ -7971,7 +7987,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v5.3.2" + "source": "https://github.com/symfony/http-kernel/tree/v5.3.3" }, "funding": [ { @@ -7987,7 +8003,7 @@ "type": "tidelift" } ], - "time": "2021-06-17T14:18:27+00:00" + "time": "2021-06-30T08:27:49+00:00" }, { "name": "symfony/mime", @@ -9034,16 +9050,16 @@ }, { "name": "symfony/string", - "version": "v5.3.2", + "version": "v5.3.3", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "0732e97e41c0a590f77e231afc16a327375d50b0" + "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/0732e97e41c0a590f77e231afc16a327375d50b0", - "reference": "0732e97e41c0a590f77e231afc16a327375d50b0", + "url": "https://api.github.com/repos/symfony/string/zipball/bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1", + "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1", "shasum": "" }, "require": { @@ -9097,7 +9113,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v5.3.2" + "source": "https://github.com/symfony/string/tree/v5.3.3" }, "funding": [ { @@ -9113,20 +9129,20 @@ "type": "tidelift" } ], - "time": "2021-06-06T09:51:56+00:00" + "time": "2021-06-27T11:44:38+00:00" }, { "name": "symfony/translation", - "version": "v5.3.2", + "version": "v5.3.3", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "7e2603bcc598e14804c4d2359d8dc4ee3c40391b" + "reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/7e2603bcc598e14804c4d2359d8dc4ee3c40391b", - "reference": "7e2603bcc598e14804c4d2359d8dc4ee3c40391b", + "url": "https://api.github.com/repos/symfony/translation/zipball/380b8c9e944d0e364b25f28e8e555241eb49c01c", + "reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c", "shasum": "" }, "require": { @@ -9192,7 +9208,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v5.3.2" + "source": "https://github.com/symfony/translation/tree/v5.3.3" }, "funding": [ { @@ -9208,7 +9224,7 @@ "type": "tidelift" } ], - "time": "2021-06-06T09:51:56+00:00" + "time": "2021-06-27T12:22:47+00:00" }, { "name": "symfony/translation-contracts", @@ -9290,16 +9306,16 @@ }, { "name": "symfony/var-dumper", - "version": "v5.3.2", + "version": "v5.3.3", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "905a22c68b292ffb6f20d7636c36b220d1fba5ae" + "reference": "46aa709affb9ad3355bd7a810f9662d71025c384" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/905a22c68b292ffb6f20d7636c36b220d1fba5ae", - "reference": "905a22c68b292ffb6f20d7636c36b220d1fba5ae", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/46aa709affb9ad3355bd7a810f9662d71025c384", + "reference": "46aa709affb9ad3355bd7a810f9662d71025c384", "shasum": "" }, "require": { @@ -9358,7 +9374,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.3.2" + "source": "https://github.com/symfony/var-dumper/tree/v5.3.3" }, "funding": [ { @@ -9374,7 +9390,7 @@ "type": "tidelift" } ], - "time": "2021-06-06T09:51:56+00:00" + "time": "2021-06-24T08:13:00+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -10972,16 +10988,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.10.5", + "version": "v4.11.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f" + "reference": "fe14cf3672a149364fb66dfe11bf6549af899f94" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f", - "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/fe14cf3672a149364fb66dfe11bf6549af899f94", + "reference": "fe14cf3672a149364fb66dfe11bf6549af899f94", "shasum": "" }, "require": { @@ -11022,9 +11038,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.11.0" }, - "time": "2021-05-03T19:11:20+00:00" + "time": "2021-07-03T13:36:55+00:00" }, { "name": "nunomaduro/collision",