From d615bcf0ea0f7c7765e37bd7ed32b4bc67d63604 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Thu, 15 Aug 2019 13:25:37 +0200 Subject: [PATCH 1/7] Adjust sidebar navigation links to use page title as label --- .../Resources/Private/Layouts/Page/SubpageEpEvents.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/typo3conf/ext/ep_events/Resources/Private/Layouts/Page/SubpageEpEvents.html b/public/typo3conf/ext/ep_events/Resources/Private/Layouts/Page/SubpageEpEvents.html index 42697dbe..5af5621e 100644 --- a/public/typo3conf/ext/ep_events/Resources/Private/Layouts/Page/SubpageEpEvents.html +++ b/public/typo3conf/ext/ep_events/Resources/Private/Layouts/Page/SubpageEpEvents.html @@ -25,7 +25,7 @@ - +
From e8d455b39df894e3cd4e0a967a2a9ed317790671 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Thu, 15 Aug 2019 13:34:20 +0200 Subject: [PATCH 2/7] Add cleverpush workers --- public/cleverpush-manifest.json | 1 + public/cleverpush-worker.js | 1 + 2 files changed, 2 insertions(+) create mode 100644 public/cleverpush-manifest.json create mode 100644 public/cleverpush-worker.js diff --git a/public/cleverpush-manifest.json b/public/cleverpush-manifest.json new file mode 100644 index 00000000..ffd4230e --- /dev/null +++ b/public/cleverpush-manifest.json @@ -0,0 +1 @@ +{"name":"E&P Skireisen","short_name":"E&P Skireisen","start_url":"/","display":"standalone","gcm_sender_id":"890396972010","gcm_user_visible_only":true} \ No newline at end of file diff --git a/public/cleverpush-worker.js b/public/cleverpush-worker.js new file mode 100644 index 00000000..ad065ce2 --- /dev/null +++ b/public/cleverpush-worker.js @@ -0,0 +1 @@ +importScripts('https://static.cleverpush.com/channel/worker/MrDvZ9L2bngnLfnq9.js' + self.location.search); From 5bf9cabf2f2ea0914bc027fbab37cc451169a6ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Thu, 15 Aug 2019 13:38:46 +0200 Subject: [PATCH 3/7] Enable native spellchecker in RTE --- public/typo3conf/ext/ep_events/Configuration/RTE/Default.yaml | 1 + public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/public/typo3conf/ext/ep_events/Configuration/RTE/Default.yaml b/public/typo3conf/ext/ep_events/Configuration/RTE/Default.yaml index f9b52b27..4d625865 100644 --- a/public/typo3conf/ext/ep_events/Configuration/RTE/Default.yaml +++ b/public/typo3conf/ext/ep_events/Configuration/RTE/Default.yaml @@ -5,6 +5,7 @@ imports: editor: config: + disableNativeSpellChecker: false contentsCss: - "EXT:ep_events/Resources/Public/css/rte.min.css" diff --git a/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml b/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml index c4d8d244..e50e078a 100644 --- a/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml +++ b/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml @@ -5,6 +5,7 @@ imports: editor: config: + disableNativeSpellChecker: false contentsCss: - "EXT:ep_theme/Resources/Public/css/rte.css" From e86ed95a61d2ee03cee0accb2ae8e9c449603150 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Thu, 15 Aug 2019 14:34:52 +0200 Subject: [PATCH 4/7] Fix current page uid not being promoted to detail page --- .../ext/ep_products/Classes/Controller/ProductController.php | 1 + .../ep_theme/Resources/Private/Templates/Product/Detail.html | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/public/typo3conf/ext/ep_products/Classes/Controller/ProductController.php b/public/typo3conf/ext/ep_products/Classes/Controller/ProductController.php index 31cc1cbd..7be5cbca 100644 --- a/public/typo3conf/ext/ep_products/Classes/Controller/ProductController.php +++ b/public/typo3conf/ext/ep_products/Classes/Controller/ProductController.php @@ -144,6 +144,7 @@ class ProductController extends ActionController 'product' => $product, 'isProductWithExcludedConcept' => $isProductWithExcludedConcept, 'isProductWithNoInfoConcept' => $isProductWithNoInfoConcept, + 'currentPageUid' => $GLOBALS['TSFE']->id, ]); } diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html index 66c77cc8..3fdda853 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html @@ -175,7 +175,9 @@
- + + +
From 354762a30aa30c7a1fd9cad1912b75ee69e00d35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Thu, 15 Aug 2019 15:01:28 +0200 Subject: [PATCH 5/7] Fix filterpanel collapsing on scroll in mobile view --- .../typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js | 1 - 1 file changed, 1 deletion(-) diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js index 629853b2..baa96e25 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js @@ -300,7 +300,6 @@ new Vue({ $window.on('resize', () => { this.setMobileMode(); this.initCarousels(); - this.initFilterpanel(); this.initDropdownMenuBehavior(); let newBackgroundImageMode = this.getBackgroundImageMode(); if (this.backgroundImageMode !== newBackgroundImageMode) { From 7406e9f4caa2d5afaf88c797ee3d18a46f6af7d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Thu, 15 Aug 2019 15:07:11 +0200 Subject: [PATCH 6/7] Add room types text to xml export --- .../ext/ep_products/Classes/Domain/Serialization/Hotel.php | 1 + .../Resources/Private/Templates/Reseller/Copypaste.html | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/public/typo3conf/ext/ep_products/Classes/Domain/Serialization/Hotel.php b/public/typo3conf/ext/ep_products/Classes/Domain/Serialization/Hotel.php index 0fee39f2..9de95094 100644 --- a/public/typo3conf/ext/ep_products/Classes/Domain/Serialization/Hotel.php +++ b/public/typo3conf/ext/ep_products/Classes/Domain/Serialization/Hotel.php @@ -47,6 +47,7 @@ class Hotel $hotel['category'] = \EP\EpProducts\Domain\Model\Hotel::$categoryLabels[$entity->getCategory()]; $hotel['type'] = \EP\EpProducts\Domain\Model\Hotel::$typeLabels[$entity->getType()]; $hotel['description'] = SerializationUtility::sanitizeText($entity->getDescription()); + $hotel['roomtypes'] = SerializationUtility::sanitizeText($entity->getRoomTypes()); $hotel['features'] = SerializationUtility::sanitizeText($entity->getFeatures()); $hotel['images']['image'] = SerializationUtility::preprocessImages($entity->getResellerImages()); diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Reseller/Copypaste.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Reseller/Copypaste.html index 962ac8e2..766b1af3 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Reseller/Copypaste.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Reseller/Copypaste.html @@ -99,6 +99,10 @@
+
+ + +

Termine, Zimmer, Leistungen und Zustiege

From 0c1f4b8999acd6df0af14122f27c651dd7b1de2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Thu, 15 Aug 2019 15:08:46 +0200 Subject: [PATCH 7/7] Update project dependencies --- composer.lock | 401 +++++++++++++++++++++++++------------------------- 1 file changed, 202 insertions(+), 199 deletions(-) diff --git a/composer.lock b/composer.lock index a5a1c718..f75e189f 100644 --- a/composer.lock +++ b/composer.lock @@ -146,16 +146,16 @@ }, { "name": "doctrine/annotations", - "version": "v1.6.1", + "version": "v1.7.0", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24" + "reference": "fa4c4e861e809d6a1103bd620cce63ed91aedfeb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/53120e0eb10355388d6ccbe462f1fea34ddadb24", - "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/fa4c4e861e809d6a1103bd620cce63ed91aedfeb", + "reference": "fa4c4e861e809d6a1103bd620cce63ed91aedfeb", "shasum": "" }, "require": { @@ -164,12 +164,12 @@ }, "require-dev": { "doctrine/cache": "1.*", - "phpunit/phpunit": "^6.4" + "phpunit/phpunit": "^7.5@dev" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "1.7.x-dev" } }, "autoload": { @@ -182,6 +182,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -190,10 +194,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -210,7 +210,7 @@ "docblock", "parser" ], - "time": "2019-03-25T19:12:02+00:00" + "time": "2019-08-08T18:11:40+00:00" }, { "name": "doctrine/cache", @@ -501,28 +501,30 @@ }, { "name": "doctrine/lexer", - "version": "1.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" + "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e17f069ede36f7534b95adec71910ed1b49c74ea", + "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea", "shasum": "" }, "require": { - "php": ">=5.3.2" + "php": "^7.2" }, "require-dev": { - "phpunit/phpunit": "^4.5" + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { @@ -535,14 +537,14 @@ "MIT" ], "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" @@ -557,7 +559,7 @@ "parser", "php" ], - "time": "2019-06-08T11:03:04+00:00" + "time": "2019-07-30T19:33:28+00:00" }, { "name": "fab/media", @@ -751,16 +753,16 @@ }, { "name": "georgringer/news", - "version": "7.2.0", + "version": "7.2.3", "source": { "type": "git", "url": "https://github.com/georgringer/news.git", - "reference": "2ed8306bf28465126c298d01fec67b696b4cde9f" + "reference": "362aa9e2401b6cb3a67d9dd9a3209c34035b73ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/georgringer/news/zipball/2ed8306bf28465126c298d01fec67b696b4cde9f", - "reference": "2ed8306bf28465126c298d01fec67b696b4cde9f", + "url": "https://api.github.com/repos/georgringer/news/zipball/362aa9e2401b6cb3a67d9dd9a3209c34035b73ca", + "reference": "362aa9e2401b6cb3a67d9dd9a3209c34035b73ca", "shasum": "" }, "require": { @@ -802,8 +804,8 @@ "authors": [ { "name": "Georg Ringer", - "homepage": "http://montagmorgen.at", - "role": "Developer" + "role": "Developer", + "homepage": "http://montagmorgen.at" } ], "description": "Versatile news extension, based on extbase & fluid for TYPO3 CMS", @@ -814,7 +816,7 @@ "news", "typo3" ], - "time": "2019-04-15T10:54:23+00:00" + "time": "2019-08-06T08:43:36+00:00" }, { "name": "gridelementsteam/gridelements", @@ -981,33 +983,37 @@ }, { "name": "guzzlehttp/psr7", - "version": "1.5.2", + "version": "1.6.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "9f83dded91781a01c63574e387eaa769be769115" + "reference": "239400de7a173fe9901b9ac7c06497751f00727a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115", - "reference": "9f83dded91781a01c63574e387eaa769be769115", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", + "reference": "239400de7a173fe9901b9ac7c06497751f00727a", "shasum": "" }, "require": { "php": ">=5.4.0", "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5" + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" }, "provide": { "psr/http-message-implementation": "1.0" }, "require-dev": { + "ext-zlib": "*", "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" }, + "suggest": { + "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.5-dev" + "dev-master": "1.6-dev" } }, "autoload": { @@ -1044,24 +1050,24 @@ "uri", "url" ], - "time": "2018-12-04T20:46:45+00:00" + "time": "2019-07-01T23:21:34+00:00" }, { "name": "helhum/config-loader", - "version": "v0.11.0", + "version": "v0.12.2", "source": { "type": "git", "url": "https://github.com/helhum/config-loader.git", - "reference": "7748b96a80725fd8801075a4b75485889ac04779" + "reference": "1faf12146c505f3b929b10f09aabb8b675d7842d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/helhum/config-loader/zipball/7748b96a80725fd8801075a4b75485889ac04779", - "reference": "7748b96a80725fd8801075a4b75485889ac04779", + "url": "https://api.github.com/repos/helhum/config-loader/zipball/1faf12146c505f3b929b10f09aabb8b675d7842d", + "reference": "1faf12146c505f3b929b10f09aabb8b675d7842d", "shasum": "" }, "require": { - "php": ">=7.0.0 <7.3.0" + "php": "^7" }, "require-dev": { "mikey179/vfsstream": "^1.6", @@ -1088,58 +1094,56 @@ "GPL-2.0-or-later" ], "description": "Generic config loader with context and environment support.", - "time": "2018-09-02T15:46:19+00:00" + "time": "2019-05-30T14:58:15+00:00" }, { "name": "helhum/typo3-console", - "version": "5.6.0", + "version": "v5.7.1", "source": { "type": "git", "url": "https://github.com/TYPO3-Console/TYPO3-Console.git", - "reference": "5e4ce3c116685a9929e033d3032d502658e543e9" + "reference": "f450c9cd144672463deb4aa4209c195374b9f079" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TYPO3-Console/TYPO3-Console/zipball/5e4ce3c116685a9929e033d3032d502658e543e9", - "reference": "5e4ce3c116685a9929e033d3032d502658e543e9", + "url": "https://api.github.com/repos/TYPO3-Console/TYPO3-Console/zipball/f450c9cd144672463deb4aa4209c195374b9f079", + "reference": "f450c9cd144672463deb4aa4209c195374b9f079", "shasum": "" }, "require": { "doctrine/annotations": "^1.4", - "helhum/config-loader": ">=0.9 <0.12", + "helhum/config-loader": ">=0.9 <0.13", "helhum/typo3-console-plugin": "^2.0.2", - "php": ">=7.0.0 <7.3", + "php": "^7", "symfony/console": "^3.4.4 || ^4.0", "symfony/process": "^3.4.4 || ^4.0", - "typo3/cms-backend": "~8.7.10 || ~9.5.0", - "typo3/cms-core": "~8.7.10 || ~9.5.0", - "typo3/cms-extbase": "~8.7.10 || ~9.5.0", - "typo3/cms-extensionmanager": "~8.7.10 || ~9.5.0", - "typo3/cms-fluid": "~8.7.10 || ~9.5.0", - "typo3/cms-frontend": "~8.7.10 || ~9.5.0", - "typo3/cms-install": "~8.7.10 || ~9.5.0", + "typo3/cms-backend": "~8.7.22 || ~9.5.8", + "typo3/cms-core": "~8.7.22 || ~9.5.8", + "typo3/cms-extbase": "~8.7.22 || ~9.5.8", + "typo3/cms-extensionmanager": "~8.7.22 || ~9.5.8", + "typo3/cms-fluid": "~8.7.22 || ~9.5.8", + "typo3/cms-frontend": "~8.7.22 || ~9.5.8", + "typo3/cms-install": "~8.7.22 || ~9.5.8", "typo3/cms-saltedpasswords": "*", - "typo3/cms-scheduler": "~8.7.10 || ~9.5.0" + "typo3/cms-scheduler": "~8.7.22 || ~9.5.8" }, "conflict": { "friendsoftypo3/dbal": "*", "typo3-ter/dbal": "*" }, "replace": { - "typo3-ter/typo3-console": "self.version", - "typo3_console": "self.version" + "typo3-ter/typo3-console": "self.version" }, "require-dev": { "cweagans/composer-patches": "^1.6", - "doctrine/dbal": "< 2.8", "jakub-onderka/php-parallel-lint": "^1.0", - "nimut/testing-framework": "dev-master", + "nimut/testing-framework": "dev-allow-php73", "symfony/filesystem": "^3.2", "typo3-console/convert-command-controller-command": "@dev", "typo3-console/create-reference-command": "@dev", "typo3-console/php-server-command": "^0.2", - "typo3/cms-filemetadata": "~8.7.10 || ~9.5.0 || dev-master", - "typo3/cms-reports": "~8.7.10 || ~9.5.0 || dev-master" + "typo3/cms-filemetadata": "~8.7.22 || ~9.5.8 || dev-master", + "typo3/cms-reports": "~8.7.22 || ~9.5.8 || dev-master" }, "bin": [ "typo3cms" @@ -1151,10 +1155,7 @@ }, "typo3/cms": { "app-dir": ".Build", - "web-dir": ".Build/public", - "Package": { - "partOfMinimalUsableSystem": true - } + "web-dir": ".Build/public" } }, "autoload": { @@ -1172,9 +1173,9 @@ "authors": [ { "name": "Helmut Hummel", + "role": "Developer", "email": "info@helhum.io", - "homepage": "http://helhum.io", - "role": "Developer" + "homepage": "http://helhum.io" } ], "description": "A reliable and powerful command line interface for TYPO3 CMS", @@ -1186,7 +1187,7 @@ "console", "typo3" ], - "time": "2018-10-21T21:10:17+00:00" + "time": "2019-08-07T12:46:56+00:00" }, { "name": "helhum/typo3-console-plugin", @@ -1243,19 +1244,21 @@ }, { "name": "league/csv", - "version": "9.2.1", + "version": "9.3.0", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "b574a7d8b28f1528e011d8652fb7d2e83410d4c9" + "reference": "d16f85d1f958a765844db4bc7174017edf2dd637" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/b574a7d8b28f1528e011d8652fb7d2e83410d4c9", - "reference": "b574a7d8b28f1528e011d8652fb7d2e83410d4c9", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/d16f85d1f958a765844db4bc7174017edf2dd637", + "reference": "d16f85d1f958a765844db4bc7174017edf2dd637", "shasum": "" }, "require": { + "ext-dom": "*", + "ext-json": "*", "ext-mbstring": "*", "php": ">=7.0.10" }, @@ -1291,9 +1294,9 @@ "authors": [ { "name": "Ignace Nyamagana Butera", + "role": "Developer", "email": "nyamsprod@gmail.com", - "homepage": "https://github.com/nyamsprod/", - "role": "Developer" + "homepage": "https://github.com/nyamsprod/" } ], "description": "Csv data manipulation made easy in PHP", @@ -1306,20 +1309,20 @@ "read", "write" ], - "time": "2019-06-07T06:24:33+00:00" + "time": "2019-07-30T14:39:11+00:00" }, { "name": "nikic/php-parser", - "version": "v4.2.2", + "version": "v4.2.3", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "1bd73cc04c3843ad8d6b0bfc0956026a151fc420" + "reference": "e612609022e935f3d0337c1295176505b41188c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bd73cc04c3843ad8d6b0bfc0956026a151fc420", - "reference": "1bd73cc04c3843ad8d6b0bfc0956026a151fc420", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e612609022e935f3d0337c1295176505b41188c8", + "reference": "e612609022e935f3d0337c1295176505b41188c8", "shasum": "" }, "require": { @@ -1327,7 +1330,7 @@ "php": ">=7.0" }, "require-dev": { - "phpunit/phpunit": "^6.5 || ^7.0" + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" }, "bin": [ "bin/php-parse" @@ -1357,7 +1360,7 @@ "parser", "php" ], - "time": "2019-05-25T20:07:01+00:00" + "time": "2019-08-12T20:17:41+00:00" }, { "name": "pixelant/pxa-social-feed", @@ -1716,24 +1719,24 @@ }, { "name": "ralouphie/getallheaders", - "version": "2.0.5", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/ralouphie/getallheaders.git", - "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa" + "reference": "120b605dfeb996808c31b6477290a714d356e822" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa", - "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", "shasum": "" }, "require": { - "php": ">=5.3" + "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "~3.7.0", - "satooshi/php-coveralls": ">=1.0" + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" }, "type": "library", "autoload": { @@ -1752,7 +1755,7 @@ } ], "description": "A polyfill for getallheaders.", - "time": "2016-02-11T07:05:27+00:00" + "time": "2019-03-08T08:55:37+00:00" }, { "name": "swiftmailer/swiftmailer", @@ -1810,16 +1813,16 @@ }, { "name": "symfony/cache", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "2edc417da273bafee589a8758f0278416d04af38" + "reference": "d263af3cec33afa862310e58545fdc10d779806f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/2edc417da273bafee589a8758f0278416d04af38", - "reference": "2edc417da273bafee589a8758f0278416d04af38", + "url": "https://api.github.com/repos/symfony/cache/zipball/d263af3cec33afa862310e58545fdc10d779806f", + "reference": "d263af3cec33afa862310e58545fdc10d779806f", "shasum": "" }, "require": { @@ -1884,7 +1887,7 @@ "caching", "psr6" ], - "time": "2019-06-06T10:05:02+00:00" + "time": "2019-06-28T13:16:30+00:00" }, { "name": "symfony/cache-contracts", @@ -1946,16 +1949,16 @@ }, { "name": "symfony/console", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "d50bbeeb0e17e6dd4124ea391eff235e932cbf64" + "reference": "8b0ae5742ce9aaa8b0075665862c1ca397d1c1d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/d50bbeeb0e17e6dd4124ea391eff235e932cbf64", - "reference": "d50bbeeb0e17e6dd4124ea391eff235e932cbf64", + "url": "https://api.github.com/repos/symfony/console/zipball/8b0ae5742ce9aaa8b0075665862c1ca397d1c1d9", + "reference": "8b0ae5742ce9aaa8b0075665862c1ca397d1c1d9", "shasum": "" }, "require": { @@ -2017,11 +2020,11 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2019-06-05T13:25:51+00:00" + "time": "2019-07-24T17:13:59+00:00" }, { "name": "symfony/expression-language", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/expression-language.git", @@ -2072,16 +2075,16 @@ }, { "name": "symfony/finder", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "b3d4f4c0e4eadfdd8b296af9ca637cfbf51d8176" + "reference": "9638d41e3729459860bb96f6247ccb61faaa45f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/b3d4f4c0e4eadfdd8b296af9ca637cfbf51d8176", - "reference": "b3d4f4c0e4eadfdd8b296af9ca637cfbf51d8176", + "url": "https://api.github.com/repos/symfony/finder/zipball/9638d41e3729459860bb96f6247ccb61faaa45f2", + "reference": "9638d41e3729459860bb96f6247ccb61faaa45f2", "shasum": "" }, "require": { @@ -2117,20 +2120,20 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2019-05-26T20:47:49+00:00" + "time": "2019-06-28T13:16:30+00:00" }, { "name": "symfony/inflector", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/inflector.git", - "reference": "889dc28cb6350ddb302fe9b8c796e4e6eb836856" + "reference": "782e3959ea1fc95923624d6173eaf941ce3029b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/inflector/zipball/889dc28cb6350ddb302fe9b8c796e4e6eb836856", - "reference": "889dc28cb6350ddb302fe9b8c796e4e6eb836856", + "url": "https://api.github.com/repos/symfony/inflector/zipball/782e3959ea1fc95923624d6173eaf941ce3029b0", + "reference": "782e3959ea1fc95923624d6173eaf941ce3029b0", "shasum": "" }, "require": { @@ -2175,20 +2178,20 @@ "symfony", "words" ], - "time": "2019-05-30T09:28:08+00:00" + "time": "2019-07-25T10:54:24+00:00" }, { "name": "symfony/intl", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/intl.git", - "reference": "690c0a1ca9b02d2e79cb1e7fb01d04eae727765a" + "reference": "741376a9127841ffae39f197f8bd0ab2d4772157" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/intl/zipball/690c0a1ca9b02d2e79cb1e7fb01d04eae727765a", - "reference": "690c0a1ca9b02d2e79cb1e7fb01d04eae727765a", + "url": "https://api.github.com/repos/symfony/intl/zipball/741376a9127841ffae39f197f8bd0ab2d4772157", + "reference": "741376a9127841ffae39f197f8bd0ab2d4772157", "shasum": "" }, "require": { @@ -2250,20 +2253,20 @@ "l10n", "localization" ], - "time": "2019-05-30T16:10:05+00:00" + "time": "2019-07-24T14:47:54+00:00" }, { "name": "symfony/options-resolver", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "914e0edcb7cd0c9f494bc023b1d47534f4542332" + "reference": "40762ead607c8f792ee4516881369ffa553fee6f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/914e0edcb7cd0c9f494bc023b1d47534f4542332", - "reference": "914e0edcb7cd0c9f494bc023b1d47534f4542332", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/40762ead607c8f792ee4516881369ffa553fee6f", + "reference": "40762ead607c8f792ee4516881369ffa553fee6f", "shasum": "" }, "require": { @@ -2304,20 +2307,20 @@ "configuration", "options" ], - "time": "2019-05-10T05:38:46+00:00" + "time": "2019-06-13T11:01:17+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "82ebae02209c21113908c229e9883c419720738a" + "reference": "550ebaac289296ce228a706d0867afc34687e3f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a", - "reference": "82ebae02209c21113908c229e9883c419720738a", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4", "shasum": "" }, "require": { @@ -2329,7 +2332,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -2345,13 +2348,13 @@ "MIT" ], "authors": [ - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - }, { "name": "Gert de Pagter", "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill for ctype functions", @@ -2362,25 +2365,25 @@ "polyfill", "portable" ], - "time": "2019-02-06T07:57:58+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-intl-icu", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "999878a3a09d73cae157b0cf89bb6fb2cc073057" + "reference": "66810b9d6eb4af54d543867909d65ab9af654d7e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/999878a3a09d73cae157b0cf89bb6fb2cc073057", - "reference": "999878a3a09d73cae157b0cf89bb6fb2cc073057", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/66810b9d6eb4af54d543867909d65ab9af654d7e", + "reference": "66810b9d6eb4af54d543867909d65ab9af654d7e", "shasum": "" }, "require": { "php": ">=5.3.3", - "symfony/intl": "~2.3|~3.0|~4.0" + "symfony/intl": "~2.3|~3.0|~4.0|~5.0" }, "suggest": { "ext-intl": "For best performance" @@ -2388,7 +2391,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.9-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -2420,20 +2423,20 @@ "portable", "shim" ], - "time": "2019-01-07T19:39:47+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af" + "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c766e95bec706cdd89903b1eda8afab7d7a6b7af", - "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6af626ae6fa37d396dc90a399c0ff08e5cfc45b2", + "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2", "shasum": "" }, "require": { @@ -2447,7 +2450,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.9-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -2463,13 +2466,13 @@ "MIT" ], "authors": [ - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - }, { "name": "Laurent Bassin", "email": "laurent@bassin.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", @@ -2482,20 +2485,20 @@ "portable", "shim" ], - "time": "2019-03-04T13:44:35+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "fe5e94c604826c35a32fa832f35bd036b6799609" + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609", - "reference": "fe5e94c604826c35a32fa832f35bd036b6799609", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", "shasum": "" }, "require": { @@ -2507,7 +2510,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -2541,20 +2544,20 @@ "portable", "shim" ], - "time": "2019-02-06T07:57:58+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c" + "reference": "04ce3335667451138df4307d6a9b61565560199e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c", - "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/04ce3335667451138df4307d6a9b61565560199e", + "reference": "04ce3335667451138df4307d6a9b61565560199e", "shasum": "" }, "require": { @@ -2563,7 +2566,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -2596,20 +2599,20 @@ "portable", "shim" ], - "time": "2019-02-06T07:57:58+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "d1fb4abcc0c47be136208ad9d68bf59f1ee17abd" + "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/d1fb4abcc0c47be136208ad9d68bf59f1ee17abd", - "reference": "d1fb4abcc0c47be136208ad9d68bf59f1ee17abd", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/2ceb49eaccb9352bff54d22570276bb75ba4a188", + "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188", "shasum": "" }, "require": { @@ -2618,7 +2621,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -2654,11 +2657,11 @@ "portable", "shim" ], - "time": "2019-02-06T07:57:58+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/process", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/process.git", @@ -2707,16 +2710,16 @@ }, { "name": "symfony/property-access", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/property-access.git", - "reference": "18ea48862a39e364927e71b9e4942af3c1a1cb8c" + "reference": "42f3a6ddcb794c303d8fdbc33faf3f09cfefee62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-access/zipball/18ea48862a39e364927e71b9e4942af3c1a1cb8c", - "reference": "18ea48862a39e364927e71b9e4942af3c1a1cb8c", + "url": "https://api.github.com/repos/symfony/property-access/zipball/42f3a6ddcb794c303d8fdbc33faf3f09cfefee62", + "reference": "42f3a6ddcb794c303d8fdbc33faf3f09cfefee62", "shasum": "" }, "require": { @@ -2770,20 +2773,20 @@ "property path", "reflection" ], - "time": "2019-06-06T10:05:02+00:00" + "time": "2019-07-24T14:47:54+00:00" }, { "name": "symfony/routing", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "9b31cd24f6ad2cebde6845f6daa9c6d69efe2465" + "reference": "a88c47a5861549f5dc1197660818084c3b67d773" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/9b31cd24f6ad2cebde6845f6daa9c6d69efe2465", - "reference": "9b31cd24f6ad2cebde6845f6daa9c6d69efe2465", + "url": "https://api.github.com/repos/symfony/routing/zipball/a88c47a5861549f5dc1197660818084c3b67d773", + "reference": "a88c47a5861549f5dc1197660818084c3b67d773", "shasum": "" }, "require": { @@ -2846,20 +2849,20 @@ "uri", "url" ], - "time": "2019-06-05T09:16:20+00:00" + "time": "2019-07-23T14:43:56+00:00" }, { "name": "symfony/serializer", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "7a05742647711bc371e9fa1d71206561b88d093a" + "reference": "ff127edf8c015d3a3922b0dd56ffa2c2508a7fda" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/7a05742647711bc371e9fa1d71206561b88d093a", - "reference": "7a05742647711bc371e9fa1d71206561b88d093a", + "url": "https://api.github.com/repos/symfony/serializer/zipball/ff127edf8c015d3a3922b0dd56ffa2c2508a7fda", + "reference": "ff127edf8c015d3a3922b0dd56ffa2c2508a7fda", "shasum": "" }, "require": { @@ -2891,7 +2894,7 @@ "doctrine/cache": "For using the default cached annotation reader and metadata cache.", "psr/cache-implementation": "For using the metadata cache.", "symfony/config": "For using the XML mapping loader.", - "symfony/http-foundation": "To use the DataUriNormalizer.", + "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.", "symfony/property-access": "For using the ObjectNormalizer.", "symfony/property-info": "To deserialize relations.", "symfony/yaml": "For using the default YAML mapping loader." @@ -2926,7 +2929,7 @@ ], "description": "Symfony Serializer Component", "homepage": "https://symfony.com", - "time": "2019-06-05T13:25:51+00:00" + "time": "2019-07-23T14:59:17+00:00" }, { "name": "symfony/service-contracts", @@ -2988,16 +2991,16 @@ }, { "name": "symfony/var-exporter", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "2b7c857d553423b2317ac0741fb2581d9bfd8fb7" + "reference": "9dee83031dcf6dcb53bb7ec1c51de085329bf5cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/2b7c857d553423b2317ac0741fb2581d9bfd8fb7", - "reference": "2b7c857d553423b2317ac0741fb2581d9bfd8fb7", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/9dee83031dcf6dcb53bb7ec1c51de085329bf5cb", + "reference": "9dee83031dcf6dcb53bb7ec1c51de085329bf5cb", "shasum": "" }, "require": { @@ -3044,20 +3047,20 @@ "instantiate", "serialize" ], - "time": "2019-04-10T19:42:49+00:00" + "time": "2019-06-22T08:39:44+00:00" }, { "name": "symfony/yaml", - "version": "v4.3.1", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "c60ecf5ba842324433b46f58dc7afc4487dbab99" + "reference": "34d29c2acd1ad65688f58452fd48a46bd996d5a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/c60ecf5ba842324433b46f58dc7afc4487dbab99", - "reference": "c60ecf5ba842324433b46f58dc7afc4487dbab99", + "url": "https://api.github.com/repos/symfony/yaml/zipball/34d29c2acd1ad65688f58452fd48a46bd996d5a6", + "reference": "34d29c2acd1ad65688f58452fd48a46bd996d5a6", "shasum": "" }, "require": { @@ -3103,7 +3106,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2019-04-06T14:04:46+00:00" + "time": "2019-07-24T14:47:54+00:00" }, { "name": "typo3/class-alias-loader", @@ -5104,16 +5107,16 @@ "packages-dev": [ { "name": "deployer/deployer", - "version": "v6.4.3", + "version": "v6.5.0", "source": { "type": "git", "url": "https://github.com/deployphp/deployer.git", - "reference": "a7d03f8febc547344c4f205dd2291a6d40a2af44" + "reference": "427b83ea550a7063cfcd543ce3e9e37f11c49419" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/deployphp/deployer/zipball/a7d03f8febc547344c4f205dd2291a6d40a2af44", - "reference": "a7d03f8febc547344c4f205dd2291a6d40a2af44", + "url": "https://api.github.com/repos/deployphp/deployer/zipball/427b83ea550a7063cfcd543ce3e9e37f11c49419", + "reference": "427b83ea550a7063cfcd543ce3e9e37f11c49419", "shasum": "" }, "require": { @@ -5152,7 +5155,7 @@ ], "description": "Deployment Tool", "homepage": "https://deployer.org", - "time": "2019-01-17T13:53:14+00:00" + "time": "2019-08-12T18:28:24+00:00" }, { "name": "deployer/phar-update",