From 1796d08adc9a54c7e2fe17f3420ddfe0a57a88a2 Mon Sep 17 00:00:00 2001 From: "h.matsuo" Date: Sat, 8 May 2021 09:10:26 +0900 Subject: [PATCH 01/16] =?UTF-8?q?20210507=20Hotfix=20=E3=83=91=E3=83=83?= =?UTF-8?q?=E3=83=81=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Eccube/Resource/template/admin/Order/mail_confirm.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Eccube/Resource/template/admin/Order/mail_confirm.twig b/src/Eccube/Resource/template/admin/Order/mail_confirm.twig index 81127fdf4ca..0ca788a17c1 100644 --- a/src/Eccube/Resource/template/admin/Order/mail_confirm.twig +++ b/src/Eccube/Resource/template/admin/Order/mail_confirm.twig @@ -111,7 +111,7 @@ $(function() {
{{ 'admin.order.mail_body'|trans }}
- {{ form.tpl_data.vars.data|trans|raw|nl2br }} + {{ form.tpl_data.vars.data|trans|nl2br }}
{{ form_widget(form.tpl_data) }}
From 66ebadffee7c3d842b9b4e066c30b31098925ba0 Mon Sep 17 00:00:00 2001 From: hideki_okajima Date: Sat, 8 May 2021 10:17:32 +0900 Subject: [PATCH 02/16] =?UTF-8?q?GitHub=20Actions=20=E3=81=A7=E3=81=AE?= =?UTF-8?q?=E5=AE=9F=E8=A1=8C=E3=82=92=20composer1=20=E3=81=AB=E5=9B=BA?= =?UTF-8?q?=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/action.yml | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index e5bbf643448..8f770763523 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -74,7 +74,9 @@ jobs: php-version: ${{ matrix.php }} - name: composer install - run: composer install --dev --no-interaction -o --apcu-autoloader + run: | + sudo composer selfupdate --1 + composer install --dev --no-interaction -o --apcu-autoloader - name: Setup EC-CUBE env: @@ -166,7 +168,10 @@ jobs: php-version: ${{ matrix.php }} - name: composer install - run: composer install --dev --no-interaction -o --apcu-autoloader + run: | + sudo composer selfupdate --1 + composer install --dev --no-interaction -o --apcu-autoloader + - name: Setup to EC-CUBE env: APP_ENV: ${{ matrix.app_env }} @@ -291,7 +296,9 @@ jobs: php-version: ${{ matrix.php }} - name: composer install - run: composer install --dev --no-interaction -o --apcu-autoloader + run: | + sudo composer selfupdate --1 + composer install --dev --no-interaction -o --apcu-autoloader - name: Setup to EC-CUBE env: @@ -433,7 +440,10 @@ jobs: php-version: ${{ matrix.php }} - name: Install to Composer - run: composer install --dev --no-interaction -o --apcu-autoloader + run: | + sudo composer selfupdate --1 + composer install --dev --no-interaction -o --apcu-autoloader + - name: Setup to EC-CUBE env: APP_ENV: 'codeception' @@ -574,7 +584,10 @@ jobs: php-version: ${{ matrix.php }} - name: Install to Composer - run: composer install --dev --no-interaction -o --apcu-autoloader + run: | + sudo composer selfupdate --1 + composer install --dev --no-interaction -o --apcu-autoloader + - name: Setup to EC-CUBE env: APP_ENV: 'codeception' @@ -718,7 +731,10 @@ jobs: php-version: ${{ matrix.php }} - name: Install to Composer - run: composer install --dev --no-interaction -o --apcu-autoloader + run: | + sudo composer selfupdate --1 + composer install --dev --no-interaction -o --apcu-autoloader + - name: Setup to EC-CUBE env: APP_ENV: 'codeception' @@ -821,7 +837,9 @@ jobs: - name: Install to Composer if: github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'prereleased' ) - run: composer install --no-scripts --no-dev --no-interaction --optimize-autoloader + run: | + sudo composer selfupdate --1 + composer install --no-scripts --no-dev --no-interaction --optimize-autoloader - name: Dump GitHub context env: From 743e3973ab2fe981d86348150d36c4f2ff19dbf8 Mon Sep 17 00:00:00 2001 From: hideki_okajima Date: Sat, 8 May 2021 10:33:51 +0900 Subject: [PATCH 03/16] =?UTF-8?q?GitHub=20Actions=20=E3=81=AE=20deploy=20?= =?UTF-8?q?=E3=81=AE=E6=9D=A1=E4=BB=B6=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 8f770763523..e89cb15e284 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -810,7 +810,6 @@ jobs: deploy: name: Deploy runs-on: ubuntu-18.04 - needs: [ phpunit, codeception ] steps: - name: Checkout if: github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'prereleased' ) From e644d06d1c9956e401b469ab95d906659da7839d Mon Sep 17 00:00:00 2001 From: hideki_okajima Date: Fri, 26 Mar 2021 09:31:48 +0900 Subject: [PATCH 04/16] =?UTF-8?q?=E7=AE=A1=E7=90=86=E7=94=BB=E9=9D=A2?= =?UTF-8?q?=E3=81=AE=E3=81=8A=E7=9F=A5=E3=82=89=E3=81=9B=E3=81=AEE2E?= =?UTF-8?q?=E3=83=86=E3=82=B9=E3=83=88=E3=82=92=E3=83=AA=E3=83=80=E3=82=A4?= =?UTF-8?q?=E3=83=AC=E3=82=AF=E3=83=88=E3=81=AB=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- codeception/acceptance/EA01TopCest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeception/acceptance/EA01TopCest.php b/codeception/acceptance/EA01TopCest.php index f6493f617fb..0214ac88b47 100644 --- a/codeception/acceptance/EA01TopCest.php +++ b/codeception/acceptance/EA01TopCest.php @@ -82,10 +82,10 @@ public function top_001(\AcceptanceTester $I) // お知らせの記事をクリックすると設定されたURLに遷移することを確認 $I->switchToIFrame('information'); $selector = '.news_area .link_list .tableish a:nth-child(1)'; - $url = $I->grabAttributeFrom($selector, 'href'); + $url = $I->executeJS('return location.href'); $I->click(['css' => $selector]); $I->switchToNewWindow(); - $I->assertEquals($url, $I->executeJS('return location.href'), $url.' が一致しません'); + $I->assertNotEquals($url, $I->executeJS('return location.href'), $url.' から遷移していません。'); $I->switchToWindow(); // ショップ情報の在庫切れ商品をクリックすると商品管理ページに遷移することを確認 From cfd2ab3e1d2b69694eaab2e2d8ae4ec6c2a2ab87 Mon Sep 17 00:00:00 2001 From: Chihiro Adachi <8196725+chihiro-adachi@users.noreply.github.com> Date: Tue, 16 Feb 2021 15:18:02 +0900 Subject: [PATCH 05/16] =?UTF-8?q?=E8=A9=B3=E7=B4=B0=E6=A4=9C=E7=B4=A2?= =?UTF-8?q?=E3=83=9C=E3=82=BF=E3=83=B3=E3=81=AE=E5=AF=BE=E8=B1=A1=E7=AF=84?= =?UTF-8?q?=E5=9B=B2=E3=82=92=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- codeception/_support/Page/Admin/OrderManagePage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeception/_support/Page/Admin/OrderManagePage.php b/codeception/_support/Page/Admin/OrderManagePage.php index f473db0a8c5..fc17808f549 100644 --- a/codeception/_support/Page/Admin/OrderManagePage.php +++ b/codeception/_support/Page/Admin/OrderManagePage.php @@ -18,7 +18,7 @@ class OrderManagePage extends AbstractAdminPageStyleGuide public static $検索条件_受注ステータス = ['id' => 'admin_search_order_status']; public static $検索結果_メッセージ = '#search_form #search_total_count'; public static $検索結果_エラーメッセージ = '//*[@id="page_admin_order"]/div[1]/div[3]/div[3]/div/div/div[1]/div/div[1]'; - public static $詳細検索ボタン = '//*[@id="search_form"]/div[1]/div/div/div[3]/a/i/span'; + public static $詳細検索ボタン = '//*[@id="search_form"]/div[1]/div/div/div[3]'; public static $タイトル要素 = '.c-container .c-contentsArea .c-pageTitle .c-pageTitle__titles'; /** From 6bfd71a76d9d8dc8ac9c4639397c802594b4b7c6 Mon Sep 17 00:00:00 2001 From: hideki_okajima Date: Sat, 8 May 2021 13:18:20 +0900 Subject: [PATCH 06/16] =?UTF-8?q?=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E3=82=92=204.0.5-p1=20=E3=81=AB=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/Eccube/Common/Constant.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2f773c3b3f8..62125ed4f2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eccube", - "version": "4.0.5", + "version": "4.0.5-p1", "description": "EC-CUBE EC open platform.", "main": "index.js", "directories": { diff --git a/src/Eccube/Common/Constant.php b/src/Eccube/Common/Constant.php index 501ea2b56f0..27c8b2c4e40 100644 --- a/src/Eccube/Common/Constant.php +++ b/src/Eccube/Common/Constant.php @@ -18,7 +18,7 @@ class Constant /** * EC-CUBE VERSION. */ - const VERSION = '4.0.5'; + const VERSION = '4.0.5-p1'; /** * Enable value. From ca79685fa4f6419cf1034b060b5ee377cc3f4186 Mon Sep 17 00:00:00 2001 From: kiy0taka Date: Mon, 17 May 2021 18:37:42 +0900 Subject: [PATCH 07/16] =?UTF-8?q?=E6=94=AF=E6=89=95=E6=96=B9=E6=B3=95?= =?UTF-8?q?=E8=A8=AD=E5=AE=9A=E3=81=AEXSS=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Resource/template/admin/Setting/Shop/payment_edit.twig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Eccube/Resource/template/admin/Setting/Shop/payment_edit.twig b/src/Eccube/Resource/template/admin/Setting/Shop/payment_edit.twig index af986e503f9..354512410dc 100644 --- a/src/Eccube/Resource/template/admin/Setting/Shop/payment_edit.twig +++ b/src/Eccube/Resource/template/admin/Setting/Shop/payment_edit.twig @@ -46,7 +46,7 @@ file that was distributed with this source code. } }; - var proto_img = '
' + + var proto_img = '
' + '' + '
'; var payment_image = $('#{{ form.payment_image.vars.id }}').val(); @@ -57,7 +57,7 @@ file that was distributed with this source code. } else { var path = '{{ asset('', 'temp_image') }}' + filename; } - var $img = $(proto_img.replace(/__path__/g, path)); + var $img = $(proto_img).css('background-image', 'url(' + path + ')'); $('#{{ form.payment_image.vars.id }}').val(filename); $('#thumb').append($img); @@ -73,7 +73,7 @@ file that was distributed with this source code. done: function(e, data) { $('.progress').hide(); var path = '{{ asset('', 'temp_image') }}/' + data.result.filename; - var $img = $(proto_img.replace(/__path__/g, path)); + var $img = $(proto_img).css('background-image', 'url(' + path + ')');; $('#{{ form.payment_image.vars.id }}').val(data.result.filename); $('#thumb').append($img); From e689164e09ed43deab0b139c86416cd515ceb70c Mon Sep 17 00:00:00 2001 From: Chihiro Adachi <8196725+chihiro-adachi@users.noreply.github.com> Date: Wed, 26 May 2021 16:53:50 +0900 Subject: [PATCH 08/16] =?UTF-8?q?vendor=E4=BB=A5=E4=B8=8B=E3=81=AE?= =?UTF-8?q?=E3=82=A2=E3=82=AF=E3=82=BB=E3=82=B9=E5=88=B6=E5=BE=A1=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .htaccess | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.htaccess b/.htaccess index d2c88a117f0..3812bfa35f0 100644 --- a/.htaccess +++ b/.htaccess @@ -5,11 +5,18 @@ DirectoryIndex index.php index.html .ht deny from all - + order deny,allow allow from all + + SetEnvIf Request_URI "/vendor/" deny_dir + Order allow,deny + Deny from env=deny_dir + Allow from all + + # クリックジャッキング対策 Header always set X-Frame-Options SAMEORIGIN From 2d31d62a3260d990944f65b29be97612ebc34c7c Mon Sep 17 00:00:00 2001 From: Chihiro Adachi <8196725+chihiro-adachi@users.noreply.github.com> Date: Fri, 4 Jun 2021 13:26:43 +0900 Subject: [PATCH 09/16] =?UTF-8?q?require-dev=E3=82=92=E9=99=A4=E5=A4=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Eccube/Service/Composer/ComposerApiService.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Eccube/Service/Composer/ComposerApiService.php b/src/Eccube/Service/Composer/ComposerApiService.php index ae818a58757..00b827240d0 100644 --- a/src/Eccube/Service/Composer/ComposerApiService.php +++ b/src/Eccube/Service/Composer/ComposerApiService.php @@ -113,6 +113,7 @@ public function execRequire($packageName, $output = null) '--prefer-dist' => true, '--update-with-dependencies' => true, '--no-scripts' => true, + '--update-no-dev' => env('APP_ENV') !== 'codeception', ], $output); } @@ -141,6 +142,7 @@ public function execRemove($packageName, $output = null) '--no-interaction' => true, '--profile' => true, '--no-scripts' => true, + '--update-no-dev' => env('APP_ENV') !== 'codeception', ], $output); } @@ -162,6 +164,7 @@ public function execUpdate($dryRun, $output = null) '--profile' => true, '--no-scripts' => true, '--dry-run' => (bool) $dryRun, + '--no-dev' => env('APP_ENV') !== 'codeception', ], $output); } @@ -183,6 +186,7 @@ public function execInstall($dryRun, $output = null) '--profile' => true, '--no-scripts' => true, '--dry-run' => (bool) $dryRun, + '--no-dev' => env('APP_ENV') !== 'codeception', ], $output); } From fa0c4f4500397b9df0a837e290d8d600f75364a8 Mon Sep 17 00:00:00 2001 From: Chihiro Adachi <8196725+chihiro-adachi@users.noreply.github.com> Date: Fri, 4 Jun 2021 13:39:50 +0900 Subject: [PATCH 10/16] composer update symfony/* --- composer.lock | 1326 +++++++++++++++++++++++-------------------------- symfony.lock | 9 +- 2 files changed, 635 insertions(+), 700 deletions(-) diff --git a/composer.lock b/composer.lock index 44539fedfaf..2a5e407506e 100644 --- a/composer.lock +++ b/composer.lock @@ -142,6 +142,71 @@ ], "time": "2019-11-01T16:20:17+00:00" }, + { + "name": "composer/package-versions-deprecated", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/composer/package-versions-deprecated.git", + "reference": "98df7f1b293c0550bd5b1ce6b60b59bdda23aa47" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/98df7f1b293c0550bd5b1ce6b60b59bdda23aa47", + "reference": "98df7f1b293c0550bd5b1ce6b60b59bdda23aa47", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.1.0 || ^2.0", + "php": "^7" + }, + "replace": { + "ocramius/package-versions": "1.2 - 1.8.99" + }, + "require-dev": { + "composer/composer": "^1.9.3 || ^2.0@dev", + "ext-zip": "^1.13", + "phpunit/phpunit": "^6.5 || ^7" + }, + "type": "composer-plugin", + "extra": { + "class": "PackageVersions\\Installer", + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "PackageVersions\\": "src/PackageVersions" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" + } + ], + "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-04-23T11:49:37+00:00" + }, { "name": "composer/semver", "version": "1.5.0", @@ -935,6 +1000,7 @@ "cache", "caching" ], + "abandoned": true, "time": "2018-11-09T06:25:35+00:00" }, { @@ -1636,6 +1702,7 @@ "keywords": [ "reflection" ], + "abandoned": "roave/better-reflection", "time": "2018-06-14T14:45:07+00:00" }, { @@ -2589,56 +2656,6 @@ ], "time": "2019-11-08T13:50:10+00:00" }, - { - "name": "ocramius/package-versions", - "version": "1.4.2", - "source": { - "type": "git", - "url": "https://github.com/Ocramius/PackageVersions.git", - "reference": "44af6f3a2e2e04f2af46bcb302ad9600cba41c7d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/44af6f3a2e2e04f2af46bcb302ad9600cba41c7d", - "reference": "44af6f3a2e2e04f2af46bcb302ad9600cba41c7d", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.0.0", - "php": "^7.1.0" - }, - "require-dev": { - "composer/composer": "^1.6.3", - "doctrine/coding-standard": "^5.0.1", - "ext-zip": "*", - "infection/infection": "^0.7.1", - "phpunit/phpunit": "^7.5.17" - }, - "type": "composer-plugin", - "extra": { - "class": "PackageVersions\\Installer", - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "PackageVersions\\": "src/PackageVersions" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - } - ], - "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", - "time": "2019-11-15T16:17:10+00:00" - }, { "name": "ocramius/proxy-manager", "version": "2.1.1", @@ -2708,51 +2725,6 @@ ], "time": "2017-05-04T11:12:50+00:00" }, - { - "name": "paragonie/random_compat", - "version": "v9.99.99", - "source": { - "type": "git", - "url": "https://github.com/paragonie/random_compat.git", - "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", - "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", - "shasum": "" - }, - "require": { - "php": "^7" - }, - "require-dev": { - "phpunit/phpunit": "4.*|5.*", - "vimeo/psalm": "^1" - }, - "suggest": { - "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." - }, - "type": "library", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Paragon Initiative Enterprises", - "email": "security@paragonie.com", - "homepage": "https://paragonie.com" - } - ], - "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", - "keywords": [ - "csprng", - "polyfill", - "pseudorandom", - "random" - ], - "time": "2018-07-02T15:55:56+00:00" - }, { "name": "php-cs-fixer/diff", "version": "v1.3.0", @@ -3621,16 +3593,16 @@ }, { "name": "symfony/asset", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/asset.git", - "reference": "86dc86fe186790d2e8d5a87cd50066d387dcc04c" + "reference": "0970d65388724df88c982111ec37c08457506ce3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/asset/zipball/86dc86fe186790d2e8d5a87cd50066d387dcc04c", - "reference": "86dc86fe186790d2e8d5a87cd50066d387dcc04c", + "url": "https://api.github.com/repos/symfony/asset/zipball/0970d65388724df88c982111ec37c08457506ce3", + "reference": "0970d65388724df88c982111ec37c08457506ce3", "shasum": "" }, "require": { @@ -3644,11 +3616,6 @@ "symfony/http-foundation": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Asset\\": "" @@ -3687,20 +3654,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T17:48:24+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/cache", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "42bd2c563c94eeda0639074e91774505ea557cce" + "reference": "a7a14c4832760bd1fbd31be2859ffedc9b6ff813" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/42bd2c563c94eeda0639074e91774505ea557cce", - "reference": "42bd2c563c94eeda0639074e91774505ea557cce", + "url": "https://api.github.com/repos/symfony/cache/zipball/a7a14c4832760bd1fbd31be2859ffedc9b6ff813", + "reference": "a7a14c4832760bd1fbd31be2859ffedc9b6ff813", "shasum": "" }, "require": { @@ -3724,11 +3691,6 @@ "predis/predis": "^1.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Cache\\": "" @@ -3771,20 +3733,20 @@ "type": "tidelift" } ], - "time": "2020-06-09T14:07:03+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/class-loader", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/class-loader.git", - "reference": "e4636a4f23f157278a19e5db160c63de0da297d8" + "reference": "a22265a9f3511c0212bf79f54910ca5a77c0e92c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8", - "reference": "e4636a4f23f157278a19e5db160c63de0da297d8", + "url": "https://api.github.com/repos/symfony/class-loader/zipball/a22265a9f3511c0212bf79f54910ca5a77c0e92c", + "reference": "a22265a9f3511c0212bf79f54910ca5a77c0e92c", "shasum": "" }, "require": { @@ -3798,11 +3760,6 @@ "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\ClassLoader\\": "" @@ -3841,20 +3798,20 @@ "type": "tidelift" } ], - "time": "2020-03-15T09:38:08+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/config", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "cd61db31cbd19cbe4ba9f6968f13c9076e1372ab" + "reference": "bc6b3fd3930d4b53a60b42fe2ed6fc466b75f03f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/cd61db31cbd19cbe4ba9f6968f13c9076e1372ab", - "reference": "cd61db31cbd19cbe4ba9f6968f13c9076e1372ab", + "url": "https://api.github.com/repos/symfony/config/zipball/bc6b3fd3930d4b53a60b42fe2ed6fc466b75f03f", + "reference": "bc6b3fd3930d4b53a60b42fe2ed6fc466b75f03f", "shasum": "" }, "require": { @@ -3876,11 +3833,6 @@ "symfony/yaml": "To use the yaml reference dumper" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Config\\": "" @@ -3919,20 +3871,20 @@ "type": "tidelift" } ], - "time": "2020-05-22T10:56:48+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/console", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13" + "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13", - "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13", + "url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81", + "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81", "shasum": "" }, "require": { @@ -3962,11 +3914,6 @@ "symfony/process": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Console\\": "" @@ -4005,31 +3952,26 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:58:05+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/css-selector", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518" + "reference": "da3d9da2ce0026771f5fe64cb332158f1bd2bc33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/9ccf6e78077a3fc1596e6c7b5958008965a11518", - "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/da3d9da2ce0026771f5fe64cb332158f1bd2bc33", + "reference": "da3d9da2ce0026771f5fe64cb332158f1bd2bc33", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\CssSelector\\": "" @@ -4072,20 +4014,20 @@ "type": "tidelift" } ], - "time": "2020-03-16T08:31:04+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/debug", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d" + "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d", - "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d", + "url": "https://api.github.com/repos/symfony/debug/zipball/ab42889de57fdfcfcc0759ab102e2fd4ea72dcae", + "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae", "shasum": "" }, "require": { @@ -4099,11 +4041,6 @@ "symfony/http-kernel": "~2.8|~3.0|~4.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Debug\\": "" @@ -4142,20 +4079,20 @@ "type": "tidelift" } ], - "time": "2020-05-22T18:25:20+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/debug-bundle", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/debug-bundle.git", - "reference": "823be58018c34f902bfd41df8419e9533984163c" + "reference": "801ca5060ef44fe3e67f61fa53590251643045fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/823be58018c34f902bfd41df8419e9533984163c", - "reference": "823be58018c34f902bfd41df8419e9533984163c", + "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/801ca5060ef44fe3e67f61fa53590251643045fa", + "reference": "801ca5060ef44fe3e67f61fa53590251643045fa", "shasum": "" }, "require": { @@ -4178,11 +4115,6 @@ "symfony/dependency-injection": "For using as a service from the container" }, "type": "symfony-bundle", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bundle\\DebugBundle\\": "" @@ -4207,24 +4139,37 @@ ], "description": "Symfony DebugBundle", "homepage": "https://symfony.com", - "time": "2020-01-01T11:03:25+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/debug-pack", - "version": "v1.0.8", + "version": "v1.0.9", "source": { "type": "git", "url": "https://github.com/symfony/debug-pack.git", - "reference": "7310a66f9f81c9f292ff9089f0b0062386cb83fb" + "reference": "cfd5093378e9cafe500f05c777a22fe8a64a9342" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug-pack/zipball/7310a66f9f81c9f292ff9089f0b0062386cb83fb", - "reference": "7310a66f9f81c9f292ff9089f0b0062386cb83fb", + "url": "https://api.github.com/repos/symfony/debug-pack/zipball/cfd5093378e9cafe500f05c777a22fe8a64a9342", + "reference": "cfd5093378e9cafe500f05c777a22fe8a64a9342", "shasum": "" }, "require": { - "php": "^7.0", "symfony/debug-bundle": "*", "symfony/monolog-bundle": "^3.0", "symfony/profiler-pack": "*", @@ -4250,20 +4195,20 @@ "type": "tidelift" } ], - "time": "2020-04-07T10:08:51+00:00" + "time": "2020-10-19T08:51:51+00:00" }, { "name": "symfony/dependency-injection", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac" + "reference": "51d2a2708c6ceadad84393f8581df1dcf9e5e84b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac", - "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/51d2a2708c6ceadad84393f8581df1dcf9e5e84b", + "reference": "51d2a2708c6ceadad84393f8581df1dcf9e5e84b", "shasum": "" }, "require": { @@ -4292,11 +4237,6 @@ "symfony/yaml": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\DependencyInjection\\": "" @@ -4335,20 +4275,84 @@ "type": "tidelift" } ], - "time": "2020-05-30T21:06:01+00:00" + "time": "2020-10-24T10:57:07+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v2.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627", + "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-03-23T23:28:01+00:00" }, { "name": "symfony/doctrine-bridge", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/doctrine-bridge.git", - "reference": "3617ccfc6dda3c782ce3044fb085e626dd72505b" + "reference": "19a2e7616c8b2e478890f2fb48e6d51cf4600a91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/3617ccfc6dda3c782ce3044fb085e626dd72505b", - "reference": "3617ccfc6dda3c782ce3044fb085e626dd72505b", + "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/19a2e7616c8b2e478890f2fb48e6d51cf4600a91", + "reference": "19a2e7616c8b2e478890f2fb48e6d51cf4600a91", "shasum": "" }, "require": { @@ -4363,12 +4367,12 @@ }, "require-dev": { "doctrine/annotations": "~1.7", - "doctrine/data-fixtures": "1.0.*", + "doctrine/data-fixtures": "^1.1", "doctrine/dbal": "~2.4", "doctrine/orm": "^2.4.5", "symfony/dependency-injection": "~3.4|~4.0", "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/form": "^3.3.10|~4.0", + "symfony/form": "^3.4.43|~4.4.11", "symfony/http-kernel": "~2.8|~3.0|~4.0", "symfony/property-access": "~2.8|~3.0|~4.0", "symfony/property-info": "~2.8|3.0|~4.0", @@ -4387,11 +4391,6 @@ "symfony/validator": "" }, "type": "symfony-bridge", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bridge\\Doctrine\\": "" @@ -4430,20 +4429,20 @@ "type": "tidelift" } ], - "time": "2020-06-09T14:07:03+00:00" + "time": "2020-11-09T17:46:57+00:00" }, { "name": "symfony/dom-crawler", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "c3086a58a66b2a519c0b7ac80539a3727609ea9c" + "reference": "ef97bcfbae5b384b4ca6c8d57b617722f15241a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c3086a58a66b2a519c0b7ac80539a3727609ea9c", - "reference": "c3086a58a66b2a519c0b7ac80539a3727609ea9c", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ef97bcfbae5b384b4ca6c8d57b617722f15241a6", + "reference": "ef97bcfbae5b384b4ca6c8d57b617722f15241a6", "shasum": "" }, "require": { @@ -4458,11 +4457,6 @@ "symfony/css-selector": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\DomCrawler\\": "" @@ -4501,20 +4495,20 @@ "type": "tidelift" } ], - "time": "2020-05-22T19:35:43+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/dotenv", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/dotenv.git", - "reference": "22577db70b4fbd2e93d6b331ce2ae5f3d49f20e6" + "reference": "1022723ac4f56b001d99691d96c6025dbf1404f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dotenv/zipball/22577db70b4fbd2e93d6b331ce2ae5f3d49f20e6", - "reference": "22577db70b4fbd2e93d6b331ce2ae5f3d49f20e6", + "url": "https://api.github.com/repos/symfony/dotenv/zipball/1022723ac4f56b001d99691d96c6025dbf1404f1", + "reference": "1022723ac4f56b001d99691d96c6025dbf1404f1", "shasum": "" }, "require": { @@ -4524,11 +4518,6 @@ "symfony/process": "^3.4.2|^4.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Dotenv\\": "" @@ -4558,20 +4547,34 @@ "env", "environment" ], - "time": "2020-01-07T20:29:45+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081" + "reference": "31fde73757b6bad247c54597beef974919ec6860" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081", - "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/31fde73757b6bad247c54597beef974919ec6860", + "reference": "31fde73757b6bad247c54597beef974919ec6860", "shasum": "" }, "require": { @@ -4583,6 +4586,7 @@ "require-dev": { "psr/log": "~1.0", "symfony/config": "~2.8|~3.0|~4.0", + "symfony/debug": "~3.4|~4.4", "symfony/dependency-injection": "~3.3|~4.0", "symfony/expression-language": "~2.8|~3.0|~4.0", "symfony/stopwatch": "~2.8|~3.0|~4.0" @@ -4592,11 +4596,6 @@ "symfony/http-kernel": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" @@ -4635,20 +4634,20 @@ "type": "tidelift" } ], - "time": "2020-05-05T15:06:23+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/expression-language", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/expression-language.git", - "reference": "206165f46c660f3231df0afbdeec6a62f81afc59" + "reference": "de38e66398fca1fcb9c48e80279910e6889cb28f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/expression-language/zipball/206165f46c660f3231df0afbdeec6a62f81afc59", - "reference": "206165f46c660f3231df0afbdeec6a62f81afc59", + "url": "https://api.github.com/repos/symfony/expression-language/zipball/de38e66398fca1fcb9c48e80279910e6889cb28f", + "reference": "de38e66398fca1fcb9c48e80279910e6889cb28f", "shasum": "" }, "require": { @@ -4657,11 +4656,6 @@ "symfony/polyfill-php70": "~1.6" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\ExpressionLanguage\\": "" @@ -4700,20 +4694,20 @@ "type": "tidelift" } ], - "time": "2020-03-16T08:31:04+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/filesystem", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "0f625d0cb1e59c8c4ba61abb170125175218ff10" + "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/0f625d0cb1e59c8c4ba61abb170125175218ff10", - "reference": "0f625d0cb1e59c8c4ba61abb170125175218ff10", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/e58d7841cddfed6e846829040dca2cca0ebbbbb3", + "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3", "shasum": "" }, "require": { @@ -4721,11 +4715,6 @@ "symfony/polyfill-ctype": "~1.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Filesystem\\": "" @@ -4764,31 +4753,26 @@ "type": "tidelift" } ], - "time": "2020-05-30T17:48:24+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/finder", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200" + "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/5ec813ccafa8164ef21757e8c725d3a57da59200", - "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200", + "url": "https://api.github.com/repos/symfony/finder/zipball/b6b6ad3db3edb1b4b1c1896b1975fb684994de6e", + "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Finder\\": "" @@ -4827,20 +4811,20 @@ "type": "tidelift" } ], - "time": "2020-02-14T07:34:21+00:00" + "time": "2020-11-16T17:02:08+00:00" }, { "name": "symfony/flex", - "version": "v1.8.4", + "version": "v1.13.3", "source": { "type": "git", "url": "https://github.com/symfony/flex.git", - "reference": "7df5a72c7664baab629ec33de7890e9e3996b51b" + "reference": "2597d0dda8042c43eed44a9cd07236b897e427d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/flex/zipball/7df5a72c7664baab629ec33de7890e9e3996b51b", - "reference": "7df5a72c7664baab629ec33de7890e9e3996b51b", + "url": "https://api.github.com/repos/symfony/flex/zipball/2597d0dda8042c43eed44a9cd07236b897e427d7", + "reference": "2597d0dda8042c43eed44a9cd07236b897e427d7", "shasum": "" }, "require": { @@ -4850,13 +4834,14 @@ "require-dev": { "composer/composer": "^1.0.2|^2.0", "symfony/dotenv": "^4.4|^5.0", + "symfony/filesystem": "^4.4|^5.0", "symfony/phpunit-bridge": "^4.4|^5.0", "symfony/process": "^3.4|^4.4|^5.0" }, "type": "composer-plugin", "extra": { "branch-alias": { - "dev-master": "1.8-dev" + "dev-main": "1.13-dev" }, "class": "Symfony\\Flex\\Flex" }, @@ -4890,20 +4875,20 @@ "type": "tidelift" } ], - "time": "2020-06-16T23:10:41+00:00" + "time": "2021-05-19T07:19:15+00:00" }, { "name": "symfony/form", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/form.git", - "reference": "b681a33764f39d3385850bc856d40f438a9cca59" + "reference": "62e841f089ec485e5ee425308b56b6ce2b5d11fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/form/zipball/b681a33764f39d3385850bc856d40f438a9cca59", - "reference": "b681a33764f39d3385850bc856d40f438a9cca59", + "url": "https://api.github.com/repos/symfony/form/zipball/62e841f089ec485e5ee425308b56b6ce2b5d11fa", + "reference": "62e841f089ec485e5ee425308b56b6ce2b5d11fa", "shasum": "" }, "require": { @@ -4933,7 +4918,7 @@ "symfony/http-kernel": "^3.3.5|~4.0", "symfony/security-csrf": "^2.8.31|^3.3.13|~4.0", "symfony/translation": "~2.8|~3.0|~4.0", - "symfony/validator": "^3.4.3|^4.0.3", + "symfony/validator": "^3.4.44|^4.0.3", "symfony/var-dumper": "~3.3.11|~3.4|~4.0" }, "suggest": { @@ -4943,11 +4928,6 @@ "symfony/validator": "For form validation." }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Form\\": "" @@ -4986,20 +4966,20 @@ "type": "tidelift" } ], - "time": "2020-06-12T07:11:17+00:00" + "time": "2020-10-28T05:23:51+00:00" }, { "name": "symfony/framework-bundle", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/framework-bundle.git", - "reference": "c60957bbff5735490efe30399c5795a5d2415e98" + "reference": "6c95e747b75ddd2af61152ce93bf87299d15710e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/c60957bbff5735490efe30399c5795a5d2415e98", - "reference": "c60957bbff5735490efe30399c5795a5d2415e98", + "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/6c95e747b75ddd2af61152ce93bf87299d15710e", + "reference": "6c95e747b75ddd2af61152ce93bf87299d15710e", "shasum": "" }, "require": { @@ -5014,7 +4994,7 @@ "symfony/filesystem": "~2.8|~3.0|~4.0", "symfony/finder": "~2.8|~3.0|~4.0", "symfony/http-foundation": "^3.4.38|^4.3", - "symfony/http-kernel": "^3.4.31|^4.3.4", + "symfony/http-kernel": "^3.4.44|^4.3.4", "symfony/polyfill-mbstring": "~1.0", "symfony/routing": "^3.4.5|^4.0.5" }, @@ -5072,11 +5052,6 @@ "symfony/yaml": "For using the debug:config and lint:yaml commands" }, "type": "symfony-bundle", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bundle\\FrameworkBundle\\": "" @@ -5115,20 +5090,20 @@ "type": "tidelift" } ], - "time": "2020-06-04T10:40:01+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/http-foundation", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359" + "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359", - "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b9885fcce6fe494201da4f70a9309770e9d13dc8", + "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8", "shasum": "" }, "require": { @@ -5140,11 +5115,6 @@ "symfony/expression-language": "~2.8|~3.0|~4.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\HttpFoundation\\": "" @@ -5183,20 +5153,20 @@ "type": "tidelift" } ], - "time": "2020-05-16T13:15:54+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/http-kernel", - "version": "v3.4.42", + "version": "v3.4.49", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "6464a0475496040fe1f48428488d53e485be77a0" + "reference": "5aa72405f5bd5583c36ed6e756acb17d3f98ac40" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6464a0475496040fe1f48428488d53e485be77a0", - "reference": "6464a0475496040fe1f48428488d53e485be77a0", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5aa72405f5bd5583c36ed6e756acb17d3f98ac40", + "reference": "5aa72405f5bd5583c36ed6e756acb17d3f98ac40", "shasum": "" }, "require": { @@ -5244,11 +5214,6 @@ "symfony/var-dumper": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\HttpKernel\\": "" @@ -5287,20 +5252,20 @@ "type": "tidelift" } ], - "time": "2020-06-12T10:57:07+00:00" + "time": "2021-05-19T12:06:59+00:00" }, { "name": "symfony/inflector", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/inflector.git", - "reference": "540e39d07cff9824eaf4fee2c9f489304e54d0c2" + "reference": "b557c5d061b72cadf454dd87cd1308d0710c8021" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/inflector/zipball/540e39d07cff9824eaf4fee2c9f489304e54d0c2", - "reference": "540e39d07cff9824eaf4fee2c9f489304e54d0c2", + "url": "https://api.github.com/repos/symfony/inflector/zipball/b557c5d061b72cadf454dd87cd1308d0710c8021", + "reference": "b557c5d061b72cadf454dd87cd1308d0710c8021", "shasum": "" }, "require": { @@ -5308,11 +5273,6 @@ "symfony/polyfill-ctype": "~1.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Inflector\\": "" @@ -5359,20 +5319,21 @@ "type": "tidelift" } ], - "time": "2020-05-04T07:08:14+00:00" + "abandoned": "use `EnglishInflector` from the String component instead", + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/intl", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/intl.git", - "reference": "41ff65c5afbf3f214e6eda687d2ca79b26c255b4" + "reference": "c0e22a40039977f11dc4de03a853ab9450c2b4cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/intl/zipball/41ff65c5afbf3f214e6eda687d2ca79b26c255b4", - "reference": "41ff65c5afbf3f214e6eda687d2ca79b26c255b4", + "url": "https://api.github.com/repos/symfony/intl/zipball/c0e22a40039977f11dc4de03a853ab9450c2b4cd", + "reference": "c0e22a40039977f11dc4de03a853ab9450c2b4cd", "shasum": "" }, "require": { @@ -5386,11 +5347,6 @@ "ext-intl": "to use the component with locales other than \"en\"" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Intl\\": "" @@ -5448,35 +5404,37 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:58:05+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/maker-bundle", - "version": "v1.19.0", + "version": "v1.29.2", "source": { "type": "git", "url": "https://github.com/symfony/maker-bundle.git", - "reference": "bea8c3c959e48a2c952cc7c4f4f32964be8b8874" + "reference": "94be78c8ded1cbaac80f5af46c6bce0b3a570b22" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/bea8c3c959e48a2c952cc7c4f4f32964be8b8874", - "reference": "bea8c3c959e48a2c952cc7c4f4f32964be8b8874", + "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/94be78c8ded1cbaac80f5af46c6bce0b3a570b22", + "reference": "94be78c8ded1cbaac80f5af46c6bce0b3a570b22", "shasum": "" }, "require": { - "doctrine/inflector": "^1.2", + "doctrine/inflector": "^1.2|^2.0", "nikic/php-parser": "^4.0", - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/config": "^3.4|^4.0|^5.0", "symfony/console": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/deprecation-contracts": "^2.2", "symfony/filesystem": "^3.4|^4.0|^5.0", "symfony/finder": "^3.4|^4.0|^5.0", "symfony/framework-bundle": "^3.4|^4.0|^5.0", "symfony/http-kernel": "^3.4|^4.0|^5.0" }, "require-dev": { + "composer/semver": "^3.0@dev", "doctrine/doctrine-bundle": "^1.8|^2.0", "doctrine/orm": "^2.3", "friendsofphp/php-cs-fixer": "^2.8", @@ -5490,7 +5448,7 @@ "type": "symfony-bundle", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "1.0-dev" } }, "autoload": { @@ -5530,20 +5488,20 @@ "type": "tidelift" } ], - "time": "2020-05-29T14:47:30+00:00" + "time": "2021-05-18T16:28:37+00:00" }, { "name": "symfony/monolog-bridge", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/monolog-bridge.git", - "reference": "a176ee7ac7e6ccc8ff388e6e606f25a9571f6989" + "reference": "93915f0d981bc166dfa475698124435327f6ee63" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/a176ee7ac7e6ccc8ff388e6e606f25a9571f6989", - "reference": "a176ee7ac7e6ccc8ff388e6e606f25a9571f6989", + "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/93915f0d981bc166dfa475698124435327f6ee63", + "reference": "93915f0d981bc166dfa475698124435327f6ee63", "shasum": "" }, "require": { @@ -5568,11 +5526,6 @@ "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler." }, "type": "symfony-bridge", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bridge\\Monolog\\": "" @@ -5611,20 +5564,20 @@ "type": "tidelift" } ], - "time": "2020-03-15T09:38:08+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/monolog-bundle", - "version": "v3.5.0", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/monolog-bundle.git", - "reference": "dd80460fcfe1fa2050a7103ad818e9d0686ce6fd" + "reference": "e495f5c7e4e672ffef4357d4a4d85f010802f940" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/dd80460fcfe1fa2050a7103ad818e9d0686ce6fd", - "reference": "dd80460fcfe1fa2050a7103ad818e9d0686ce6fd", + "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/e495f5c7e4e672ffef4357d4a4d85f010802f940", + "reference": "e495f5c7e4e672ffef4357d4a4d85f010802f940", "shasum": "" }, "require": { @@ -5637,7 +5590,7 @@ }, "require-dev": { "symfony/console": "~3.4 || ~4.0 || ^5.0", - "symfony/phpunit-bridge": "^3.4.19 || ^4.0 || ^5.0", + "symfony/phpunit-bridge": "^4.4 || ^5.0", "symfony/yaml": "~3.4 || ~4.0 || ^5.0" }, "type": "symfony-bundle", @@ -5664,41 +5617,50 @@ "email": "fabien@symfony.com" }, { - "name": "Symfony Community", - "homepage": "http://symfony.com/contributors" + "name": "Symfony Community", + "homepage": "http://symfony.com/contributors" + } + ], + "description": "Symfony MonologBundle", + "homepage": "http://symfony.com", + "keywords": [ + "log", + "logging" + ], + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "description": "Symfony MonologBundle", - "homepage": "http://symfony.com", - "keywords": [ - "log", - "logging" - ], - "time": "2019-11-13T13:11:14+00:00" + "time": "2020-10-06T15:12:11+00:00" }, { "name": "symfony/options-resolver", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "3b9fe6db7fe3694307d182dd73983584af77d5fd" + "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/3b9fe6db7fe3694307d182dd73983584af77d5fd", - "reference": "3b9fe6db7fe3694307d182dd73983584af77d5fd", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744", + "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\OptionsResolver\\": "" @@ -5742,7 +5704,7 @@ "type": "tidelift" } ], - "time": "2020-05-21T13:02:25+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/orm-pack", @@ -5773,25 +5735,25 @@ }, { "name": "symfony/polyfill-apcu", - "version": "v1.17.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-apcu.git", - "reference": "a96dc28442814ae56199f57b72a937b5a822150c" + "reference": "80f7fb64c5b64ebcba76f40215e63808a2062a18" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/a96dc28442814ae56199f57b72a937b5a822150c", - "reference": "a96dc28442814ae56199f57b72a937b5a822150c", + "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/80f7fb64c5b64ebcba76f40215e63808a2062a18", + "reference": "80f7fb64c5b64ebcba76f40215e63808a2062a18", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5843,24 +5805,24 @@ "type": "tidelift" } ], - "time": "2020-06-17T19:13:43+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.17.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d" + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d", - "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-ctype": "For best performance" @@ -5868,7 +5830,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5919,24 +5881,24 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.17.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "ba6c9c18db36235b859cc29b8372d1c01298c035" + "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/ba6c9c18db36235b859cc29b8372d1c01298c035", - "reference": "ba6c9c18db36235b859cc29b8372d1c01298c035", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933", + "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-iconv": "For best performance" @@ -5944,7 +5906,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5996,33 +5958,32 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { "name": "symfony/polyfill-intl-icu", - "version": "v1.17.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "7b5e03aeb88cc8b4b2b136e34b0fc0830e86cd4d" + "reference": "4a80a521d6176870b6445cfb469c130f9cae1dda" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/7b5e03aeb88cc8b4b2b136e34b0fc0830e86cd4d", - "reference": "7b5e03aeb88cc8b4b2b136e34b0fc0830e86cd4d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/4a80a521d6176870b6445cfb469c130f9cae1dda", + "reference": "4a80a521d6176870b6445cfb469c130f9cae1dda", "shasum": "" }, "require": { - "php": ">=5.3.3", - "symfony/intl": "~2.3|~3.0|~4.0|~5.0" + "php": ">=7.1" }, "suggest": { - "ext-intl": "For best performance" + "ext-intl": "For best performance and support of other locales than \"en\"" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6032,6 +5993,15 @@ "autoload": { "files": [ "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Icu\\": "" + }, + "classmap": [ + "Resources/stubs" + ], + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -6072,25 +6042,25 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-05-24T10:04:56+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.17.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "a57f8161502549a742a63c09f0a604997bf47027" + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a57f8161502549a742a63c09f0a604997bf47027", - "reference": "a57f8161502549a742a63c09f0a604997bf47027", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65", + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65", "shasum": "" }, "require": { - "php": ">=5.3.3", - "symfony/polyfill-mbstring": "^1.3", + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", "symfony/polyfill-php72": "^1.10" }, "suggest": { @@ -6099,7 +6069,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6123,6 +6093,10 @@ "name": "Laurent Bassin", "email": "laurent@bassin.info" }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" @@ -6152,32 +6126,32 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.17.1", + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.23.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "7110338d81ce1cbc3e273136e4574663627037a7" + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7110338d81ce1cbc3e273136e4574663627037a7", - "reference": "7110338d81ce1cbc3e273136e4574663627037a7", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { - "ext-mbstring": "For best performance" + "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6186,10 +6160,13 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" }, "files": [ "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -6206,11 +6183,12 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Mbstring extension", + "description": "Symfony polyfill for intl's Normalizer class and related functions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "mbstring", + "intl", + "normalizer", "polyfill", "portable", "shim" @@ -6229,30 +6207,32 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { - "name": "symfony/polyfill-php56", - "version": "v1.17.1", + "name": "symfony/polyfill-mbstring", + "version": "v1.23.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php56.git", - "reference": "a25861bb3c79b0ec2da9ede51de2ea573818b943" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/a25861bb3c79b0ec2da9ede51de2ea573818b943", - "reference": "a25861bb3c79b0ec2da9ede51de2ea573818b943", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1", + "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1", "shasum": "" }, "require": { - "php": ">=5.3.3", - "symfony/polyfill-util": "~1.0" + "php": ">=7.1" + }, + "suggest": { + "ext-mbstring": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6261,7 +6241,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Php56\\": "" + "Symfony\\Polyfill\\Mbstring\\": "" }, "files": [ "bootstrap.php" @@ -6281,10 +6261,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", + "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", "keywords": [ "compatibility", + "mbstring", "polyfill", "portable", "shim" @@ -6303,47 +6284,35 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { - "name": "symfony/polyfill-php70", - "version": "v1.17.1", + "name": "symfony/polyfill-php56", + "version": "v1.20.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php70.git", - "reference": "471b096aede7025bace8eb356b9ac801aaba7e2d" + "url": "https://github.com/symfony/polyfill-php56.git", + "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/471b096aede7025bace8eb356b9ac801aaba7e2d", - "reference": "471b096aede7025bace8eb356b9ac801aaba7e2d", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675", + "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675", "shasum": "" }, "require": { - "paragonie/random_compat": "~1.0|~2.0|~9.99", - "php": ">=5.3.3" + "php": ">=7.1" }, - "type": "library", + "type": "metapackage", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.20-dev" }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php70\\": "" - }, - "files": [ - "bootstrap.php" - ], - "classmap": [ - "Resources/stubs" - ] - }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" @@ -6358,7 +6327,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -6380,38 +6349,34 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2020-10-23T14:02:19+00:00" }, { - "name": "symfony/polyfill-php72", - "version": "v1.17.0", + "name": "symfony/polyfill-php70", + "version": "v1.20.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "f048e612a3905f34931127360bdd2def19a5e582" + "url": "https://github.com/symfony/polyfill-php70.git", + "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582", - "reference": "f048e612a3905f34931127360bdd2def19a5e582", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644", + "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, - "type": "library", + "type": "metapackage", "extra": { "branch-alias": { - "dev-master": "1.17-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php72\\": "" + "dev-main": "1.20-dev" }, - "files": [ - "bootstrap.php" - ] + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -6427,7 +6392,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -6449,29 +6414,29 @@ "type": "tidelift" } ], - "time": "2020-05-12T16:47:27+00:00" + "time": "2020-10-23T14:02:19+00:00" }, { - "name": "symfony/polyfill-util", - "version": "v1.17.1", + "name": "symfony/polyfill-php72", + "version": "v1.23.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-util.git", - "reference": "6dd644eda43cd2f3daa883d728d8ab4120a05af6" + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/6dd644eda43cd2f3daa883d728d8ab4120a05af6", - "reference": "6dd644eda43cd2f3daa883d728d8ab4120a05af6", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6480,8 +6445,11 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Util\\": "" - } + "Symfony\\Polyfill\\Php72\\": "" + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -6497,12 +6465,12 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony utilities for portability of PHP codes", + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ - "compat", "compatibility", "polyfill", + "portable", "shim" ], "funding": [ @@ -6519,31 +6487,26 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2021-05-27T09:17:38+00:00" }, { "name": "symfony/process", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21" + "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21", - "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21", + "url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca", + "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Process\\": "" @@ -6582,24 +6545,23 @@ "type": "tidelift" } ], - "time": "2020-05-23T17:05:51+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/profiler-pack", - "version": "v1.0.4", + "version": "v1.0.5", "source": { "type": "git", "url": "https://github.com/symfony/profiler-pack.git", - "reference": "99c4370632c2a59bb0444852f92140074ef02209" + "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/99c4370632c2a59bb0444852f92140074ef02209", - "reference": "99c4370632c2a59bb0444852f92140074ef02209", + "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/29ec66471082b4eb068db11eb4f0a48c277653f7", + "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7", "shasum": "" }, "require": { - "php": "^7.0", "symfony/stopwatch": "*", "symfony/twig-bundle": "*", "symfony/web-profiler-bundle": "*" @@ -6610,20 +6572,34 @@ "MIT" ], "description": "A pack for the Symfony web profiler", - "time": "2018-12-10T12:11:44+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-08-12T06:50:46+00:00" }, { "name": "symfony/property-access", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/property-access.git", - "reference": "e1a6c91c0007e45bc1beba929c76548ca9fe8a85" + "reference": "f1dc91d0c987f3ba95be1d7874527d11477b25ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-access/zipball/e1a6c91c0007e45bc1beba929c76548ca9fe8a85", - "reference": "e1a6c91c0007e45bc1beba929c76548ca9fe8a85", + "url": "https://api.github.com/repos/symfony/property-access/zipball/f1dc91d0c987f3ba95be1d7874527d11477b25ff", + "reference": "f1dc91d0c987f3ba95be1d7874527d11477b25ff", "shasum": "" }, "require": { @@ -6638,11 +6614,6 @@ "psr/cache-implementation": "To cache access methods." }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\PropertyAccess\\": "" @@ -6692,23 +6663,24 @@ "type": "tidelift" } ], - "time": "2020-05-29T00:04:36+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/proxy-manager-bridge", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/proxy-manager-bridge.git", - "reference": "8807231226867bc74467671dba78d9a924a1181a" + "reference": "25351bb4d5a60cfeddbaf6cf6faebd3a700e2ff4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/8807231226867bc74467671dba78d9a924a1181a", - "reference": "8807231226867bc74467671dba78d9a924a1181a", + "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/25351bb4d5a60cfeddbaf6cf6faebd3a700e2ff4", + "reference": "25351bb4d5a60cfeddbaf6cf6faebd3a700e2ff4", "shasum": "" }, "require": { + "composer/package-versions-deprecated": "^1.8", "ocramius/proxy-manager": "~0.4|~1.0|~2.0", "php": "^5.5.9|>=7.0.8", "symfony/dependency-injection": "~3.4|~4.0" @@ -6717,11 +6689,6 @@ "symfony/config": "~2.8|~3.0|~4.0" }, "type": "symfony-bridge", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bridge\\ProxyManager\\": "" @@ -6760,20 +6727,20 @@ "type": "tidelift" } ], - "time": "2020-03-16T08:31:04+00:00" + "time": "2020-10-27T11:56:04+00:00" }, { "name": "symfony/routing", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f" + "reference": "3e522ac69cadffd8131cc2b22157fa7662331a6c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f", - "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f", + "url": "https://api.github.com/repos/symfony/routing/zipball/3e522ac69cadffd8131cc2b22157fa7662331a6c", + "reference": "3e522ac69cadffd8131cc2b22157fa7662331a6c", "shasum": "" }, "require": { @@ -6801,11 +6768,6 @@ "symfony/yaml": "For using the YAML loader" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Routing\\": "" @@ -6850,20 +6812,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T19:50:06+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/security", - "version": "v3.4.42", + "version": "v3.4.49", "source": { "type": "git", "url": "https://github.com/symfony/security.git", - "reference": "078f2ae43783fd3ba7cad6d5355bdcbd84074b43" + "reference": "ac1af40e3e0a183f80f0ff8c3d22b18bfb74dbb3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/security/zipball/078f2ae43783fd3ba7cad6d5355bdcbd84074b43", - "reference": "078f2ae43783fd3ba7cad6d5355bdcbd84074b43", + "url": "https://api.github.com/repos/symfony/security/zipball/ac1af40e3e0a183f80f0ff8c3d22b18bfb74dbb3", + "reference": "ac1af40e3e0a183f80f0ff8c3d22b18bfb74dbb3", "shasum": "" }, "require": { @@ -6901,11 +6863,6 @@ "symfony/validator": "For using the user password constraint" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Security\\": "" @@ -6947,20 +6904,20 @@ "type": "tidelift" } ], - "time": "2020-05-26T15:30:38+00:00" + "time": "2021-05-19T12:03:21+00:00" }, { "name": "symfony/security-bundle", - "version": "v3.4.42", + "version": "v3.4.48", "source": { "type": "git", "url": "https://github.com/symfony/security-bundle.git", - "reference": "5c82cbbc01cb6824f28c7bec6bd75c994e8aed63" + "reference": "84355eff4dd84293aa872402355479ac8cf888ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/security-bundle/zipball/5c82cbbc01cb6824f28c7bec6bd75c994e8aed63", - "reference": "5c82cbbc01cb6824f28c7bec6bd75c994e8aed63", + "url": "https://api.github.com/repos/symfony/security-bundle/zipball/84355eff4dd84293aa872402355479ac8cf888ee", + "reference": "84355eff4dd84293aa872402355479ac8cf888ee", "shasum": "" }, "require": { @@ -7004,11 +6961,6 @@ "symfony/security-acl": "For using the ACL functionality of this bundle" }, "type": "symfony-bundle", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bundle\\SecurityBundle\\": "" @@ -7047,20 +6999,20 @@ "type": "tidelift" } ], - "time": "2020-05-23T08:20:35+00:00" + "time": "2021-01-29T09:39:14+00:00" }, { "name": "symfony/serializer", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f" + "reference": "6d69ccc1dcfb64c1e9c9444588643e98718d1849" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f", - "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f", + "url": "https://api.github.com/repos/symfony/serializer/zipball/6d69ccc1dcfb64c1e9c9444588643e98718d1849", + "reference": "6d69ccc1dcfb64c1e9c9444588643e98718d1849", "shasum": "" }, "require": { @@ -7097,11 +7049,6 @@ "symfony/yaml": "For using the default YAML mapping loader." }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Serializer\\": "" @@ -7140,31 +7087,26 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:58:05+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/stopwatch", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "a7a98f40dcc382a332c3729a6d04b298ffbb8f1f" + "reference": "298b81faad4ce60e94466226b2abbb8c9bca7462" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/a7a98f40dcc382a332c3729a6d04b298ffbb8f1f", - "reference": "a7a98f40dcc382a332c3729a6d04b298ffbb8f1f", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/298b81faad4ce60e94466226b2abbb8c9bca7462", + "reference": "298b81faad4ce60e94466226b2abbb8c9bca7462", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Stopwatch\\": "" @@ -7203,7 +7145,7 @@ "type": "tidelift" } ], - "time": "2020-03-15T09:38:08+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/swiftmailer-bundle", @@ -7272,16 +7214,16 @@ }, { "name": "symfony/templating", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/templating.git", - "reference": "46eb3f66e3f7bd65b06ee43303a60c5b78902bba" + "reference": "84ca10f95aaff084ae2bcfc5c21ae551af173d5a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/templating/zipball/46eb3f66e3f7bd65b06ee43303a60c5b78902bba", - "reference": "46eb3f66e3f7bd65b06ee43303a60c5b78902bba", + "url": "https://api.github.com/repos/symfony/templating/zipball/84ca10f95aaff084ae2bcfc5c21ae551af173d5a", + "reference": "84ca10f95aaff084ae2bcfc5c21ae551af173d5a", "shasum": "" }, "require": { @@ -7295,11 +7237,6 @@ "psr/log-implementation": "For using debug logging in loaders" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Templating\\": "" @@ -7338,20 +7275,20 @@ "type": "tidelift" } ], - "time": "2020-03-15T09:38:08+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/translation", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f" + "reference": "be83ee6c065cb32becdb306ba61160d598b1ce88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f", - "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f", + "url": "https://api.github.com/repos/symfony/translation/zipball/be83ee6c065cb32becdb306ba61160d598b1ce88", + "reference": "be83ee6c065cb32becdb306ba61160d598b1ce88", "shasum": "" }, "require": { @@ -7379,11 +7316,6 @@ "symfony/yaml": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Translation\\": "" @@ -7422,20 +7354,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:58:05+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/twig-bridge", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/twig-bridge.git", - "reference": "742d91e175c84fc896c4a720bfc40ce0d7b9ff67" + "reference": "090d19d6f1ea5b9e1d79f372785aa5e5c9cd4042" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/742d91e175c84fc896c4a720bfc40ce0d7b9ff67", - "reference": "742d91e175c84fc896c4a720bfc40ce0d7b9ff67", + "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/090d19d6f1ea5b9e1d79f372785aa5e5c9cd4042", + "reference": "090d19d6f1ea5b9e1d79f372785aa5e5c9cd4042", "shasum": "" }, "require": { @@ -7484,11 +7416,6 @@ "symfony/yaml": "For using the YamlExtension" }, "type": "symfony-bridge", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bridge\\Twig\\": "" @@ -7527,20 +7454,20 @@ "type": "tidelift" } ], - "time": "2020-03-16T08:31:04+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/twig-bundle", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/twig-bundle.git", - "reference": "8589308d062498e68283e6da6af25bcbe10ca9c6" + "reference": "977b3096e2df96bc8a8d2329e83466cfc30c373d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/8589308d062498e68283e6da6af25bcbe10ca9c6", - "reference": "8589308d062498e68283e6da6af25bcbe10ca9c6", + "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/977b3096e2df96bc8a8d2329e83466cfc30c373d", + "reference": "977b3096e2df96bc8a8d2329e83466cfc30c373d", "shasum": "" }, "require": { @@ -7573,11 +7500,6 @@ "symfony/yaml": "~2.8|~3.0|~4.0" }, "type": "symfony-bundle", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bundle\\TwigBundle\\": "" @@ -7616,20 +7538,20 @@ "type": "tidelift" } ], - "time": "2020-03-16T15:51:59+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/validator", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "5fb88120a11a75e17b602103a893dd8b27804529" + "reference": "d25ceea5c99022aecf37adf157c76c31fc5dcbed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529", - "reference": "5fb88120a11a75e17b602103a893dd8b27804529", + "url": "https://api.github.com/repos/symfony/validator/zipball/d25ceea5c99022aecf37adf157c76c31fc5dcbed", + "reference": "d25ceea5c99022aecf37adf157c76c31fc5dcbed", "shasum": "" }, "require": { @@ -7673,11 +7595,6 @@ "symfony/yaml": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Validator\\": "" @@ -7716,20 +7633,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:43:38+00:00" + "time": "2020-10-28T05:23:51+00:00" }, { "name": "symfony/var-dumper", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "7a947d1b5e81583759a3a927f1761b95bddc5f1b" + "reference": "0719f6cf4633a38b2c1585140998579ce23b4b7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7a947d1b5e81583759a3a927f1761b95bddc5f1b", - "reference": "7a947d1b5e81583759a3a927f1761b95bddc5f1b", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0719f6cf4633a38b2c1585140998579ce23b4b7d", + "reference": "0719f6cf4633a38b2c1585140998579ce23b4b7d", "shasum": "" }, "require": { @@ -7749,11 +7666,6 @@ "ext-symfony_debug": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "files": [ "Resources/functions/dump.php" @@ -7799,20 +7711,20 @@ "type": "tidelift" } ], - "time": "2020-05-23T12:00:17+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/web-profiler-bundle", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/web-profiler-bundle.git", - "reference": "41db5bcf33dce9b15bb1cdea3888cc392bddb3f1" + "reference": "ccb83b3a508f4a683e44f571f127beebdc315ff9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/41db5bcf33dce9b15bb1cdea3888cc392bddb3f1", - "reference": "41db5bcf33dce9b15bb1cdea3888cc392bddb3f1", + "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/ccb83b3a508f4a683e44f571f127beebdc315ff9", + "reference": "ccb83b3a508f4a683e44f571f127beebdc315ff9", "shasum": "" }, "require": { @@ -7828,6 +7740,7 @@ "conflict": { "symfony/dependency-injection": "<3.4", "symfony/event-dispatcher": "<3.3.1", + "symfony/framework-bundle": ">4.3.99", "symfony/var-dumper": "<3.3" }, "require-dev": { @@ -7838,11 +7751,6 @@ "symfony/stopwatch": "~3.4|~4.0" }, "type": "symfony-bundle", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bundle\\WebProfilerBundle\\": "" @@ -7881,20 +7789,20 @@ "type": "tidelift" } ], - "time": "2020-06-09T08:25:18+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/web-server-bundle", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/web-server-bundle.git", - "reference": "ce2e82697fc21a6997a4d7a26418b045c24bfd0f" + "reference": "19c719f230d29e772a3f769a23a80c88179e8112" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/web-server-bundle/zipball/ce2e82697fc21a6997a4d7a26418b045c24bfd0f", - "reference": "ce2e82697fc21a6997a4d7a26418b045c24bfd0f", + "url": "https://api.github.com/repos/symfony/web-server-bundle/zipball/19c719f230d29e772a3f769a23a80c88179e8112", + "reference": "19c719f230d29e772a3f769a23a80c88179e8112", "shasum": "" }, "require": { @@ -7911,11 +7819,6 @@ "symfony/monolog-bridge": "For using the log server." }, "type": "symfony-bundle", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Bundle\\WebServerBundle\\": "" @@ -7954,20 +7857,20 @@ "type": "tidelift" } ], - "time": "2020-05-30T17:48:24+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/workflow", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/workflow.git", - "reference": "b46e9aea78ef632712d1eb184491452865b2c2c9" + "reference": "fdd7bd981dd41a9ae0d9fdf6597e07cee0cf3e4a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/workflow/zipball/b46e9aea78ef632712d1eb184491452865b2c2c9", - "reference": "b46e9aea78ef632712d1eb184491452865b2c2c9", + "url": "https://api.github.com/repos/symfony/workflow/zipball/fdd7bd981dd41a9ae0d9fdf6597e07cee0cf3e4a", + "reference": "fdd7bd981dd41a9ae0d9fdf6597e07cee0cf3e4a", "shasum": "" }, "require": { @@ -7983,11 +7886,6 @@ "symfony/validator": "~2.8|~3.4|~4.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Workflow\\": "" @@ -8035,20 +7933,20 @@ "type": "tidelift" } ], - "time": "2020-04-07T09:39:41+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/yaml", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb" + "reference": "88289caa3c166321883f67fe5130188ebbb47094" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb", - "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb", + "url": "https://api.github.com/repos/symfony/yaml/zipball/88289caa3c166321883f67fe5130188ebbb47094", + "reference": "88289caa3c166321883f67fe5130188ebbb47094", "shasum": "" }, "require": { @@ -8065,11 +7963,6 @@ "symfony/console": "For validating YAML files using the lint command" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Yaml\\": "" @@ -8108,7 +8001,7 @@ "type": "tidelift" } ], - "time": "2020-05-11T07:51:54+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "tecnickcom/tcpdf", @@ -8225,6 +8118,7 @@ "i18n", "text" ], + "abandoned": true, "time": "2018-12-05T18:34:18+00:00" }, { @@ -8930,6 +8824,7 @@ "faker", "fixtures" ], + "abandoned": true, "time": "2019-11-14T13:13:06+00:00" }, { @@ -9026,6 +8921,51 @@ ], "time": "2019-08-09T12:45:53+00:00" }, + { + "name": "paragonie/random_compat", + "version": "v9.99.99", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "shasum": "" + }, + "require": { + "php": "^7" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "polyfill", + "pseudorandom", + "random" + ], + "time": "2018-07-02T15:55:56+00:00" + }, { "name": "phar-io/manifest", "version": "1.0.1", @@ -10379,16 +10319,16 @@ }, { "name": "symfony/browser-kit", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "1467e0c7cf0c5c2c08dc9b45ca0300ac3cd3a824" + "reference": "9590bd3d3f9fa2f28d34b713ed4765a8cc8ad15c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/1467e0c7cf0c5c2c08dc9b45ca0300ac3cd3a824", - "reference": "1467e0c7cf0c5c2c08dc9b45ca0300ac3cd3a824", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9590bd3d3f9fa2f28d34b713ed4765a8cc8ad15c", + "reference": "9590bd3d3f9fa2f28d34b713ed4765a8cc8ad15c", "shasum": "" }, "require": { @@ -10403,11 +10343,6 @@ "symfony/process": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\BrowserKit\\": "" @@ -10446,20 +10381,20 @@ "type": "tidelift" } ], - "time": "2020-04-27T06:55:12+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/phpunit-bridge", - "version": "v3.4.42", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "ac355e1e9ebde4cf6ef5187f5cf4b43001f9a29f" + "reference": "120273ad5d03a8deee08ca9260e2598f288f2bac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/ac355e1e9ebde4cf6ef5187f5cf4b43001f9a29f", - "reference": "ac355e1e9ebde4cf6ef5187f5cf4b43001f9a29f", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/120273ad5d03a8deee08ca9260e2598f288f2bac", + "reference": "120273ad5d03a8deee08ca9260e2598f288f2bac", "shasum": "" }, "require": { @@ -10476,9 +10411,6 @@ ], "type": "symfony-bridge", "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - }, "thanks": { "name": "phpunit/phpunit", "url": "https://github.com/sebastianbergmann/phpunit" @@ -10525,7 +10457,7 @@ "type": "tidelift" } ], - "time": "2020-06-04T15:36:03+00:00" + "time": "2020-11-13T16:28:59+00:00" }, { "name": "theseer/tokenizer", @@ -10572,12 +10504,12 @@ "version": "1.6.0", "source": { "type": "git", - "url": "https://github.com/webmozart/assert.git", + "url": "https://github.com/webmozarts/assert.git", "reference": "573381c0a64f155a0d9a23f4b0c797194805b925" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/573381c0a64f155a0d9a23f4b0c797194805b925", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/573381c0a64f155a0d9a23f4b0c797194805b925", "reference": "573381c0a64f155a0d9a23f4b0c797194805b925", "shasum": "" }, diff --git a/symfony.lock b/symfony.lock index 366dae15455..d1cb7a8fc11 100644 --- a/symfony.lock +++ b/symfony.lock @@ -395,6 +395,9 @@ "symfony/dependency-injection": { "version": "v3.4.1" }, + "symfony/deprecation-contracts": { + "version": "v2.4.0" + }, "symfony/doctrine-bridge": { "version": "v3.4.1" }, @@ -494,6 +497,9 @@ "symfony/polyfill-intl-idn": { "version": "v1.17.1" }, + "symfony/polyfill-intl-normalizer": { + "version": "v1.23.0" + }, "symfony/polyfill-mbstring": { "version": "v1.6.0" }, @@ -506,9 +512,6 @@ "symfony/polyfill-php72": { "version": "v1.6.0" }, - "symfony/polyfill-util": { - "version": "v1.6.0" - }, "symfony/process": { "version": "v3.4.1" }, From 29746c1a58494a51f97a37628bb327eb63cbf299 Mon Sep 17 00:00:00 2001 From: Chihiro Adachi <8196725+chihiro-adachi@users.noreply.github.com> Date: Fri, 4 Jun 2021 13:40:58 +0900 Subject: [PATCH 11/16] =?UTF-8?q?=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/Eccube/Common/Constant.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 62125ed4f2d..e2d6dcf41d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eccube", - "version": "4.0.5-p1", + "version": "4.0.6", "description": "EC-CUBE EC open platform.", "main": "index.js", "directories": { diff --git a/src/Eccube/Common/Constant.php b/src/Eccube/Common/Constant.php index 27c8b2c4e40..4c2c4690ed6 100644 --- a/src/Eccube/Common/Constant.php +++ b/src/Eccube/Common/Constant.php @@ -18,7 +18,7 @@ class Constant /** * EC-CUBE VERSION. */ - const VERSION = '4.0.5-p1'; + const VERSION = '4.0.6'; /** * Enable value. From 007f006cae369ad55a474cbc516384cb5575dcbf Mon Sep 17 00:00:00 2001 From: Chihiro Adachi <8196725+chihiro-adachi@users.noreply.github.com> Date: Fri, 4 Jun 2021 17:12:34 +0900 Subject: [PATCH 12/16] =?UTF-8?q?prod=E6=99=82=E3=81=AE=E3=81=BFrequire-de?= =?UTF-8?q?v=E3=82=92=E9=99=A4=E5=A4=96=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Eccube/Service/Composer/ComposerApiService.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Eccube/Service/Composer/ComposerApiService.php b/src/Eccube/Service/Composer/ComposerApiService.php index 00b827240d0..1f32617afa9 100644 --- a/src/Eccube/Service/Composer/ComposerApiService.php +++ b/src/Eccube/Service/Composer/ComposerApiService.php @@ -113,7 +113,7 @@ public function execRequire($packageName, $output = null) '--prefer-dist' => true, '--update-with-dependencies' => true, '--no-scripts' => true, - '--update-no-dev' => env('APP_ENV') !== 'codeception', + '--update-no-dev' => env('APP_ENV') === 'prod', ], $output); } @@ -142,7 +142,7 @@ public function execRemove($packageName, $output = null) '--no-interaction' => true, '--profile' => true, '--no-scripts' => true, - '--update-no-dev' => env('APP_ENV') !== 'codeception', + '--update-no-dev' => env('APP_ENV') === 'prod', ], $output); } @@ -164,7 +164,7 @@ public function execUpdate($dryRun, $output = null) '--profile' => true, '--no-scripts' => true, '--dry-run' => (bool) $dryRun, - '--no-dev' => env('APP_ENV') !== 'codeception', + '--no-dev' => env('APP_ENV') === 'prod', ], $output); } @@ -186,7 +186,7 @@ public function execInstall($dryRun, $output = null) '--profile' => true, '--no-scripts' => true, '--dry-run' => (bool) $dryRun, - '--no-dev' => env('APP_ENV') !== 'codeception', + '--no-dev' => env('APP_ENV') === 'prod', ], $output); } From f54045b43f435a46c1f3a03e43d5864848c95f49 Mon Sep 17 00:00:00 2001 From: hideki_okajima Date: Wed, 23 Jun 2021 18:00:53 +0900 Subject: [PATCH 13/16] composer update symfony/* --- composer.lock | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++- symfony.lock | 3 +++ 2 files changed, 64 insertions(+), 1 deletion(-) diff --git a/composer.lock b/composer.lock index 2a5e407506e..50c44fe1508 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": "26d5cd98f0123a682f18d802228af345", + "content-hash": "f08a40e6e4ddeb44b7f799dcc48116ca", "packages": [ { "name": "composer/ca-bundle", @@ -9364,6 +9364,66 @@ ], "time": "2019-10-03T11:07:50+00:00" }, + { + "name": "phpstan/phpstan", + "version": "0.12.90", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "f0e4b56630fc3d4eb5be86606d07212ac212ede4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/f0e4b56630fc3d4eb5be86606d07212ac212ede4", + "reference": "f0e4b56630fc3d4eb5be86606d07212ac212ede4", + "shasum": "" + }, + "require": { + "php": "^7.1|^8.0" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan - PHP Static Analysis Tool", + "funding": [ + { + "url": "https://github.com/ondrejmirtes", + "type": "github" + }, + { + "url": "https://github.com/phpstan", + "type": "github" + }, + { + "url": "https://www.patreon.com/phpstan", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", + "type": "tidelift" + } + ], + "time": "2021-06-18T07:15:38+00:00" + }, { "name": "phpunit/php-code-coverage", "version": "5.3.2", diff --git a/symfony.lock b/symfony.lock index 45a44226a5c..22733bd51f0 100644 --- a/symfony.lock +++ b/symfony.lock @@ -203,6 +203,9 @@ "php": { "version": "7.1.3" }, + "php-coveralls/php-coveralls": { + "version": "v2.2.0" + }, "php-cs-fixer/diff": { "version": "v1.2.0" }, From dfc3ffb0a1517e196579716611f99ff5c3bc1aca Mon Sep 17 00:00:00 2001 From: hideki_okajima Date: Wed, 23 Jun 2021 18:29:54 +0900 Subject: [PATCH 14/16] composer update symfony/* --- composer.lock | 97 ++++++++++++++++++++++++++------------------------- symfony.lock | 3 -- 2 files changed, 49 insertions(+), 51 deletions(-) diff --git a/composer.lock b/composer.lock index a1f90f9cee0..7a1f580dd89 100644 --- a/composer.lock +++ b/composer.lock @@ -5385,6 +5385,7 @@ "type": "tidelift" } ], + "abandoned": "use `EnglishInflector` from the String component instead", "time": "2020-10-24T10:57:07+00:00" }, { @@ -5800,16 +5801,16 @@ }, { "name": "symfony/polyfill-apcu", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-apcu.git", - "reference": "bc9974e74f8c05f4ceb500b1e0603e36be7d8223" + "reference": "80f7fb64c5b64ebcba76f40215e63808a2062a18" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/bc9974e74f8c05f4ceb500b1e0603e36be7d8223", - "reference": "bc9974e74f8c05f4ceb500b1e0603e36be7d8223", + "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/80f7fb64c5b64ebcba76f40215e63808a2062a18", + "reference": "80f7fb64c5b64ebcba76f40215e63808a2062a18", "shasum": "" }, "require": { @@ -5818,7 +5819,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5870,20 +5871,20 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "c6c942b1ac76c82448322025e084cadc56048b4e" + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e", - "reference": "c6c942b1ac76c82448322025e084cadc56048b4e", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", "shasum": "" }, "require": { @@ -5895,7 +5896,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5946,20 +5947,20 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342" + "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/06fb361659649bcfd6a208a0f1fcaf4e827ad342", - "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933", + "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933", "shasum": "" }, "require": { @@ -5971,7 +5972,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6023,20 +6024,20 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { "name": "symfony/polyfill-intl-icu", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "af1842919c7e7364aaaa2798b29839e3ba168588" + "reference": "4a80a521d6176870b6445cfb469c130f9cae1dda" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/af1842919c7e7364aaaa2798b29839e3ba168588", - "reference": "af1842919c7e7364aaaa2798b29839e3ba168588", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/4a80a521d6176870b6445cfb469c130f9cae1dda", + "reference": "4a80a521d6176870b6445cfb469c130f9cae1dda", "shasum": "" }, "require": { @@ -6048,7 +6049,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6107,20 +6108,20 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2021-05-24T10:04:56+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "2d63434d922daf7da8dd863e7907e67ee3031483" + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483", - "reference": "2d63434d922daf7da8dd863e7907e67ee3031483", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65", + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65", "shasum": "" }, "require": { @@ -6134,7 +6135,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6191,20 +6192,20 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248" + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248", - "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", "shasum": "" }, "require": { @@ -6216,7 +6217,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6272,20 +6273,20 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "5232de97ee3b75b0360528dae24e73db49566ab1" + "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1", - "reference": "5232de97ee3b75b0360528dae24e73db49566ab1", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1", + "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1", "shasum": "" }, "require": { @@ -6297,7 +6298,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6349,7 +6350,7 @@ "type": "tidelift" } ], - "time": "2021-01-22T09:19:47+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { "name": "symfony/polyfill-php56", @@ -6483,16 +6484,16 @@ }, { "name": "symfony/polyfill-php72", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9" + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", - "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", "shasum": "" }, "require": { @@ -6501,7 +6502,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6552,7 +6553,7 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2021-05-27T09:17:38+00:00" }, { "name": "symfony/process", diff --git a/symfony.lock b/symfony.lock index 1148a1488af..79da07acd85 100644 --- a/symfony.lock +++ b/symfony.lock @@ -191,9 +191,6 @@ "ocramius/proxy-manager": { "version": "2.1.1" }, - "paragonie/random_compat": { - "version": "v2.0.11" - }, "phar-io/manifest": { "version": "1.0.1" }, From 22b055f9a8e0a2a3ecec301d06a0b73cac4cf819 Mon Sep 17 00:00:00 2001 From: hideki_okajima Date: Mon, 28 Jun 2021 15:57:24 +0900 Subject: [PATCH 15/16] =?UTF-8?q?JVN#95292458=20=E3=81=AE=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3=E4=B8=8D=E5=82=99=E3=81=AB=E5=AF=BE=E5=BF=9C=20refs?= =?UTF-8?q?=20https://www.ec-cube.net/info/weakness/20210610/index40.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .htaccess | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.htaccess b/.htaccess index 105fe6e03a2..1ffc409041b 100644 --- a/.htaccess +++ b/.htaccess @@ -1,10 +1,5 @@ DirectoryIndex index.php index.html .ht - - order allow,deny - deny from all - - order deny,allow allow from all @@ -17,6 +12,11 @@ DirectoryIndex index.php index.html .ht Allow from all + + order allow,deny + deny from all + + # クリックジャッキング対策 Header always set X-Frame-Options SAMEORIGIN From 14fc5c23c5295610f1af286e1ff97d5e6ae646b9 Mon Sep 17 00:00:00 2001 From: hideki_okajima Date: Mon, 28 Jun 2021 16:03:27 +0900 Subject: [PATCH 16/16] =?UTF-8?q?4.0.6-p1=20=E3=81=B8=E3=83=90=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E3=83=A7=E3=83=B3=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/Eccube/Common/Constant.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 067cd9d497e..162e569353d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eccube", - "version": "4.0.6", + "version": "4.0.6-p1", "description": "EC-CUBE EC open platform.", "main": "index.js", "directories": { diff --git a/src/Eccube/Common/Constant.php b/src/Eccube/Common/Constant.php index 4c2c4690ed6..828dd06d138 100644 --- a/src/Eccube/Common/Constant.php +++ b/src/Eccube/Common/Constant.php @@ -18,7 +18,7 @@ class Constant /** * EC-CUBE VERSION. */ - const VERSION = '4.0.6'; + const VERSION = '4.0.6-p1'; /** * Enable value.