From f9cab57ea2f18dd4cd709d368c365bafe059724a Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Thu, 20 Oct 2022 10:34:37 +0200 Subject: [PATCH] Replace with new version --- .gitignore | 3 - .gitlab-ci.yml | 47 - README.rst | 37 +- app/typo3conf/AdditionalConfiguration.php | 52 - app/typo3conf/LocalConfiguration.php | 95 - app/typo3conf/sites/main/config.yaml | 40 - codeception.yml | 35 - composer.json | 51 - composer.lock | 6611 ----------------- .../Classes/Controller/AddressController.php | 65 - .../Classes/Domain/Event/Address.php | 58 - .../Classes/Domain/Model/Address.php | 119 - .../Domain/Repository/AddressRepository.php | 29 - .../TCA/Overrides/tt_content.php | 40 - ..._exampleextension_domain_model_address.php | 115 - .../TypoScript/Config.typoscript | 3 - .../TypoScript/Extensions.typoscript | 1 - .../Configuration/TypoScript/Page.typoscript | 4 - .../Resources/Private/Language/locallang.xlf | 39 - .../Private/Language/locallang_tca.xlf | 29 - .../Private/Templates/Address/Edit.html | 41 - .../Private/Templates/Address/Index.html | 11 - localPackages/example_extension/composer.json | 21 - .../example_extension/ext_emconf.php | 23 - .../example_extension/ext_localconf.php | 51 - .../example_extension/ext_tables.sql | 9 - tests/AddressCest.php | 66 - tests/_data/.gitkeep | 0 tests/_data/typo3.sql | 1855 ----- tests/_envs/gitlab-ci.yml | 12 - tests/_envs/local.yml | 11 - tests/_output/.gitignore | 2 - tests/_support/AcceptanceTester.php | 26 - tests/_support/Helper/Acceptance.php | 10 - tests/_support/_generated/.gitignore | 2 - 35 files changed, 1 insertion(+), 9612 deletions(-) delete mode 100644 .gitignore delete mode 100644 .gitlab-ci.yml delete mode 100644 app/typo3conf/AdditionalConfiguration.php delete mode 100644 app/typo3conf/LocalConfiguration.php delete mode 100644 app/typo3conf/sites/main/config.yaml delete mode 100644 codeception.yml delete mode 100644 composer.json delete mode 100644 composer.lock delete mode 100644 localPackages/example_extension/Classes/Controller/AddressController.php delete mode 100644 localPackages/example_extension/Classes/Domain/Event/Address.php delete mode 100644 localPackages/example_extension/Classes/Domain/Model/Address.php delete mode 100644 localPackages/example_extension/Classes/Domain/Repository/AddressRepository.php delete mode 100644 localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php delete mode 100644 localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php delete mode 100644 localPackages/example_extension/Configuration/TypoScript/Config.typoscript delete mode 100644 localPackages/example_extension/Configuration/TypoScript/Extensions.typoscript delete mode 100644 localPackages/example_extension/Configuration/TypoScript/Page.typoscript delete mode 100644 localPackages/example_extension/Resources/Private/Language/locallang.xlf delete mode 100644 localPackages/example_extension/Resources/Private/Language/locallang_tca.xlf delete mode 100644 localPackages/example_extension/Resources/Private/Templates/Address/Edit.html delete mode 100644 localPackages/example_extension/Resources/Private/Templates/Address/Index.html delete mode 100644 localPackages/example_extension/composer.json delete mode 100644 localPackages/example_extension/ext_emconf.php delete mode 100644 localPackages/example_extension/ext_localconf.php delete mode 100644 localPackages/example_extension/ext_tables.sql delete mode 100644 tests/AddressCest.php delete mode 100644 tests/_data/.gitkeep delete mode 100644 tests/_data/typo3.sql delete mode 100644 tests/_envs/gitlab-ci.yml delete mode 100644 tests/_envs/local.yml delete mode 100644 tests/_output/.gitignore delete mode 100644 tests/_support/AcceptanceTester.php delete mode 100644 tests/_support/Helper/Acceptance.php delete mode 100644 tests/_support/_generated/.gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 9cd6983..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -/web -/vendor -/app diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 6e5e7c9..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,47 +0,0 @@ -stages: - - setup - - test - -setup:composer: - image: composer:latest - stage: setup - script: - - mkdir -p .composer/cache - - COMPOSER_CACHE_DIR=.composer/cache composer install --no-progress --no-ansi --no-interaction -o - cache: - key: composer-cache - paths: - - .composer/cache - artifacts: - expire_in: 30 mins - paths: - - app - - web - - vendor - -test:acceptance: - image: php:7.2-alpine - stage: test - services: - - mysql:5.7 - - mailhog/mailhog:v1.0.0 - - selenium/standalone-chrome - variables: - MYSQL_ROOT_PASSWORD: "dev" - MYSQL_DATABASE: "dev" - MYSQL_USER: "dev" - MYSQL_PASSWORD: "dev" - before_script: - - docker-php-ext-install pdo pdo_mysql mysqli - - export LOCAL_IP=$(ip a | grep inet | sed -n 2p | xargs | cut -d" " -f2 | cut -d"/" -f1) - - export TESTING_DOMAIN="$LOCAL_IP:8080" - - export TYPO3_CONTEXT=Testing/Acceptance - - php -S "$TESTING_DOMAIN" -t web &> php.log.txt & - script: - - ./vendor/bin/codecept run --env=gitlab-ci - artifacts: - when: on_failure - expire_in: 10 mins - paths: - - tests/_output/ - - php.log.txt diff --git a/README.rst b/README.rst index 1aa9053..7d3bc6e 100644 --- a/README.rst +++ b/README.rst @@ -3,39 +3,4 @@ Workshop GitLab Acceptance Testing This repository provides material for GitLab Acceptance testing. -Install -------- - -#. Run ``composer install`` - -#. Setup database ``own_workshopgitlabacceptance_testing`` - -#. Setup Mailhog. - -Execute -------- - - -#. Start selenium - E.g.:: - - ChromeDriver=~/Applications/chromedriver-76 java -Djava.awt.headless=true -jar ~/Applications/selenium-server-standalone-3.141.59.jar - -#. Start mailhog - -#. Start php server:: - - TYPO3_CONTEXT=Testing/Acceptance php -S 127.0.0.1:8080 -t web - -#. Execute tests:: - - ./vendor/bin/codecept run --env local - -TODO ----- - -* Add css / js for testing - -* Use docker registry for finished container with php support for mysql - -* Add db tests as examples to cest +Superseded by https://gitea.daniel-siepmann.de/danielsiepmann/acceptance-testing-with-php-codeception diff --git a/app/typo3conf/AdditionalConfiguration.php b/app/typo3conf/AdditionalConfiguration.php deleted file mode 100644 index 017d71b..0000000 --- a/app/typo3conf/AdditionalConfiguration.php +++ /dev/null @@ -1,52 +0,0 @@ - [ - 'trustedHostsPattern' => 'localhost:8080', - ], - 'MAIL' => [ - 'transport' => 'smtp', - 'transport_smtp_server' => '127.0.0.1:1025', - ], - 'DB' => [ - 'Connections' => [ - 'Default' => [ - 'dbname' => 'own_workshopgitlabacceptance_testing', - ], - ], - ], - ] - ); -} -if ((string) $appContext === 'Testing/Acceptance' && getenv('CI') === 'true') { - \TYPO3\CMS\Core\Utility\ArrayUtility::mergeRecursiveWithOverrule( - $GLOBALS['TYPO3_CONF_VARS'], - [ - 'SYS' => [ - 'trustedHostsPattern' => getenv('TESTING_DOMAIN'), - ], - 'MAIL' => [ - 'transport' => 'smtp', - 'transport_smtp_server' => 'mailhog__mailhog:1025', - ], - 'DB' => [ - 'Connections' => [ - 'Default' => [ - 'dbname' => 'dev', - 'password' => 'dev', - 'user' => 'dev', - 'host' => 'mysql', - ], - ], - ], - ] - ); -} diff --git a/app/typo3conf/LocalConfiguration.php b/app/typo3conf/LocalConfiguration.php deleted file mode 100644 index 806365f..0000000 --- a/app/typo3conf/LocalConfiguration.php +++ /dev/null @@ -1,95 +0,0 @@ - [ - 'debug' => true, - 'explicitADmode' => 'explicitAllow', - 'installToolPassword' => '$argon2i$v=19$m=65536,t=16,p=2$UzAyaTZoVEpFMmV2M1piSQ$TywI+4PRhqx2ggtTrV+R7BNrb0oheW6tr/SThHr6HgM', - 'loginSecurityLevel' => 'normal', - 'passwordHashing' => [ - 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash', - 'options' => [], - ], - ], - 'DB' => [ - 'Connections' => [ - 'Default' => [ - 'charset' => 'utf8mb4', - 'dbname' => 'own_workshopgitlabacceptance', - 'driver' => 'mysqli', - 'host' => '127.0.0.1', - 'password' => 'dev', - 'port' => 3306, - 'tableoptions' => [ - 'charset' => 'utf8mb4', - 'collate' => 'utf8mb4_unicode_ci', - ], - 'unix_socket' => '/var/run/mysqld/mysqld.sock', - 'user' => 'dev', - ], - ], - ], - 'EXT' => [ - 'extConf' => [ - 'backend' => 'a:6:{s:9:"loginLogo";s:0:"";s:19:"loginHighlightColor";s:0:"";s:20:"loginBackgroundImage";s:0:"";s:13:"loginFootnote";s:0:"";s:11:"backendLogo";s:0:"";s:14:"backendFavicon";s:0:"";}', - 'extensionmanager' => 'a:2:{s:21:"automaticInstallation";s:1:"1";s:11:"offlineMode";s:1:"0";}', - 'scheduler' => 'a:2:{s:11:"maxLifetime";s:4:"1440";s:15:"showSampleTasks";s:1:"1";}', - ], - ], - 'EXTENSIONS' => [ - 'backend' => [ - 'backendFavicon' => '', - 'backendLogo' => '', - 'loginBackgroundImage' => '', - 'loginFootnote' => '', - 'loginHighlightColor' => '', - 'loginLogo' => '', - ], - 'extensionmanager' => [ - 'automaticInstallation' => '1', - 'offlineMode' => '0', - ], - 'scheduler' => [ - 'maxLifetime' => '1440', - 'showSampleTasks' => '1', - ], - ], - 'FE' => [ - 'debug' => true, - 'loginSecurityLevel' => 'normal', - 'passwordHashing' => [ - 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash', - 'options' => [], - ], - ], - 'GFX' => [ - 'processor' => 'ImageMagick', - 'processor_allowTemporaryMasksAsPng' => false, - 'processor_colorspace' => 'sRGB', - 'processor_effects' => true, - 'processor_enabled' => true, - 'processor_path' => '/usr/bin/', - 'processor_path_lzw' => '/usr/bin/', - ], - 'MAIL' => [ - 'transport' => 'sendmail', - 'transport_sendmail_command' => '/usr/sbin/sendmail -t -i ', - 'transport_smtp_encrypt' => '', - 'transport_smtp_password' => '', - 'transport_smtp_server' => '', - 'transport_smtp_username' => '', - ], - 'SYS' => [ - 'devIPmask' => '*', - 'displayErrors' => 1, - 'encryptionKey' => 'fc4441867ae5c425bd55676e01d6d14fd2ae17ed8fd5682b495e74518eda4d437c0c48917772dc848fff31f5cea3c3eb', - 'exceptionalErrors' => 12290, - 'features' => [ - 'unifiedPageTranslationHandling' => true, - ], - 'sitename' => 'New TYPO3 Console site', - 'systemLogLevel' => 0, - 'systemMaintainers' => [ - 1, - ], - ], -]; diff --git a/app/typo3conf/sites/main/config.yaml b/app/typo3conf/sites/main/config.yaml deleted file mode 100644 index b95f97d..0000000 --- a/app/typo3conf/sites/main/config.yaml +++ /dev/null @@ -1,40 +0,0 @@ -rootPageId: 1 -base: / -languages: - - - title: English - enabled: true - languageId: '0' - base: / - typo3Language: default - locale: en_US.UTF-8 - iso-639-1: en - navigationTitle: English - hreflang: en-us - direction: ltr - flag: us -errorHandling: {} -routes: {} -baseVariants: {} - -# routeEnhancers: -# ExamplePlugin: -# type: Extbase -# extension: ExampleExtension -# plugin: Address -# defaultController: 'Address::index' -# routes: -# - -# routePath: '/edit/{address}' -# _controller: 'Address::edit' -# _arguments: -# 'address': 'address' -# - -# routePath: '/update' -# _controller: 'Address::update' -# aspects: -# address: -# type: PersistedAliasMapper -# tableName: 'tx_exampleextension_domain_model_address' -# routeFieldName: 'slug' -# routeValuePrefix: '/' diff --git a/codeception.yml b/codeception.yml deleted file mode 100644 index 9a42be1..0000000 --- a/codeception.yml +++ /dev/null @@ -1,35 +0,0 @@ -suites: - acceptance: - actor: AcceptanceTester - path: . - modules: - enabled: - - WebDriver: - url: https://workshop-gitlab-acceptance.own.localhost/ - browser: chrome - - Db: - dump: tests/_data/typo3.sql - populate: true - cleanup: true - - MailHog: - url: http://127.0.0.1 - port: 8025 - deleteEmailsAfterScenario: true - - \Helper\Acceptance - step_decorators: - - Codeception\Step\ConditionalAssertion - - Codeception\Step\TryTo - - Codeception\Step\Retry - -extensions: - enabled: [Codeception\Extension\RunFailed] - -params: - - env - -paths: - tests: tests - output: tests/_output - data: tests/_data - support: tests/_support - envs: tests/_envs diff --git a/composer.json b/composer.json deleted file mode 100644 index 42147be..0000000 --- a/composer.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "repositories": [ - { - "type": "path", - "url": "localPackages/*" - }, - { - "type": "composer", - "url": "https://composer.typo3.org/" - } - ], - "name": "website/typo3-extension-workshop", - "description": "Example TYPO3 installation for Acceptance Testing", - "license": "GPL-2.0-or-later", - "require": { - "helhum/typo3-console": "^5.5.5", - "helhum/typo3-secure-web": "^0.2.7", - "typo3-console/composer-auto-commands": "^0.2.0", - "typo3/cms-core": "^9.5.0", - "typo3/cms-about": "*", - "typo3/cms-belog": "*", - "typo3/cms-beuser": "*", - "typo3/cms-fluid-styled-content": "*", - "typo3/cms-info": "*", - "typo3/cms-info-pagetsconfig": "*", - "typo3/cms-rte-ckeditor": "*", - "typo3/cms-setup": "*", - "typo3/cms-t3editor": "*", - "typo3/cms-tstemplate": "*", - "workshop/example-extension": "@dev" - }, - "require-dev": { - "typo3/cms-lowlevel": "*", - "codeception/codeception": "^3.1.0", - "ericmartel/codeception-email-mailhog": "^1.0" - }, - "config": { - "platform": { - "php": "7.2" - } - }, - "extra": { - "typo3/cms": { - "app-dir": "app", - "root-dir": "app", - "web-dir": "web" - } - }, - "minimum-stability": "dev", - "prefer-stable": true -} diff --git a/composer.lock b/composer.lock deleted file mode 100644 index f8fdc46..0000000 --- a/composer.lock +++ /dev/null @@ -1,6611 +0,0 @@ -{ - "_readme": [ - "This file locks the dependencies of your project to a known state", - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", - "This file is @generated automatically" - ], - "content-hash": "479cc36fdc921ebc41e2aeb08ae8d7b9", - "packages": [ - { - "name": "algo26-matthias/idna-convert", - "version": "v1.1.0", - "source": { - "type": "git", - "url": "https://github.com/algo26-matthias/idna-convert.git", - "reference": "a6dfb6f87611e3a89d2eec4924a0f51db755c573" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/algo26-matthias/idna-convert/zipball/a6dfb6f87611e3a89d2eec4924a0f51db755c573", - "reference": "a6dfb6f87611e3a89d2eec4924a0f51db755c573", - "shasum": "" - }, - "require": { - "ext-pcre": "*", - "php": ">=5.6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Mso\\IdnaConvert\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-2.1+" - ], - "authors": [ - { - "name": "Matthias Sommerfeld", - "role": "Developer", - "email": "mso@phlylabs.de" - } - ], - "description": "A library for encoding and decoding internationalized domain names", - "homepage": "http://idnaconv.net/", - "keywords": [ - "idn", - "idna", - "php" - ], - "time": "2016-06-19T18:08:43+00:00" - }, - { - "name": "cogpowered/finediff", - "version": "0.3.1", - "source": { - "type": "git", - "url": "https://github.com/cogpowered/FineDiff.git", - "reference": "339ddc8c3afb656efed4f2f0a80e5c3d026f8ea8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/cogpowered/FineDiff/zipball/339ddc8c3afb656efed4f2f0a80e5c3d026f8ea8", - "reference": "339ddc8c3afb656efed4f2f0a80e5c3d026f8ea8", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "mockery/mockery": "*", - "phpunit/phpunit": "*" - }, - "type": "library", - "autoload": { - "psr-0": { - "cogpowered\\FineDiff": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Rob Crowe", - "email": "rob@cogpowered.com" - }, - { - "name": "Raymond Hill" - } - ], - "description": "PHP implementation of a Fine granularity Diff engine", - "homepage": "https://github.com/cogpowered/FineDiff", - "keywords": [ - "diff", - "finediff", - "opcode", - "string", - "text" - ], - "time": "2014-05-19T10:25:02+00:00" - }, - { - "name": "doctrine/annotations", - "version": "v1.7.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/annotations.git", - "reference": "fa4c4e861e809d6a1103bd620cce63ed91aedfeb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/fa4c4e861e809d6a1103bd620cce63ed91aedfeb", - "reference": "fa4c4e861e809d6a1103bd620cce63ed91aedfeb", - "shasum": "" - }, - "require": { - "doctrine/lexer": "1.*", - "php": "^7.1" - }, - "require-dev": { - "doctrine/cache": "1.*", - "phpunit/phpunit": "^7.5@dev" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.7.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "Docblock Annotations Parser", - "homepage": "http://www.doctrine-project.org", - "keywords": [ - "annotations", - "docblock", - "parser" - ], - "time": "2019-08-08T18:11:40+00:00" - }, - { - "name": "doctrine/cache", - "version": "v1.8.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/cache.git", - "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57", - "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57", - "shasum": "" - }, - "require": { - "php": "~7.1" - }, - "conflict": { - "doctrine/common": ">2.2,<2.4" - }, - "require-dev": { - "alcaeus/mongo-php-adapter": "^1.1", - "doctrine/coding-standard": "^4.0", - "mongodb/mongodb": "^1.1", - "phpunit/phpunit": "^7.0", - "predis/predis": "~1.0" - }, - "suggest": { - "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.8.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "Caching library offering an object-oriented API for many cache backends", - "homepage": "https://www.doctrine-project.org", - "keywords": [ - "cache", - "caching" - ], - "time": "2018-08-21T18:01:43+00:00" - }, - { - "name": "doctrine/dbal", - "version": "v2.9.2", - "source": { - "type": "git", - "url": "https://github.com/doctrine/dbal.git", - "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9", - "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9", - "shasum": "" - }, - "require": { - "doctrine/cache": "^1.0", - "doctrine/event-manager": "^1.0", - "ext-pdo": "*", - "php": "^7.1" - }, - "require-dev": { - "doctrine/coding-standard": "^5.0", - "jetbrains/phpstorm-stubs": "^2018.1.2", - "phpstan/phpstan": "^0.10.1", - "phpunit/phpunit": "^7.4", - "symfony/console": "^2.0.5|^3.0|^4.0", - "symfony/phpunit-bridge": "^3.4.5|^4.0.5" - }, - "suggest": { - "symfony/console": "For helpful console commands such as SQL execution and import of files." - }, - "bin": [ - "bin/doctrine-dbal" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.9.x-dev", - "dev-develop": "3.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\DBAL\\": "lib/Doctrine/DBAL" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - } - ], - "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.", - "homepage": "https://www.doctrine-project.org/projects/dbal.html", - "keywords": [ - "abstraction", - "database", - "dbal", - "mysql", - "persistence", - "pgsql", - "php", - "queryobject" - ], - "time": "2018-12-31T03:27:51+00:00" - }, - { - "name": "doctrine/event-manager", - "version": "v1.0.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/event-manager.git", - "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3", - "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "conflict": { - "doctrine/common": "<2.9@dev" - }, - "require-dev": { - "doctrine/coding-standard": "^4.0", - "phpunit/phpunit": "^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\": "lib/Doctrine/Common" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - }, - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - } - ], - "description": "Doctrine Event Manager component", - "homepage": "https://www.doctrine-project.org/projects/event-manager.html", - "keywords": [ - "event", - "eventdispatcher", - "eventmanager" - ], - "time": "2018-06-11T11:59:03+00:00" - }, - { - "name": "doctrine/instantiator", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "a2c590166b2133a4633738648b6b064edae0814a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a", - "reference": "a2c590166b2133a4633738648b6b064edae0814a", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "require-dev": { - "doctrine/coding-standard": "^6.0", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^0.13", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-shim": "^0.11", - "phpunit/phpunit": "^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.2.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "http://ocramius.github.com/" - } - ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", - "keywords": [ - "constructor", - "instantiate" - ], - "time": "2019-03-17T17:37:11+00:00" - }, - { - "name": "doctrine/lexer", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/lexer.git", - "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/e17f069ede36f7534b95adec71910ed1b49c74ea", - "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea", - "shasum": "" - }, - "require": { - "php": "^7.2" - }, - "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan": "^0.11.8", - "phpunit/phpunit": "^8.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", - "homepage": "https://www.doctrine-project.org/projects/lexer.html", - "keywords": [ - "annotations", - "docblock", - "lexer", - "parser", - "php" - ], - "time": "2019-07-30T19:33:28+00:00" - }, - { - "name": "guzzlehttp/guzzle", - "version": "6.3.3", - "source": { - "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba", - "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba", - "shasum": "" - }, - "require": { - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.4", - "php": ">=5.5" - }, - "require-dev": { - "ext-curl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.0" - }, - "suggest": { - "psr/log": "Required for using the Log middleware" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "6.3-dev" - } - }, - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "GuzzleHttp\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "rest", - "web service" - ], - "time": "2018-04-22T15:46:56+00:00" - }, - { - "name": "guzzlehttp/promises", - "version": "v1.3.1", - "source": { - "type": "git", - "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "shasum": "" - }, - "require": { - "php": ">=5.5.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle promises library", - "keywords": [ - "promise" - ], - "time": "2016-12-20T10:07:11+00:00" - }, - { - "name": "guzzlehttp/psr7", - "version": "1.6.1", - "source": { - "type": "git", - "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" - }, - "dist": { - "type": "zip", - "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 || ^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.6-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "Tobias Schultze", - "homepage": "https://github.com/Tobion" - } - ], - "description": "PSR-7 message implementation that also provides common utility methods", - "keywords": [ - "http", - "message", - "psr-7", - "request", - "response", - "stream", - "uri", - "url" - ], - "time": "2019-07-01T23:21:34+00:00" - }, - { - "name": "helhum/config-loader", - "version": "v0.12.2", - "source": { - "type": "git", - "url": "https://github.com/helhum/config-loader.git", - "reference": "1faf12146c505f3b929b10f09aabb8b675d7842d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/helhum/config-loader/zipball/1faf12146c505f3b929b10f09aabb8b675d7842d", - "reference": "1faf12146c505f3b929b10f09aabb8b675d7842d", - "shasum": "" - }, - "require": { - "php": "^7" - }, - "require-dev": { - "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": "^5.0", - "symfony/yaml": "^2.8 || ^3.3 || ^4.0" - }, - "suggest": { - "ext-yaml": "For improved performance when parsing yaml files you should use the PECL YAML Parser php extension", - "symfony/yaml": "To be able to parse yaml files, you will need symfony/yaml" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Helhum\\ConfigLoader\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "Generic config loader with context and environment support.", - "time": "2019-05-30T14:58:15+00:00" - }, - { - "name": "helhum/typo3-composer-setup", - "version": "v0.5.4", - "source": { - "type": "git", - "url": "https://github.com/helhum/typo3-composer-setup.git", - "reference": "d8a7db5fc160bd652aae2837b324b26f7b5ed6d4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/helhum/typo3-composer-setup/zipball/d8a7db5fc160bd652aae2837b324b26f7b5ed6d4", - "reference": "d8a7db5fc160bd652aae2837b324b26f7b5ed6d4", - "shasum": "" - }, - "require": { - "typo3/cms-composer-installers": "^1.4 || ^2.0", - "typo3/minimal": "^7 || ^8 || ^9" - }, - "require-dev": { - "typo3-console/php-server-command": "^0.1.0", - "typo3/cms-core": "^8.7.10 || ^9.5.2" - }, - "suggest": { - "helhum/typo3-console": "TYPO3 Console is highly recommended for any TYPO3 composer setup.", - "pagemachine/typo3-composer-legacy-cli ": "Provides the legacy cli_dispatch.phpsh entry point for TYPO3." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - }, - "typo3/cms": { - "web-dir": "public" - } - }, - "autoload": { - "psr-4": { - "Helhum\\Typo3ComposerSetup\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Helmut Hummel", - "role": "Developer", - "email": "info@helhum.io", - "homepage": "https://helhum.io" - } - ], - "description": "Set up required entry points for TYPO3 web directory", - "time": "2018-12-16T11:45:46+00:00" - }, - { - "name": "helhum/typo3-console", - "version": "v5.7.1", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-Console/TYPO3-Console.git", - "reference": "f450c9cd144672463deb4aa4209c195374b9f079" - }, - "dist": { - "type": "zip", - "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.13", - "helhum/typo3-console-plugin": "^2.0.2", - "php": "^7", - "symfony/console": "^3.4.4 || ^4.0", - "symfony/process": "^3.4.4 || ^4.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.22 || ~9.5.8" - }, - "conflict": { - "friendsoftypo3/dbal": "*", - "typo3-ter/dbal": "*" - }, - "replace": { - "typo3-ter/typo3-console": "self.version" - }, - "require-dev": { - "cweagans/composer-patches": "^1.6", - "jakub-onderka/php-parallel-lint": "^1.0", - "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.22 || ~9.5.8 || dev-master", - "typo3/cms-reports": "~8.7.22 || ~9.5.8 || dev-master" - }, - "bin": [ - "typo3cms" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.x-dev" - }, - "typo3/cms": { - "app-dir": ".Build", - "web-dir": ".Build/public" - } - }, - "autoload": { - "psr-4": { - "Helhum\\Typo3Console\\": [ - "Classes/Console/", - "Classes/Compatibility/" - ] - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Helmut Hummel", - "role": "Developer", - "email": "info@helhum.io", - "homepage": "http://helhum.io" - } - ], - "description": "A reliable and powerful command line interface for TYPO3 CMS", - "homepage": "http://insight.helhum.io/post/104528981610/about-the-beauty-and-power-of-typo3-console", - "keywords": [ - "cli", - "command", - "commandline", - "console", - "typo3" - ], - "time": "2019-08-07T12:46:56+00:00" - }, - { - "name": "helhum/typo3-console-plugin", - "version": "v2.0.5", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-Console/typo3-console-plugin.git", - "reference": "4a80b494adb97306bb19a14c72c214be79b5b079" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-Console/typo3-console-plugin/zipball/4a80b494adb97306bb19a14c72c214be79b5b079", - "reference": "4a80b494adb97306bb19a14c72c214be79b5b079", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.0", - "php": "^7.0", - "typo3/cms-composer-installers": "^1.4 || ^2.0" - }, - "require-dev": { - "composer/composer": "^1.0" - }, - "type": "composer-plugin", - "extra": { - "class": "Helhum\\Typo3ConsolePlugin\\Plugin", - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "autoload": { - "psr-4": { - "Helhum\\Typo3ConsolePlugin\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Helmut Hummel", - "email": "info@helhum.io" - } - ], - "description": "Installer plugin for helhum/typo3-console, to ease usage without the need to specify scripts in your root composer.json", - "homepage": "https://github.com/helhum/typo3-console-plugin", - "keywords": [ - "composer", - "plugin", - "typo3 console" - ], - "time": "2018-12-09T12:06:13+00:00" - }, - { - "name": "helhum/typo3-secure-web", - "version": "v0.2.9", - "source": { - "type": "git", - "url": "https://github.com/helhum/typo3-secure-web.git", - "reference": "da2c4c61199ee7b4c8b4a2a8c5f3d3d049eeb393" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/helhum/typo3-secure-web/zipball/da2c4c61199ee7b4c8b4a2a8c5f3d3d049eeb393", - "reference": "da2c4c61199ee7b4c8b4a2a8c5f3d3d049eeb393", - "shasum": "" - }, - "require": { - "helhum/typo3-composer-setup": "^0.5.4", - "typo3/cms-composer-installers": "^1.4 || ^2.0" - }, - "conflict": { - "helhum/typo3-composer-setup": "<0.5.4", - "typo3/cms": "<8.7.10", - "typo3/cms-core": "<8.7.10" - }, - "require-dev": { - "typo3-console/php-server-command": "^0.1.0", - "typo3/cms-core": "^8.7.10 || ^9.5.2" - }, - "type": "library", - "extra": { - "typo3/cms": { - "root-dir": "private", - "web-dir": "public" - } - }, - "autoload": { - "psr-4": { - "Helhum\\Typo3SecureWeb\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Helmut Hummel", - "role": "Developer", - "email": "info@helhum.io", - "homepage": "https://helhum.io" - } - ], - "description": "Set up secure TYPO3 web directory containing only public assets", - "time": "2019-05-30T15:24:17+00:00" - }, - { - "name": "nikic/php-parser", - "version": "v4.2.3", - "source": { - "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "e612609022e935f3d0337c1295176505b41188c8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e612609022e935f3d0337c1295176505b41188c8", - "reference": "e612609022e935f3d0337c1295176505b41188c8", - "shasum": "" - }, - "require": { - "ext-tokenizer": "*", - "php": ">=7.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" - }, - "bin": [ - "bin/php-parse" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.2-dev" - } - }, - "autoload": { - "psr-4": { - "PhpParser\\": "lib/PhpParser" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Nikita Popov" - } - ], - "description": "A PHP parser written in PHP", - "keywords": [ - "parser", - "php" - ], - "time": "2019-08-12T20:17:41+00:00" - }, - { - "name": "psr/cache", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/php-fig/cache.git", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Cache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for caching libraries", - "keywords": [ - "cache", - "psr", - "psr-6" - ], - "time": "2016-08-06T20:24:11+00:00" - }, - { - "name": "psr/container", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Container\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", - "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" - ], - "time": "2017-02-14T16:28:37+00:00" - }, - { - "name": "psr/http-message", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for HTTP messages", - "homepage": "https://github.com/php-fig/http-message", - "keywords": [ - "http", - "http-message", - "psr", - "psr-7", - "request", - "response" - ], - "time": "2016-08-06T14:39:51+00:00" - }, - { - "name": "psr/http-server-handler", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-server-handler.git", - "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7", - "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7", - "shasum": "" - }, - "require": { - "php": ">=7.0", - "psr/http-message": "^1.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Server\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for HTTP server-side request handler", - "keywords": [ - "handler", - "http", - "http-interop", - "psr", - "psr-15", - "psr-7", - "request", - "response", - "server" - ], - "time": "2018-10-30T16:46:14+00:00" - }, - { - "name": "psr/http-server-middleware", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-server-middleware.git", - "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5", - "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5", - "shasum": "" - }, - "require": { - "php": ">=7.0", - "psr/http-message": "^1.0", - "psr/http-server-handler": "^1.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Server\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for HTTP server-side middleware", - "keywords": [ - "http", - "http-interop", - "middleware", - "psr", - "psr-15", - "psr-7", - "request", - "response" - ], - "time": "2018-10-30T17:12:04+00:00" - }, - { - "name": "psr/log", - "version": "1.0.2", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ], - "time": "2016-10-10T12:19:37+00:00" - }, - { - "name": "ralouphie/getallheaders", - "version": "3.0.3", - "source": { - "type": "git", - "url": "https://github.com/ralouphie/getallheaders.git", - "reference": "120b605dfeb996808c31b6477290a714d356e822" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", - "reference": "120b605dfeb996808c31b6477290a714d356e822", - "shasum": "" - }, - "require": { - "php": ">=5.6" - }, - "require-dev": { - "php-coveralls/php-coveralls": "^2.1", - "phpunit/phpunit": "^5 || ^6.5" - }, - "type": "library", - "autoload": { - "files": [ - "src/getallheaders.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ralph Khattar", - "email": "ralph.khattar@gmail.com" - } - ], - "description": "A polyfill for getallheaders.", - "time": "2019-03-08T08:55:37+00:00" - }, - { - "name": "swiftmailer/swiftmailer", - "version": "v5.4.12", - "source": { - "type": "git", - "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "181b89f18a90f8925ef805f950d47a7190e9b950" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950", - "reference": "181b89f18a90f8925ef805f950d47a7190e9b950", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "require-dev": { - "mockery/mockery": "~0.9.1", - "symfony/phpunit-bridge": "~3.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.4-dev" - } - }, - "autoload": { - "files": [ - "lib/swift_required.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Chris Corbyn" - }, - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - } - ], - "description": "Swiftmailer, free feature-rich PHP mailer", - "homepage": "https://swiftmailer.symfony.com", - "keywords": [ - "email", - "mail", - "mailer" - ], - "time": "2018-07-31T09:26:32+00:00" - }, - { - "name": "symfony/cache", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/cache.git", - "reference": "d263af3cec33afa862310e58545fdc10d779806f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/d263af3cec33afa862310e58545fdc10d779806f", - "reference": "d263af3cec33afa862310e58545fdc10d779806f", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "psr/cache": "~1.0", - "psr/log": "~1.0", - "symfony/cache-contracts": "^1.1", - "symfony/service-contracts": "^1.1", - "symfony/var-exporter": "^4.2" - }, - "conflict": { - "doctrine/dbal": "<2.5", - "symfony/dependency-injection": "<3.4", - "symfony/var-dumper": "<3.4" - }, - "provide": { - "psr/cache-implementation": "1.0", - "psr/simple-cache-implementation": "1.0", - "symfony/cache-implementation": "1.0" - }, - "require-dev": { - "cache/integration-tests": "dev-master", - "doctrine/cache": "~1.6", - "doctrine/dbal": "~2.5", - "predis/predis": "~1.1", - "psr/simple-cache": "^1.0", - "symfony/config": "~4.2", - "symfony/dependency-injection": "~3.4|~4.1", - "symfony/var-dumper": "^4.1.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Cache\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "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": "Symfony Cache component with PSR-6, PSR-16, and tags", - "homepage": "https://symfony.com", - "keywords": [ - "caching", - "psr6" - ], - "time": "2019-06-28T13:16:30+00:00" - }, - { - "name": "symfony/cache-contracts", - "version": "v1.1.5", - "source": { - "type": "git", - "url": "https://github.com/symfony/cache-contracts.git", - "reference": "ec5524b669744b5f1dc9c66d3c2b091eb7e7f0db" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ec5524b669744b5f1dc9c66d3c2b091eb7e7f0db", - "reference": "ec5524b669744b5f1dc9c66d3c2b091eb7e7f0db", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "psr/cache": "^1.0" - }, - "suggest": { - "symfony/cache-implementation": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\Cache\\": "" - } - }, - "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": "Generic abstractions related to caching", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "time": "2019-06-13T11:15:36+00:00" - }, - { - "name": "symfony/console", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "8b0ae5742ce9aaa8b0075665862c1ca397d1c1d9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/8b0ae5742ce9aaa8b0075665862c1ca397d1c1d9", - "reference": "8b0ae5742ce9aaa8b0075665862c1ca397d1c1d9", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php73": "^1.8", - "symfony/service-contracts": "^1.1" - }, - "conflict": { - "symfony/dependency-injection": "<3.4", - "symfony/event-dispatcher": "<4.3", - "symfony/process": "<3.3" - }, - "provide": { - "psr/log-implementation": "1.0" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~3.4|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/event-dispatcher": "^4.3", - "symfony/lock": "~3.4|~4.0", - "symfony/process": "~3.4|~4.0", - "symfony/var-dumper": "^4.3" - }, - "suggest": { - "psr/log": "For using the console logger", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Console\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Console Component", - "homepage": "https://symfony.com", - "time": "2019-07-24T17:13:59+00:00" - }, - { - "name": "symfony/expression-language", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/expression-language.git", - "reference": "0243ebde208e0cb401b37e8b8a70a7c6a0aa1d6d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/expression-language/zipball/0243ebde208e0cb401b37e8b8a70a7c6a0aa1d6d", - "reference": "0243ebde208e0cb401b37e8b8a70a7c6a0aa1d6d", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "symfony/cache": "~3.4|~4.0", - "symfony/service-contracts": "^1.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\ExpressionLanguage\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony ExpressionLanguage Component", - "homepage": "https://symfony.com", - "time": "2019-05-30T16:10:05+00:00" - }, - { - "name": "symfony/finder", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "9638d41e3729459860bb96f6247ccb61faaa45f2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/9638d41e3729459860bb96f6247ccb61faaa45f2", - "reference": "9638d41e3729459860bb96f6247ccb61faaa45f2", - "shasum": "" - }, - "require": { - "php": "^7.1.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Finder\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Finder Component", - "homepage": "https://symfony.com", - "time": "2019-06-28T13:16:30+00:00" - }, - { - "name": "symfony/intl", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/intl.git", - "reference": "741376a9127841ffae39f197f8bd0ab2d4772157" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/intl/zipball/741376a9127841ffae39f197f8bd0ab2d4772157", - "reference": "741376a9127841ffae39f197f8bd0ab2d4772157", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "symfony/polyfill-intl-icu": "~1.0" - }, - "require-dev": { - "symfony/filesystem": "~3.4|~4.0" - }, - "suggest": { - "ext-intl": "to use the component with locales other than \"en\"" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Intl\\": "" - }, - "classmap": [ - "Resources/stubs" - ], - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - }, - { - "name": "Eriksen Costa", - "email": "eriksen.costa@infranology.com.br" - }, - { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.", - "homepage": "https://symfony.com", - "keywords": [ - "i18n", - "icu", - "internationalization", - "intl", - "l10n", - "localization" - ], - "time": "2019-07-24T14:47:54+00:00" - }, - { - "name": "symfony/polyfill-ctype", - "version": "v1.12.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-ctype": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.12-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for ctype functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "ctype", - "polyfill", - "portable" - ], - "time": "2019-08-06T08:03:45+00:00" - }, - { - "name": "symfony/polyfill-intl-icu", - "version": "v1.12.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "66810b9d6eb4af54d543867909d65ab9af654d7e" - }, - "dist": { - "type": "zip", - "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|~5.0" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.12-dev" - } - }, - "autoload": { - "files": [ - "bootstrap.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": "Symfony polyfill for intl's ICU-related data and classes", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "icu", - "intl", - "polyfill", - "portable", - "shim" - ], - "time": "2019-08-06T08:03:45+00:00" - }, - { - "name": "symfony/polyfill-intl-idn", - "version": "v1.12.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6af626ae6fa37d396dc90a399c0ff08e5cfc45b2", - "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2", - "shasum": "" - }, - "require": { - "php": ">=5.3.3", - "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php72": "^1.9" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.12-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Intl\\Idn\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "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", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "idn", - "intl", - "polyfill", - "portable", - "shim" - ], - "time": "2019-08-06T08:03:45+00:00" - }, - { - "name": "symfony/polyfill-mbstring", - "version": "v1.12.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-mbstring": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.12-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, - "files": [ - "bootstrap.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": "Symfony polyfill for the Mbstring extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" - ], - "time": "2019-08-06T08:03:45+00:00" - }, - { - "name": "symfony/polyfill-php72", - "version": "v1.12.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "04ce3335667451138df4307d6a9b61565560199e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/04ce3335667451138df4307d6a9b61565560199e", - "reference": "04ce3335667451138df4307d6a9b61565560199e", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.12-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php72\\": "" - }, - "files": [ - "bootstrap.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": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "time": "2019-08-06T08:03:45+00:00" - }, - { - "name": "symfony/polyfill-php73", - "version": "v1.12.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/2ceb49eaccb9352bff54d22570276bb75ba4a188", - "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.12-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" - }, - "files": [ - "bootstrap.php" - ], - "classmap": [ - "Resources/stubs" - ] - }, - "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": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "time": "2019-08-06T08:03:45+00:00" - }, - { - "name": "symfony/process", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/856d35814cf287480465bb7a6c413bb7f5f5e69c", - "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c", - "shasum": "" - }, - "require": { - "php": "^7.1.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Process\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Process Component", - "homepage": "https://symfony.com", - "time": "2019-05-30T16:10:05+00:00" - }, - { - "name": "symfony/routing", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/routing.git", - "reference": "a88c47a5861549f5dc1197660818084c3b67d773" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/a88c47a5861549f5dc1197660818084c3b67d773", - "reference": "a88c47a5861549f5dc1197660818084c3b67d773", - "shasum": "" - }, - "require": { - "php": "^7.1.3" - }, - "conflict": { - "symfony/config": "<4.2", - "symfony/dependency-injection": "<3.4", - "symfony/yaml": "<3.4" - }, - "require-dev": { - "doctrine/annotations": "~1.2", - "psr/log": "~1.0", - "symfony/config": "~4.2", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/expression-language": "~3.4|~4.0", - "symfony/http-foundation": "~3.4|~4.0", - "symfony/yaml": "~3.4|~4.0" - }, - "suggest": { - "doctrine/annotations": "For using the annotation loader", - "symfony/config": "For using the all-in-one router or any loader", - "symfony/expression-language": "For using expression matching", - "symfony/http-foundation": "For using a Symfony Request object", - "symfony/yaml": "For using the YAML loader" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Routing\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Routing Component", - "homepage": "https://symfony.com", - "keywords": [ - "router", - "routing", - "uri", - "url" - ], - "time": "2019-07-23T14:43:56+00:00" - }, - { - "name": "symfony/service-contracts", - "version": "v1.1.5", - "source": { - "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d", - "reference": "f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "psr/container": "^1.0" - }, - "suggest": { - "symfony/service-implementation": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\Service\\": "" - } - }, - "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": "Generic abstractions related to writing services", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "time": "2019-06-13T11:15:36+00:00" - }, - { - "name": "symfony/var-exporter", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/var-exporter.git", - "reference": "9dee83031dcf6dcb53bb7ec1c51de085329bf5cb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/9dee83031dcf6dcb53bb7ec1c51de085329bf5cb", - "reference": "9dee83031dcf6dcb53bb7ec1c51de085329bf5cb", - "shasum": "" - }, - "require": { - "php": "^7.1.3" - }, - "require-dev": { - "symfony/var-dumper": "^4.1.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\VarExporter\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "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 blend of var_export() + serialize() to turn any serializable data structure to plain PHP code", - "homepage": "https://symfony.com", - "keywords": [ - "clone", - "construct", - "export", - "hydrate", - "instantiate", - "serialize" - ], - "time": "2019-06-22T08:39:44+00:00" - }, - { - "name": "symfony/yaml", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "34d29c2acd1ad65688f58452fd48a46bd996d5a6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/34d29c2acd1ad65688f58452fd48a46bd996d5a6", - "reference": "34d29c2acd1ad65688f58452fd48a46bd996d5a6", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "symfony/polyfill-ctype": "~1.8" - }, - "conflict": { - "symfony/console": "<3.4" - }, - "require-dev": { - "symfony/console": "~3.4|~4.0" - }, - "suggest": { - "symfony/console": "For validating YAML files using the lint command" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\Yaml\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Yaml Component", - "homepage": "https://symfony.com", - "time": "2019-07-24T14:47:54+00:00" - }, - { - "name": "typo3-console/composer-auto-commands", - "version": "v0.2.1", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-Console/composer-auto-commands.git", - "reference": "6bbe1a9f913a5a52ce75052d04f088fcb38211b5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-Console/composer-auto-commands/zipball/6bbe1a9f913a5a52ce75052d04f088fcb38211b5", - "reference": "6bbe1a9f913a5a52ce75052d04f088fcb38211b5", - "shasum": "" - }, - "require": { - "helhum/typo3-console": "^4.9.5 || ^5.0", - "php": "^7.0", - "typo3/cms-composer-installers": "^1.4.2 || ^2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Typo3Console\\ComposerAutoCommands\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "Execute TYPO3 Console commands on 'composer install'", - "time": "2019-05-13T12:29:30+00:00" - }, - { - "name": "typo3/class-alias-loader", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/TYPO3/class-alias-loader.git", - "reference": "4972f9f6c2bad07ab1620b5c9717fa626e9b03b0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3/class-alias-loader/zipball/4972f9f6c2bad07ab1620b5c9717fa626e9b03b0", - "reference": "4972f9f6c2bad07ab1620b5c9717fa626e9b03b0", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.0", - "php": ">=5.3.7" - }, - "replace": { - "helhum/class-alias-loader": "*" - }, - "require-dev": { - "composer/composer": "dev-master", - "mikey179/vfsstream": "1.4.*@dev", - "phpunit/phpunit": "^4.8" - }, - "type": "composer-plugin", - "extra": { - "class": "TYPO3\\ClassAliasLoader\\Plugin", - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\ClassAliasLoader\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Helmut Hummel", - "email": "info@helhum.io" - } - ], - "description": "Amends the composer class loader to support class aliases to provide backwards compatibility for packages", - "homepage": "http://github.com/TYPO3/class-alias-loader", - "keywords": [ - "alias", - "autoloader", - "classloader", - "composer" - ], - "time": "2018-10-03T12:49:56+00:00" - }, - { - "name": "typo3/cms-about", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/about.git", - "reference": "1b705f3c69db3aada522fb022e3b4bab8b2d887a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/about/zipball/1b705f3c69db3aada522fb022e3b4bab8b2d887a", - "reference": "1b705f3c69db3aada522fb022e3b4bab8b2d887a", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "about": "*", - "aboutmodules": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "partOfFactoryDefault": true - }, - "extension-key": "about" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\About\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Shows info about TYPO3, installed extensions and a separate module for available modules.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-backend", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/backend.git", - "reference": "111fe69b44ccbdbde60784f8f945c85572871d86" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/backend/zipball/111fe69b44ccbdbde60784f8f945c85572871d86", - "reference": "111fe69b44ccbdbde60784f8f945c85572871d86", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9", - "typo3/cms-recordlist": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "backend": "*", - "typo3/cms-context-help": "*", - "typo3/cms-cshmanual": "*", - "typo3/cms-func-wizards": "*", - "typo3/cms-wizard-crpages": "*", - "typo3/cms-wizard-sortpages": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "protected": true, - "partOfFactoryDefault": true, - "partOfMinimalUsableSystem": true - }, - "extension-key": "backend" - }, - "typo3/class-alias-loader": { - "class-alias-maps": [ - "Migrations/Code/ClassAliasMap.php" - ] - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Backend\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Classes for the TYPO3 backend.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-belog", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/belog.git", - "reference": "7d6bd8976feb4e1387cb1d131a05af8478687198" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/belog/zipball/7d6bd8976feb4e1387cb1d131a05af8478687198", - "reference": "7d6bd8976feb4e1387cb1d131a05af8478687198", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "belog": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "partOfFactoryDefault": true - }, - "extension-key": "belog" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Belog\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Displays backend log, both per page and system wide. Available as the module Tools>Log (system wide overview) and Web>Info/Log (page relative overview).", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-beuser", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/beuser.git", - "reference": "ee992e061cd7de4e52839b3583514b2fb7d3d157" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/beuser/zipball/ee992e061cd7de4e52839b3583514b2fb7d3d157", - "reference": "ee992e061cd7de4e52839b3583514b2fb7d3d157", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "beuser": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "partOfFactoryDefault": true - }, - "extension-key": "beuser" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Beuser\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Backend user administration and overview. Allows you to compare the settings of users and verify their permissions and see who is online.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-cli", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/TYPO3/cms-cli.git", - "reference": "215a0bf5c446b4e0b20f4562bbaf3d6215a5ee82" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3/cms-cli/zipball/215a0bf5c446b4e0b20f4562bbaf3d6215a5ee82", - "reference": "215a0bf5c446b4e0b20f4562bbaf3d6215a5ee82", - "shasum": "" - }, - "require": { - "php": "^7.0" - }, - "bin": [ - "typo3" - ], - "type": "library", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "TYPO3 command line binary", - "homepage": "https://typo3.org", - "time": "2018-03-08T20:16:43+00:00" - }, - { - "name": "typo3/cms-composer-installers", - "version": "v2.2.2", - "source": { - "type": "git", - "url": "https://github.com/TYPO3/CmsComposerInstallers.git", - "reference": "46437b54cf06c9c657a49283403b097943d7f524" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3/CmsComposerInstallers/zipball/46437b54cf06c9c657a49283403b097943d7f524", - "reference": "46437b54cf06c9c657a49283403b097943d7f524", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.0.0", - "php": ">=7.0.0 <7.4" - }, - "conflict": { - "composer/installers": "<1.0.24 || >1.0.24" - }, - "replace": { - "lw/typo3cms-installers": "*", - "netresearch/composer-installers": "*" - }, - "require-dev": { - "composer/composer": "^1.2" - }, - "type": "composer-plugin", - "extra": { - "class": "TYPO3\\CMS\\Composer\\Installer\\Plugin", - "branch-alias": { - "dev-master": "2.1.x-dev" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Composer\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "The TYPO3 Community", - "role": "Contributor", - "homepage": "https://typo3.org/community/" - }, - { - "name": "TYPO3 CMS Core Team", - "role": "Developer", - "homepage": "https://forge.typo3.org/projects/typo3cms-core" - } - ], - "description": "TYPO3 CMS Installers", - "homepage": "https://github.com/TYPO3/CmsComposerInstallers", - "keywords": [ - "cms", - "core", - "extension", - "installer", - "typo3" - ], - "time": "2019-03-04T12:18:45+00:00" - }, - { - "name": "typo3/cms-core", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/core.git", - "reference": "bd1efc03cb11b4a8c8249cc81d09ec87de87b8c7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/core/zipball/bd1efc03cb11b4a8c8249cc81d09ec87de87b8c7", - "reference": "bd1efc03cb11b4a8c8249cc81d09ec87de87b8c7", - "shasum": "" - }, - "require": { - "algo26-matthias/idna-convert": "^1.1.0", - "cogpowered/finediff": "~0.3.1", - "doctrine/annotations": "^1.3", - "doctrine/dbal": "^2.8.1", - "doctrine/instantiator": "^1.1", - "doctrine/lexer": "^1.0", - "ext-json": "*", - "ext-pcre": "*", - "ext-pdo": "*", - "ext-session": "*", - "ext-xml": "*", - "guzzlehttp/guzzle": "^6.3.0", - "nikic/php-parser": "^4.2", - "php": "^7.2", - "psr/container": "^1.0", - "psr/http-message": "~1.0", - "psr/http-server-handler": "^1.0", - "psr/http-server-middleware": "^1.0", - "psr/log": "~1.0.0", - "swiftmailer/swiftmailer": "~5.4.5", - "symfony/console": "^4.1", - "symfony/expression-language": "^4.1", - "symfony/finder": "^4.1", - "symfony/polyfill-intl-icu": "^1.6", - "symfony/polyfill-intl-idn": "^1.10", - "symfony/polyfill-mbstring": "^1.2", - "symfony/routing": "^4.1", - "symfony/yaml": "^4.1", - "typo3/class-alias-loader": "^1.0", - "typo3/cms-cli": "^2.0", - "typo3/cms-composer-installers": "^2.0", - "typo3/phar-stream-wrapper": "^3.1.2", - "typo3fluid/fluid": "^2.6.1" - }, - "conflict": { - "symfony/cache": "< 2.8.50 >= 2.8.0 || < 3.4.26 >= 3.4.0 || < 4.1.12 >= 4.1.0 || < 4.2.7 >= 4.2.0", - "symfony/finder": "2.7.44 || 2.8.37 || 3.4.7 || 4.0.7", - "symfony/routing": "4.2.7", - "typo3/cms": "*" - }, - "replace": { - "core": "*", - "typo3/cms-lang": "*", - "typo3/cms-saltedpasswords": "*", - "typo3/cms-sv": "*" - }, - "require-dev": { - "codeception/codeception": "^2.5.4", - "fiunchinho/phpunit-randomizer": "^4.0", - "friendsofphp/php-cs-fixer": "^2.12.2", - "typo3/cms-styleguide": "~9.2.2", - "typo3/testing-framework": "~4.12.0" - }, - "suggest": { - "ext-fileinfo": "Used for proper file type detection in the file abstraction layer", - "ext-gd": "GDlib/Freetype is required for building images with text (GIFBUILDER) and can also be used to scale images", - "ext-intl": "TYPO3 with unicode-based filesystems", - "ext-mysqli": "", - "ext-openssl": "", - "ext-zip": "", - "ext-zlib": "TYPO3 uses zlib for amongst others output compression and un/packing t3x extension files" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "protected": true, - "partOfFactoryDefault": true, - "partOfMinimalUsableSystem": true - }, - "extension-key": "core" - }, - "typo3/class-alias-loader": { - "class-alias-maps": [ - "Migrations/Code/ClassAliasMap.php" - ] - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Core\\": "Classes/" - }, - "classmap": [ - "Resources/PHP/" - ], - "files": [ - "Resources/PHP/GlobalDebugFunctions.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "The core library of TYPO3.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-extbase", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/extbase.git", - "reference": "a919ba5322016ebfae00ddd9fa48196ae1be9a71" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/extbase/zipball/a919ba5322016ebfae00ddd9fa48196ae1be9a71", - "reference": "a919ba5322016ebfae00ddd9fa48196ae1be9a71", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "extbase": "*" - }, - "suggest": { - "typo3/cms-scheduler": "Additional scheduler tasks" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "protected": true, - "partOfFactoryDefault": true, - "partOfMinimalUsableSystem": true - }, - "extension-key": "extbase" - }, - "typo3/class-alias-loader": { - "class-alias-maps": [ - "Migrations/Code/ClassAliasMap.php" - ] - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Extbase\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "A framework to build extensions for TYPO3 CMS.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-extensionmanager", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/extensionmanager.git", - "reference": "3e0f4d066f390f5712d0f98225c095bc2ebaab82" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/extensionmanager/zipball/3e0f4d066f390f5712d0f98225c095bc2ebaab82", - "reference": "3e0f4d066f390f5712d0f98225c095bc2ebaab82", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "extensionmanager": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "protected": true, - "partOfFactoryDefault": true, - "partOfMinimalUsableSystem": true - }, - "extension-key": "extensionmanager" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Extensionmanager\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "TYPO3 Extension Manager", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-filelist", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/filelist.git", - "reference": "45378374b86aac35f346470573d70525fe9b1315" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/filelist/zipball/45378374b86aac35f346470573d70525fe9b1315", - "reference": "45378374b86aac35f346470573d70525fe9b1315", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "filelist": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "protected": true, - "partOfFactoryDefault": true, - "partOfMinimalUsableSystem": true - }, - "extension-key": "filelist" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Filelist\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Listing of files in the directory", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-fluid", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/fluid.git", - "reference": "6738a29b6a944003ecd2594a273374f23e4282a1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/fluid/zipball/6738a29b6a944003ecd2594a273374f23e4282a1", - "reference": "6738a29b6a944003ecd2594a273374f23e4282a1", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9", - "typo3/cms-extbase": "9.5.9", - "typo3fluid/fluid": "^2.6.1" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "fluid": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "protected": true, - "partOfFactoryDefault": true, - "partOfMinimalUsableSystem": true - }, - "extension-key": "fluid" - }, - "typo3/class-alias-loader": { - "class-alias-maps": [ - "Migrations/Code/ClassAliasMap.php" - ] - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Fluid\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Fluid is a next-generation templating engine which makes the life of extension authors a lot easier!", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-fluid-styled-content", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/fluid_styled_content.git", - "reference": "327def20b191c486affa6ef284cd1c5a8c878056" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/fluid_styled_content/zipball/327def20b191c486affa6ef284cd1c5a8c878056", - "reference": "327def20b191c486affa6ef284cd1c5a8c878056", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9", - "typo3/cms-fluid": "9.5.9", - "typo3/cms-frontend": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "fluid_styled_content": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "partOfFactoryDefault": true - }, - "extension-key": "fluid_styled_content" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\FluidStyledContent\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "A set of common content elements based on Fluid for Frontend output.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-frontend", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/frontend.git", - "reference": "a3b9f0039ff8d3021f6d93752ffbc8edef4231b8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/frontend/zipball/a3b9f0039ff8d3021f6d93752ffbc8edef4231b8", - "reference": "a3b9f0039ff8d3021f6d93752ffbc8edef4231b8", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "frontend": "*" - }, - "suggest": { - "typo3/cms-adminpanel": "Provides additional information and functionality for backend users in the frontend." - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "protected": true, - "partOfFactoryDefault": true, - "partOfMinimalUsableSystem": true - }, - "extension-key": "frontend" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Frontend\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Classes for the frontend of TYPO3.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-info", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/info.git", - "reference": "a1f9d5af386a6dbf569d0a847d2c4351005a23f1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/info/zipball/a1f9d5af386a6dbf569d0a847d2c4351005a23f1", - "reference": "a1f9d5af386a6dbf569d0a847d2c4351005a23f1", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "info": "*", - "typo3/cms-info-pagetsconfig": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "partOfFactoryDefault": true - }, - "extension-key": "info" - }, - "typo3/class-alias-loader": { - "always-add-alias-loader": true, - "class-alias-maps": [ - "Migrations/Code/ClassAliasMap.php" - ] - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Info\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Shows various infos", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-install", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/install.git", - "reference": "1160cc6a574c892f0d758546c1a4105daaf0e0f2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/install/zipball/1160cc6a574c892f0d758546c1a4105daaf0e0f2", - "reference": "1160cc6a574c892f0d758546c1a4105daaf0e0f2", - "shasum": "" - }, - "require": { - "nikic/php-parser": "^4.2", - "symfony/finder": "^4.1", - "typo3/cms-core": "9.5.9", - "typo3/cms-extbase": "9.5.9", - "typo3/cms-fluid": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "install": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "protected": true, - "partOfFactoryDefault": true, - "partOfMinimalUsableSystem": true - }, - "extension-key": "install" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Install\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "The Install Tool mounted as the module Tools>Install in TYPO3.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-recordlist", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/recordlist.git", - "reference": "95af24c587f002ac34c9f980d7b682cd4b22f1b8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/recordlist/zipball/95af24c587f002ac34c9f980d7b682cd4b22f1b8", - "reference": "95af24c587f002ac34c9f980d7b682cd4b22f1b8", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "recordlist": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "protected": true, - "partOfFactoryDefault": true, - "partOfMinimalUsableSystem": true - }, - "extension-key": "recordlist" - }, - "typo3/class-alias-loader": { - "class-alias-maps": [ - "Migrations/Code/ClassAliasMap.php" - ] - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Recordlist\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "List of database-records", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-rte-ckeditor", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/rte_ckeditor.git", - "reference": "d45c301af19899bc613f1bd550f2b953c788cdbf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/rte_ckeditor/zipball/d45c301af19899bc613f1bd550f2b953c788cdbf", - "reference": "d45c301af19899bc613f1bd550f2b953c788cdbf", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "rte_ckeditor": "*" - }, - "suggest": { - "typo3/cms-setup": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "partOfFactoryDefault": true - }, - "extension-key": "rte_ckeditor" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\RteCKEditor\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Integration of CKEditor as Rich Text Editor.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-scheduler", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/scheduler.git", - "reference": "171e37b7a7eafe881cce08d44b0f9e007295c015" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/scheduler/zipball/171e37b7a7eafe881cce08d44b0f9e007295c015", - "reference": "171e37b7a7eafe881cce08d44b0f9e007295c015", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "scheduler": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "extension-key": "scheduler" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Scheduler\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "The TYPO3 Scheduler let's you register tasks to happen at a specific time", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-setup", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/setup.git", - "reference": "9ef5a3e29172797a3c4b1fe881302463b3a6c02f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/setup/zipball/9ef5a3e29172797a3c4b1fe881302463b3a6c02f", - "reference": "9ef5a3e29172797a3c4b1fe881302463b3a6c02f", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "setup": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "partOfFactoryDefault": true - }, - "extension-key": "setup" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Setup\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Allows users to edit a limited set of options for their user profile, eg. preferred language and their name and email address.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-t3editor", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/t3editor.git", - "reference": "798c7291257f60d1d1b7f9934d401e9b4fa40b26" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/t3editor/zipball/798c7291257f60d1d1b7f9934d401e9b4fa40b26", - "reference": "798c7291257f60d1d1b7f9934d401e9b4fa40b26", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "t3editor": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "partOfFactoryDefault": true - }, - "extension-key": "t3editor" - }, - "typo3/class-alias-loader": { - "class-alias-maps": [ - "Migrations/Code/ClassAliasMap.php" - ] - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\T3editor\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "JavaScript-driven editor with syntax highlighting and codecompletion. Based on CodeMirror.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/cms-tstemplate", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/tstemplate.git", - "reference": "a20f22c3ec1095e59c3c0113611f69c8b2a2713f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/tstemplate/zipball/a20f22c3ec1095e59c3c0113611f69c8b2a2713f", - "reference": "a20f22c3ec1095e59c3c0113611f69c8b2a2713f", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "tstemplate": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "partOfFactoryDefault": true - }, - "extension-key": "tstemplate" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Tstemplate\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Framework for management of TypoScript template records for the CMS frontend.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "typo3/minimal", - "version": "v9.5.0", - "source": { - "type": "git", - "url": "https://github.com/TYPO3/minimal.git", - "reference": "6ca773e3a90f193ef6cbac7be810d2e8eb6d06fc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3/minimal/zipball/6ca773e3a90f193ef6cbac7be810d2e8eb6d06fc", - "reference": "6ca773e3a90f193ef6cbac7be810d2e8eb6d06fc", - "shasum": "" - }, - "require": { - "typo3/cms-backend": "9.5.*@dev", - "typo3/cms-core": "9.5.*@dev", - "typo3/cms-extbase": "9.5.*@dev", - "typo3/cms-extensionmanager": "9.5.*@dev", - "typo3/cms-filelist": "9.5.*@dev", - "typo3/cms-fluid": "9.5.*@dev", - "typo3/cms-frontend": "9.5.*@dev", - "typo3/cms-install": "9.5.*@dev", - "typo3/cms-recordlist": "9.5.*@dev" - }, - "type": "metapackage", - "extra": { - "branch-alias": { - "dev-master": "9.5.x-dev" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "The TYPO3 Community", - "role": "Contributor", - "homepage": "https://typo3.org/community/" - }, - { - "name": "TYPO3 CMS Core Team", - "role": "Developer", - "homepage": "https://forge.typo3.org/projects/typo3cms-core" - } - ], - "description": "Minimal required set of TYPO3 extensions", - "time": "2018-09-11T09:01:10+00:00" - }, - { - "name": "typo3/phar-stream-wrapper", - "version": "v3.1.2", - "source": { - "type": "git", - "url": "https://github.com/TYPO3/phar-stream-wrapper.git", - "reference": "df7609a2f6cc4013d7bd12f1a2412d127b28f771" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/df7609a2f6cc4013d7bd12f1a2412d127b28f771", - "reference": "df7609a2f6cc4013d7bd12f1a2412d127b28f771", - "shasum": "" - }, - "require": { - "ext-json": "*", - "php": "^7.0" - }, - "require-dev": { - "ext-xdebug": "*", - "phpunit/phpunit": "^6.5" - }, - "suggest": { - "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "v3.x-dev" - } - }, - "autoload": { - "psr-4": { - "TYPO3\\PharStreamWrapper\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Interceptors for PHP's native phar:// stream handling", - "homepage": "https://typo3.org/", - "keywords": [ - "phar", - "php", - "security", - "stream-wrapper" - ], - "time": "2019-05-14T13:14:14+00:00" - }, - { - "name": "typo3fluid/fluid", - "version": "2.6.4", - "source": { - "type": "git", - "url": "https://github.com/TYPO3/Fluid.git", - "reference": "75a3a58c2ee1edf1c3b5c0d5bc815e9252afba80" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3/Fluid/zipball/75a3a58c2ee1edf1c3b5c0d5bc815e9252afba80", - "reference": "75a3a58c2ee1edf1c3b5c0d5bc815e9252afba80", - "shasum": "" - }, - "require": { - "php": ">=5.5.0" - }, - "require-dev": { - "mikey179/vfsstream": "^1.6", - "php-coveralls/php-coveralls": "^2.1", - "phpunit/phpunit": "^8.1", - "squizlabs/php_codesniffer": "^2.7" - }, - "bin": [ - "bin/fluid" - ], - "type": "library", - "autoload": { - "psr-4": { - "TYPO3Fluid\\Fluid\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-3.0-or-later" - ], - "description": "The TYPO3 Fluid template rendering engine", - "time": "2019-09-13T09:38:15+00:00" - }, - { - "name": "workshop/example-extension", - "version": "dev-master", - "dist": { - "type": "path", - "url": "localPackages/example_extension", - "reference": "9c0990fe6a3271225e01dc16e429eaeee8cb0037" - }, - "require": { - "php": ">=7.2.0", - "typo3/cms-core": "*" - }, - "type": "typo3-cms-extension", - "autoload": { - "psr-4": { - "Workshop\\ExampleExtension\\": "Classes" - } - }, - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Daniel Siepmann", - "email": "coding@daniel-siepmann.de" - } - ], - "description": "Example for TYPO3 Extension Workshop." - } - ], - "packages-dev": [ - { - "name": "behat/gherkin", - "version": "v4.6.0", - "source": { - "type": "git", - "url": "https://github.com/Behat/Gherkin.git", - "reference": "ab0a02ea14893860bca00f225f5621d351a3ad07" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/ab0a02ea14893860bca00f225f5621d351a3ad07", - "reference": "ab0a02ea14893860bca00f225f5621d351a3ad07", - "shasum": "" - }, - "require": { - "php": ">=5.3.1" - }, - "require-dev": { - "phpunit/phpunit": "~4.5|~5", - "symfony/phpunit-bridge": "~2.7|~3|~4", - "symfony/yaml": "~2.3|~3|~4" - }, - "suggest": { - "symfony/yaml": "If you want to parse features, represented in YAML files" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, - "autoload": { - "psr-0": { - "Behat\\Gherkin": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - } - ], - "description": "Gherkin DSL parser for PHP 5.3", - "homepage": "http://behat.org/", - "keywords": [ - "BDD", - "Behat", - "Cucumber", - "DSL", - "gherkin", - "parser" - ], - "time": "2019-01-16T14:22:17+00:00" - }, - { - "name": "codeception/codeception", - "version": "3.1.0", - "source": { - "type": "git", - "url": "https://github.com/Codeception/Codeception.git", - "reference": "9ed9146567770e564fdd2b656edb385330f7fae7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Codeception/Codeception/zipball/9ed9146567770e564fdd2b656edb385330f7fae7", - "reference": "9ed9146567770e564fdd2b656edb385330f7fae7", - "shasum": "" - }, - "require": { - "behat/gherkin": "^4.4.0", - "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3", - "codeception/stub": "^2.0 | ^3.0", - "ext-curl": "*", - "ext-json": "*", - "ext-mbstring": "*", - "facebook/webdriver": "^1.6.0", - "guzzlehttp/guzzle": "^6.3.0", - "guzzlehttp/psr7": "~1.4", - "hoa/console": "~3.0", - "php": ">=5.6.0 <8.0", - "symfony/browser-kit": ">=2.7 <5.0", - "symfony/console": ">=2.7 <5.0", - "symfony/css-selector": ">=2.7 <5.0", - "symfony/dom-crawler": ">=2.7 <5.0", - "symfony/event-dispatcher": ">=2.7 <5.0", - "symfony/finder": ">=2.7 <5.0", - "symfony/yaml": ">=2.7 <5.0" - }, - "require-dev": { - "codeception/specify": "~0.3", - "doctrine/annotations": "^1", - "doctrine/data-fixtures": "^1", - "doctrine/orm": "^2", - "flow/jsonpath": "~0.2", - "monolog/monolog": "~1.8", - "pda/pheanstalk": "~3.0", - "php-amqplib/php-amqplib": "~2.4", - "predis/predis": "^1.0", - "squizlabs/php_codesniffer": "~2.0", - "symfony/process": ">=2.7 <5.0", - "vlucas/phpdotenv": "^3.0" - }, - "suggest": { - "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module", - "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests", - "codeception/specify": "BDD-style code blocks", - "codeception/verify": "BDD-style assertions", - "flow/jsonpath": "For using JSONPath in REST module", - "league/factory-muffin": "For DataFactory module", - "league/factory-muffin-faker": "For Faker support in DataFactory module", - "phpseclib/phpseclib": "for SFTP option in FTP Module", - "stecman/symfony-console-completion": "For BASH autocompletion", - "symfony/phpunit-bridge": "For phpunit-bridge support" - }, - "bin": [ - "codecept" - ], - "type": "library", - "extra": { - "branch-alias": [] - }, - "autoload": { - "psr-4": { - "Codeception\\": "src/Codeception", - "Codeception\\Extension\\": "ext" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Bodnarchuk", - "email": "davert@mail.ua", - "homepage": "http://codegyre.com" - } - ], - "description": "BDD-style testing framework", - "homepage": "http://codeception.com/", - "keywords": [ - "BDD", - "TDD", - "acceptance testing", - "functional testing", - "unit testing" - ], - "time": "2019-08-18T16:44:20+00:00" - }, - { - "name": "codeception/phpunit-wrapper", - "version": "7.7.1", - "source": { - "type": "git", - "url": "https://github.com/Codeception/phpunit-wrapper.git", - "reference": "ab04a956264291505ea84998f43cf91639b4575d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/ab04a956264291505ea84998f43cf91639b4575d", - "reference": "ab04a956264291505ea84998f43cf91639b4575d", - "shasum": "" - }, - "require": { - "phpunit/php-code-coverage": "^6.0", - "phpunit/phpunit": "7.5.*", - "sebastian/comparator": "^3.0", - "sebastian/diff": "^3.0" - }, - "require-dev": { - "codeception/specify": "*", - "vlucas/phpdotenv": "^3.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Codeception\\PHPUnit\\": "src\\" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Davert", - "email": "davert.php@resend.cc" - } - ], - "description": "PHPUnit classes used by Codeception", - "time": "2019-02-26T20:35:32+00:00" - }, - { - "name": "codeception/stub", - "version": "3.0.0", - "source": { - "type": "git", - "url": "https://github.com/Codeception/Stub.git", - "reference": "eea518711d736eab838c1274593c4568ec06b23d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Codeception/Stub/zipball/eea518711d736eab838c1274593c4568ec06b23d", - "reference": "eea518711d736eab838c1274593c4568ec06b23d", - "shasum": "" - }, - "require": { - "codeception/phpunit-wrapper": "^6.6.1 | ^7.7.1 | ^8.0.3", - "phpunit/phpunit": ">=6.5 <9.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Codeception\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", - "time": "2019-08-10T16:20:53+00:00" - }, - { - "name": "ericmartel/codeception-email", - "version": "1.0.2", - "source": { - "type": "git", - "url": "https://github.com/ericmartel/codeception-email.git", - "reference": "a53370c349467af06a245110014667c3a432e6b8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ericmartel/codeception-email/zipball/a53370c349467af06a245110014667c3a432e6b8", - "reference": "a53370c349467af06a245110014667c3a432e6b8", - "shasum": "" - }, - "type": "library", - "autoload": { - "psr-4": { - "Codeception\\Email\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Eric Martel", - "email": "emartel@gmail.com" - } - ], - "description": "Provides test helpers for Codeception when testing email functionality", - "time": "2017-09-05T17:02:06+00:00" - }, - { - "name": "ericmartel/codeception-email-mailhog", - "version": "1.0.8", - "source": { - "type": "git", - "url": "https://github.com/ericmartel/codeception-email-mailhog.git", - "reference": "5aa917bf97c5a228ef5cba90741cf3b7ff373ea7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ericmartel/codeception-email-mailhog/zipball/5aa917bf97c5a228ef5cba90741cf3b7ff373ea7", - "reference": "5aa917bf97c5a228ef5cba90741cf3b7ff373ea7", - "shasum": "" - }, - "require": { - "ericmartel/codeception-email": "^1.0", - "guzzlehttp/guzzle": "^6.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "Codeception\\Module\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Eric Martel", - "email": "emartel@gmail.com" - } - ], - "description": "Provides test helpers for Codeception when testing email functionality with MailHog", - "time": "2017-11-25T04:16:18+00:00" - }, - { - "name": "facebook/webdriver", - "version": "1.7.1", - "source": { - "type": "git", - "url": "https://github.com/facebook/php-webdriver.git", - "reference": "e43de70f3c7166169d0f14a374505392734160e5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/e43de70f3c7166169d0f14a374505392734160e5", - "reference": "e43de70f3c7166169d0f14a374505392734160e5", - "shasum": "" - }, - "require": { - "ext-curl": "*", - "ext-json": "*", - "ext-mbstring": "*", - "ext-zip": "*", - "php": "^5.6 || ~7.0", - "symfony/process": "^2.8 || ^3.1 || ^4.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^2.0", - "jakub-onderka/php-parallel-lint": "^0.9.2", - "php-coveralls/php-coveralls": "^2.0", - "php-mock/php-mock-phpunit": "^1.1", - "phpunit/phpunit": "^5.7", - "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0", - "squizlabs/php_codesniffer": "^2.6", - "symfony/var-dumper": "^3.3 || ^4.0" - }, - "suggest": { - "ext-SimpleXML": "For Firefox profile creation" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-community": "1.5-dev" - } - }, - "autoload": { - "psr-4": { - "Facebook\\WebDriver\\": "lib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "description": "A PHP client for Selenium WebDriver", - "homepage": "https://github.com/facebook/php-webdriver", - "keywords": [ - "facebook", - "php", - "selenium", - "webdriver" - ], - "time": "2019-06-13T08:02:18+00:00" - }, - { - "name": "hoa/consistency", - "version": "1.17.05.02", - "source": { - "type": "git", - "url": "https://github.com/hoaproject/Consistency.git", - "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hoaproject/Consistency/zipball/fd7d0adc82410507f332516faf655b6ed22e4c2f", - "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f", - "shasum": "" - }, - "require": { - "hoa/exception": "~1.0", - "php": ">=5.5.0" - }, - "require-dev": { - "hoa/stream": "~1.0", - "hoa/test": "~2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Hoa\\Consistency\\": "." - }, - "files": [ - "Prelude.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Ivan Enderlin", - "email": "ivan.enderlin@hoa-project.net" - }, - { - "name": "Hoa community", - "homepage": "https://hoa-project.net/" - } - ], - "description": "The Hoa\\Consistency library.", - "homepage": "https://hoa-project.net/", - "keywords": [ - "autoloader", - "callable", - "consistency", - "entity", - "flex", - "keyword", - "library" - ], - "time": "2017-05-02T12:18:12+00:00" - }, - { - "name": "hoa/console", - "version": "3.17.05.02", - "source": { - "type": "git", - "url": "https://github.com/hoaproject/Console.git", - "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hoaproject/Console/zipball/e231fd3ea70e6d773576ae78de0bdc1daf331a66", - "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66", - "shasum": "" - }, - "require": { - "hoa/consistency": "~1.0", - "hoa/event": "~1.0", - "hoa/exception": "~1.0", - "hoa/file": "~1.0", - "hoa/protocol": "~1.0", - "hoa/stream": "~1.0", - "hoa/ustring": "~4.0" - }, - "require-dev": { - "hoa/test": "~2.0" - }, - "suggest": { - "ext-pcntl": "To enable hoa://Event/Console/Window:resize.", - "hoa/dispatcher": "To use the console kit.", - "hoa/router": "To use the console kit." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } - }, - "autoload": { - "psr-4": { - "Hoa\\Console\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Ivan Enderlin", - "email": "ivan.enderlin@hoa-project.net" - }, - { - "name": "Hoa community", - "homepage": "https://hoa-project.net/" - } - ], - "description": "The Hoa\\Console library.", - "homepage": "https://hoa-project.net/", - "keywords": [ - "autocompletion", - "chrome", - "cli", - "console", - "cursor", - "getoption", - "library", - "option", - "parser", - "processus", - "readline", - "terminfo", - "tput", - "window" - ], - "time": "2017-05-02T12:26:19+00:00" - }, - { - "name": "hoa/event", - "version": "1.17.01.13", - "source": { - "type": "git", - "url": "https://github.com/hoaproject/Event.git", - "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hoaproject/Event/zipball/6c0060dced212ffa3af0e34bb46624f990b29c54", - "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54", - "shasum": "" - }, - "require": { - "hoa/consistency": "~1.0", - "hoa/exception": "~1.0" - }, - "require-dev": { - "hoa/test": "~2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Hoa\\Event\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Ivan Enderlin", - "email": "ivan.enderlin@hoa-project.net" - }, - { - "name": "Hoa community", - "homepage": "https://hoa-project.net/" - } - ], - "description": "The Hoa\\Event library.", - "homepage": "https://hoa-project.net/", - "keywords": [ - "event", - "library", - "listener", - "observer" - ], - "time": "2017-01-13T15:30:50+00:00" - }, - { - "name": "hoa/exception", - "version": "1.17.01.16", - "source": { - "type": "git", - "url": "https://github.com/hoaproject/Exception.git", - "reference": "091727d46420a3d7468ef0595651488bfc3a458f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hoaproject/Exception/zipball/091727d46420a3d7468ef0595651488bfc3a458f", - "reference": "091727d46420a3d7468ef0595651488bfc3a458f", - "shasum": "" - }, - "require": { - "hoa/consistency": "~1.0", - "hoa/event": "~1.0" - }, - "require-dev": { - "hoa/test": "~2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Hoa\\Exception\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Ivan Enderlin", - "email": "ivan.enderlin@hoa-project.net" - }, - { - "name": "Hoa community", - "homepage": "https://hoa-project.net/" - } - ], - "description": "The Hoa\\Exception library.", - "homepage": "https://hoa-project.net/", - "keywords": [ - "exception", - "library" - ], - "time": "2017-01-16T07:53:27+00:00" - }, - { - "name": "hoa/file", - "version": "1.17.07.11", - "source": { - "type": "git", - "url": "https://github.com/hoaproject/File.git", - "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hoaproject/File/zipball/35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca", - "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca", - "shasum": "" - }, - "require": { - "hoa/consistency": "~1.0", - "hoa/event": "~1.0", - "hoa/exception": "~1.0", - "hoa/iterator": "~2.0", - "hoa/stream": "~1.0" - }, - "require-dev": { - "hoa/test": "~2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Hoa\\File\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Ivan Enderlin", - "email": "ivan.enderlin@hoa-project.net" - }, - { - "name": "Hoa community", - "homepage": "https://hoa-project.net/" - } - ], - "description": "The Hoa\\File library.", - "homepage": "https://hoa-project.net/", - "keywords": [ - "Socket", - "directory", - "file", - "finder", - "library", - "link", - "temporary" - ], - "time": "2017-07-11T07:42:15+00:00" - }, - { - "name": "hoa/iterator", - "version": "2.17.01.10", - "source": { - "type": "git", - "url": "https://github.com/hoaproject/Iterator.git", - "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hoaproject/Iterator/zipball/d1120ba09cb4ccd049c86d10058ab94af245f0cc", - "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc", - "shasum": "" - }, - "require": { - "hoa/consistency": "~1.0", - "hoa/exception": "~1.0" - }, - "require-dev": { - "hoa/test": "~2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "autoload": { - "psr-4": { - "Hoa\\Iterator\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Ivan Enderlin", - "email": "ivan.enderlin@hoa-project.net" - }, - { - "name": "Hoa community", - "homepage": "https://hoa-project.net/" - } - ], - "description": "The Hoa\\Iterator library.", - "homepage": "https://hoa-project.net/", - "keywords": [ - "iterator", - "library" - ], - "time": "2017-01-10T10:34:47+00:00" - }, - { - "name": "hoa/protocol", - "version": "1.17.01.14", - "source": { - "type": "git", - "url": "https://github.com/hoaproject/Protocol.git", - "reference": "5c2cf972151c45f373230da170ea015deecf19e2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hoaproject/Protocol/zipball/5c2cf972151c45f373230da170ea015deecf19e2", - "reference": "5c2cf972151c45f373230da170ea015deecf19e2", - "shasum": "" - }, - "require": { - "hoa/consistency": "~1.0", - "hoa/exception": "~1.0" - }, - "require-dev": { - "hoa/test": "~2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Hoa\\Protocol\\": "." - }, - "files": [ - "Wrapper.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Ivan Enderlin", - "email": "ivan.enderlin@hoa-project.net" - }, - { - "name": "Hoa community", - "homepage": "https://hoa-project.net/" - } - ], - "description": "The Hoa\\Protocol library.", - "homepage": "https://hoa-project.net/", - "keywords": [ - "library", - "protocol", - "resource", - "stream", - "wrapper" - ], - "time": "2017-01-14T12:26:10+00:00" - }, - { - "name": "hoa/stream", - "version": "1.17.02.21", - "source": { - "type": "git", - "url": "https://github.com/hoaproject/Stream.git", - "reference": "3293cfffca2de10525df51436adf88a559151d82" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hoaproject/Stream/zipball/3293cfffca2de10525df51436adf88a559151d82", - "reference": "3293cfffca2de10525df51436adf88a559151d82", - "shasum": "" - }, - "require": { - "hoa/consistency": "~1.0", - "hoa/event": "~1.0", - "hoa/exception": "~1.0", - "hoa/protocol": "~1.0" - }, - "require-dev": { - "hoa/test": "~2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Hoa\\Stream\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Ivan Enderlin", - "email": "ivan.enderlin@hoa-project.net" - }, - { - "name": "Hoa community", - "homepage": "https://hoa-project.net/" - } - ], - "description": "The Hoa\\Stream library.", - "homepage": "https://hoa-project.net/", - "keywords": [ - "Context", - "bucket", - "composite", - "filter", - "in", - "library", - "out", - "protocol", - "stream", - "wrapper" - ], - "time": "2017-02-21T16:01:06+00:00" - }, - { - "name": "hoa/ustring", - "version": "4.17.01.16", - "source": { - "type": "git", - "url": "https://github.com/hoaproject/Ustring.git", - "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hoaproject/Ustring/zipball/e6326e2739178799b1fe3fdd92029f9517fa17a0", - "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0", - "shasum": "" - }, - "require": { - "hoa/consistency": "~1.0", - "hoa/exception": "~1.0" - }, - "require-dev": { - "hoa/test": "~2.0" - }, - "suggest": { - "ext-iconv": "ext/iconv must be present (or a third implementation) to use Hoa\\Ustring::transcode().", - "ext-intl": "To get a better Hoa\\Ustring::toAscii() and Hoa\\Ustring::compareTo()." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.x-dev" - } - }, - "autoload": { - "psr-4": { - "Hoa\\Ustring\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Ivan Enderlin", - "email": "ivan.enderlin@hoa-project.net" - }, - { - "name": "Hoa community", - "homepage": "https://hoa-project.net/" - } - ], - "description": "The Hoa\\Ustring library.", - "homepage": "https://hoa-project.net/", - "keywords": [ - "library", - "search", - "string", - "unicode" - ], - "time": "2017-01-16T07:08:25+00:00" - }, - { - "name": "myclabs/deep-copy", - "version": "1.9.3", - "source": { - "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/007c053ae6f31bba39dfa19a7726f56e9763bbea", - "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "replace": { - "myclabs/deep-copy": "self.version" - }, - "require-dev": { - "doctrine/collections": "^1.0", - "doctrine/common": "^2.6", - "phpunit/phpunit": "^7.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "DeepCopy\\": "src/DeepCopy/" - }, - "files": [ - "src/DeepCopy/deep_copy.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Create deep copies (clones) of your objects", - "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" - ], - "time": "2019-08-09T12:45:53+00:00" - }, - { - "name": "phar-io/manifest", - "version": "1.0.3", - "source": { - "type": "git", - "url": "https://github.com/phar-io/manifest.git", - "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", - "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-phar": "*", - "phar-io/version": "^2.0", - "php": "^5.6 || ^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Arne Blankerts", - "role": "Developer", - "email": "arne@blankerts.de" - }, - { - "name": "Sebastian Heuer", - "role": "Developer", - "email": "sebastian@phpeople.de" - }, - { - "name": "Sebastian Bergmann", - "role": "Developer", - "email": "sebastian@phpunit.de" - } - ], - "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", - "time": "2018-07-08T19:23:20+00:00" - }, - { - "name": "phar-io/version", - "version": "2.0.1", - "source": { - "type": "git", - "url": "https://github.com/phar-io/version.git", - "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", - "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", - "shasum": "" - }, - "require": { - "php": "^5.6 || ^7.0" - }, - "type": "library", - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Arne Blankerts", - "role": "Developer", - "email": "arne@blankerts.de" - }, - { - "name": "Sebastian Heuer", - "role": "Developer", - "email": "sebastian@phpeople.de" - }, - { - "name": "Sebastian Bergmann", - "role": "Developer", - "email": "sebastian@phpunit.de" - } - ], - "description": "Library for handling version information and constraints", - "time": "2018-07-08T19:19:57+00:00" - }, - { - "name": "phpdocumentor/reflection-common", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a", - "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "require-dev": { - "phpunit/phpunit": "~6" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jaap van Otterdijk", - "email": "opensource@ijaap.nl" - } - ], - "description": "Common reflection classes used by phpdocumentor to reflect the code structure", - "homepage": "http://www.phpdoc.org", - "keywords": [ - "FQSEN", - "phpDocumentor", - "phpdoc", - "reflection", - "static analysis" - ], - "time": "2018-08-07T13:53:10+00:00" - }, - { - "name": "phpdocumentor/reflection-docblock", - "version": "4.3.2", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e", - "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e", - "shasum": "" - }, - "require": { - "php": "^7.0", - "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0", - "phpdocumentor/type-resolver": "~0.4 || ^1.0.0", - "webmozart/assert": "^1.0" - }, - "require-dev": { - "doctrine/instantiator": "^1.0.5", - "mockery/mockery": "^1.0", - "phpunit/phpunit": "^6.4" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - } - ], - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2019-09-12T14:27:41+00:00" - }, - { - "name": "phpdocumentor/type-resolver", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9", - "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9", - "shasum": "" - }, - "require": { - "php": "^7.1", - "phpdocumentor/reflection-common": "^2.0" - }, - "require-dev": { - "ext-tokenizer": "^7.1", - "mockery/mockery": "~1", - "phpunit/phpunit": "^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - } - ], - "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "time": "2019-08-22T18:11:29+00:00" - }, - { - "name": "phpspec/prophecy", - "version": "1.9.0", - "source": { - "type": "git", - "url": "https://github.com/phpspec/prophecy.git", - "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203", - "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203", - "shasum": "" - }, - "require": { - "doctrine/instantiator": "^1.0.2", - "php": "^5.3|^7.0", - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", - "sebastian/comparator": "^1.1|^2.0|^3.0", - "sebastian/recursion-context": "^1.0|^2.0|^3.0" - }, - "require-dev": { - "phpspec/phpspec": "^2.5|^3.2", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.8.x-dev" - } - }, - "autoload": { - "psr-4": { - "Prophecy\\": "src/Prophecy" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - }, - { - "name": "Marcello Duarte", - "email": "marcello.duarte@gmail.com" - } - ], - "description": "Highly opinionated mocking framework for PHP 5.3+", - "homepage": "https://github.com/phpspec/prophecy", - "keywords": [ - "Double", - "Dummy", - "fake", - "mock", - "spy", - "stub" - ], - "time": "2019-10-03T11:07:50+00:00" - }, - { - "name": "phpunit/php-code-coverage", - "version": "6.1.4", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", - "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-xmlwriter": "*", - "php": "^7.1", - "phpunit/php-file-iterator": "^2.0", - "phpunit/php-text-template": "^1.2.1", - "phpunit/php-token-stream": "^3.0", - "sebastian/code-unit-reverse-lookup": "^1.0.1", - "sebastian/environment": "^3.1 || ^4.0", - "sebastian/version": "^2.0.1", - "theseer/tokenizer": "^1.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.0" - }, - "suggest": { - "ext-xdebug": "^2.6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "6.1-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "role": "lead", - "email": "sebastian@phpunit.de" - } - ], - "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", - "homepage": "https://github.com/sebastianbergmann/php-code-coverage", - "keywords": [ - "coverage", - "testing", - "xunit" - ], - "time": "2018-10-31T16:06:48+00:00" - }, - { - "name": "phpunit/php-file-iterator", - "version": "2.0.2", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "050bedf145a257b1ff02746c31894800e5122946" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", - "reference": "050bedf145a257b1ff02746c31894800e5122946", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "role": "lead", - "email": "sebastian@phpunit.de" - } - ], - "description": "FilterIterator implementation that filters files based on a list of suffixes.", - "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", - "keywords": [ - "filesystem", - "iterator" - ], - "time": "2018-09-13T20:33:42+00:00" - }, - { - "name": "phpunit/php-text-template", - "version": "1.2.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "type": "library", - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "role": "lead", - "email": "sebastian@phpunit.de" - } - ], - "description": "Simple template engine.", - "homepage": "https://github.com/sebastianbergmann/php-text-template/", - "keywords": [ - "template" - ], - "time": "2015-06-21T13:50:34+00:00" - }, - { - "name": "phpunit/php-timer", - "version": "2.1.2", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "1038454804406b0b5f5f520358e78c1c2f71501e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e", - "reference": "1038454804406b0b5f5f520358e78c1c2f71501e", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.1-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "role": "lead", - "email": "sebastian@phpunit.de" - } - ], - "description": "Utility class for timing", - "homepage": "https://github.com/sebastianbergmann/php-timer/", - "keywords": [ - "timer" - ], - "time": "2019-06-07T04:22:29+00:00" - }, - { - "name": "phpunit/php-token-stream", - "version": "3.1.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff", - "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff", - "shasum": "" - }, - "require": { - "ext-tokenizer": "*", - "php": "^7.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Wrapper around PHP's tokenizer extension.", - "homepage": "https://github.com/sebastianbergmann/php-token-stream/", - "keywords": [ - "tokenizer" - ], - "time": "2019-09-17T06:23:10+00:00" - }, - { - "name": "phpunit/phpunit", - "version": "7.5.16", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "316afa6888d2562e04aeb67ea7f2017a0eb41661" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/316afa6888d2562e04aeb67ea7f2017a0eb41661", - "reference": "316afa6888d2562e04aeb67ea7f2017a0eb41661", - "shasum": "" - }, - "require": { - "doctrine/instantiator": "^1.1", - "ext-dom": "*", - "ext-json": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "ext-xml": "*", - "myclabs/deep-copy": "^1.7", - "phar-io/manifest": "^1.0.2", - "phar-io/version": "^2.0", - "php": "^7.1", - "phpspec/prophecy": "^1.7", - "phpunit/php-code-coverage": "^6.0.7", - "phpunit/php-file-iterator": "^2.0.1", - "phpunit/php-text-template": "^1.2.1", - "phpunit/php-timer": "^2.1", - "sebastian/comparator": "^3.0", - "sebastian/diff": "^3.0", - "sebastian/environment": "^4.0", - "sebastian/exporter": "^3.1", - "sebastian/global-state": "^2.0", - "sebastian/object-enumerator": "^3.0.3", - "sebastian/resource-operations": "^2.0", - "sebastian/version": "^2.0.1" - }, - "conflict": { - "phpunit/phpunit-mock-objects": "*" - }, - "require-dev": { - "ext-pdo": "*" - }, - "suggest": { - "ext-soap": "*", - "ext-xdebug": "*", - "phpunit/php-invoker": "^2.0" - }, - "bin": [ - "phpunit" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "7.5-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" - } - ], - "description": "The PHP Unit Testing framework.", - "homepage": "https://phpunit.de/", - "keywords": [ - "phpunit", - "testing", - "xunit" - ], - "time": "2019-09-14T09:08:39+00:00" - }, - { - "name": "sebastian/code-unit-reverse-lookup", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", - "shasum": "" - }, - "require": { - "php": "^5.6 || ^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Looks up which function or method a line of code belongs to", - "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", - "time": "2017-03-04T06:30:41+00:00" - }, - { - "name": "sebastian/comparator", - "version": "3.0.2", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", - "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", - "shasum": "" - }, - "require": { - "php": "^7.1", - "sebastian/diff": "^3.0", - "sebastian/exporter": "^3.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" - }, - { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Provides the functionality to compare PHP values for equality", - "homepage": "https://github.com/sebastianbergmann/comparator", - "keywords": [ - "comparator", - "compare", - "equality" - ], - "time": "2018-07-12T15:12:46+00:00" - }, - { - "name": "sebastian/diff", - "version": "3.0.2", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29", - "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.5 || ^8.0", - "symfony/process": "^2 || ^3.3 || ^4" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" - ], - "time": "2019-02-04T06:01:07+00:00" - }, - { - "name": "sebastian/environment", - "version": "4.2.2", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/f2a2c8e1c97c11ace607a7a667d73d47c19fe404", - "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.5" - }, - "suggest": { - "ext-posix": "*" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.2-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "http://www.github.com/sebastianbergmann/environment", - "keywords": [ - "Xdebug", - "environment", - "hhvm" - ], - "time": "2019-05-05T09:05:15+00:00" - }, - { - "name": "sebastian/exporter", - "version": "3.1.2", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e", - "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e", - "shasum": "" - }, - "require": { - "php": "^7.0", - "sebastian/recursion-context": "^3.0" - }, - "require-dev": { - "ext-mbstring": "*", - "phpunit/phpunit": "^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" - }, - { - "name": "Adam Harvey", - "email": "aharvey@php.net" - }, - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "Provides the functionality to export PHP variables for visualization", - "homepage": "http://www.github.com/sebastianbergmann/exporter", - "keywords": [ - "export", - "exporter" - ], - "time": "2019-09-14T09:02:43+00:00" - }, - { - "name": "sebastian/global-state", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", - "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", - "shasum": "" - }, - "require": { - "php": "^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.0" - }, - "suggest": { - "ext-uopz": "*" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Snapshotting of global state", - "homepage": "http://www.github.com/sebastianbergmann/global-state", - "keywords": [ - "global state" - ], - "time": "2017-04-27T15:39:26+00:00" - }, - { - "name": "sebastian/object-enumerator", - "version": "3.0.3", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", - "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", - "shasum": "" - }, - "require": { - "php": "^7.0", - "sebastian/object-reflector": "^1.1.1", - "sebastian/recursion-context": "^3.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Traverses array structures and object graphs to enumerate all referenced objects", - "homepage": "https://github.com/sebastianbergmann/object-enumerator/", - "time": "2017-08-03T12:35:26+00:00" - }, - { - "name": "sebastian/object-reflector", - "version": "1.1.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "773f97c67f28de00d397be301821b06708fca0be" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", - "reference": "773f97c67f28de00d397be301821b06708fca0be", - "shasum": "" - }, - "require": { - "php": "^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Allows reflection of object attributes, including inherited and non-public ones", - "homepage": "https://github.com/sebastianbergmann/object-reflector/", - "time": "2017-03-29T09:07:27+00:00" - }, - { - "name": "sebastian/recursion-context", - "version": "3.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", - "shasum": "" - }, - "require": { - "php": "^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Adam Harvey", - "email": "aharvey@php.net" - } - ], - "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2017-03-03T06:23:57+00:00" - }, - { - "name": "sebastian/resource-operations", - "version": "2.0.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", - "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Provides a list of PHP built-in functions that operate on resources", - "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "time": "2018-10-04T04:07:39+00:00" - }, - { - "name": "sebastian/version", - "version": "2.0.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/version.git", - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", - "shasum": "" - }, - "require": { - "php": ">=5.6" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "role": "lead", - "email": "sebastian@phpunit.de" - } - ], - "description": "Library that helps with managing the version number of Git-hosted PHP projects", - "homepage": "https://github.com/sebastianbergmann/version", - "time": "2016-10-03T07:35:21+00:00" - }, - { - "name": "symfony/browser-kit", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/browser-kit.git", - "reference": "a29dd02a1f3f81b9a15c7730cc3226718ddb55ca" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/a29dd02a1f3f81b9a15c7730cc3226718ddb55ca", - "reference": "a29dd02a1f3f81b9a15c7730cc3226718ddb55ca", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "symfony/dom-crawler": "~3.4|~4.0" - }, - "require-dev": { - "symfony/css-selector": "~3.4|~4.0", - "symfony/http-client": "^4.3", - "symfony/mime": "^4.3", - "symfony/process": "~3.4|~4.0" - }, - "suggest": { - "symfony/process": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\BrowserKit\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony BrowserKit Component", - "homepage": "https://symfony.com", - "time": "2019-06-11T15:41:59+00:00" - }, - { - "name": "symfony/css-selector", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "105c98bb0c5d8635bea056135304bd8edcc42b4d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/105c98bb0c5d8635bea056135304bd8edcc42b4d", - "reference": "105c98bb0c5d8635bea056135304bd8edcc42b4d", - "shasum": "" - }, - "require": { - "php": "^7.1.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\CssSelector\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony CssSelector Component", - "homepage": "https://symfony.com", - "time": "2019-01-16T21:53:39+00:00" - }, - { - "name": "symfony/dom-crawler", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "291397232a2eefb3347eaab9170409981eaad0e2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/291397232a2eefb3347eaab9170409981eaad0e2", - "reference": "291397232a2eefb3347eaab9170409981eaad0e2", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0" - }, - "conflict": { - "masterminds/html5": "<2.6" - }, - "require-dev": { - "masterminds/html5": "^2.6", - "symfony/css-selector": "~3.4|~4.0" - }, - "suggest": { - "symfony/css-selector": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\DomCrawler\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony DomCrawler Component", - "homepage": "https://symfony.com", - "time": "2019-06-13T11:03:18+00:00" - }, - { - "name": "symfony/event-dispatcher", - "version": "v4.3.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "212b020949331b6531250584531363844b34a94e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/212b020949331b6531250584531363844b34a94e", - "reference": "212b020949331b6531250584531363844b34a94e", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "symfony/event-dispatcher-contracts": "^1.1" - }, - "conflict": { - "symfony/dependency-injection": "<3.4" - }, - "provide": { - "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "1.1" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~3.4|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/expression-language": "~3.4|~4.0", - "symfony/http-foundation": "^3.4|^4.0", - "symfony/service-contracts": "^1.1", - "symfony/stopwatch": "~3.4|~4.0" - }, - "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.3-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony EventDispatcher Component", - "homepage": "https://symfony.com", - "time": "2019-06-27T06:42:14+00:00" - }, - { - "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.5", - "source": { - "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "c61766f4440ca687de1084a5c00b08e167a2575c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c61766f4440ca687de1084a5c00b08e167a2575c", - "reference": "c61766f4440ca687de1084a5c00b08e167a2575c", - "shasum": "" - }, - "require": { - "php": "^7.1.3" - }, - "suggest": { - "psr/event-dispatcher": "", - "symfony/event-dispatcher-implementation": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" - } - }, - "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": "Generic abstractions related to dispatching event", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "time": "2019-06-20T06:46:26+00:00" - }, - { - "name": "theseer/tokenizer", - "version": "1.1.3", - "source": { - "type": "git", - "url": "https://github.com/theseer/tokenizer.git", - "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9", - "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-tokenizer": "*", - "ext-xmlwriter": "*", - "php": "^7.0" - }, - "type": "library", - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Arne Blankerts", - "role": "Developer", - "email": "arne@blankerts.de" - } - ], - "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", - "time": "2019-06-13T22:48:21+00:00" - }, - { - "name": "typo3/cms-lowlevel", - "version": "v9.5.9", - "source": { - "type": "git", - "url": "https://github.com/TYPO3-CMS/lowlevel.git", - "reference": "e16ce8e405d3d8aa0c86748f670a2816953590d0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3-CMS/lowlevel/zipball/e16ce8e405d3d8aa0c86748f670a2816953590d0", - "reference": "e16ce8e405d3d8aa0c86748f670a2816953590d0", - "shasum": "" - }, - "require": { - "typo3/cms-core": "9.5.9" - }, - "conflict": { - "typo3/cms": "*" - }, - "replace": { - "lowlevel": "*" - }, - "type": "typo3-cms-framework", - "extra": { - "typo3/cms": { - "Package": { - "partOfFactoryDefault": true - }, - "extension-key": "lowlevel" - }, - "typo3/class-alias-loader": { - "class-alias-maps": [ - "Migrations/Code/ClassAliasMap.php" - ] - } - }, - "autoload": { - "psr-4": { - "TYPO3\\CMS\\Lowlevel\\": "Classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "TYPO3 Core Team", - "role": "Developer", - "email": "typo3cms@typo3.org" - } - ], - "description": "Enables the 'Config' and 'DB Check' modules for technical analysis of the system. This includes raw database search, checking relations, counting pages and records etc.", - "homepage": "https://typo3.org", - "time": "2019-08-20T09:33:35+00:00" - }, - { - "name": "webmozart/assert", - "version": "1.5.0", - "source": { - "type": "git", - "url": "https://github.com/webmozart/assert.git", - "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4", - "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4", - "shasum": "" - }, - "require": { - "php": "^5.3.3 || ^7.0", - "symfony/polyfill-ctype": "^1.8" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.36 || ^7.5.13" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.3-dev" - } - }, - "autoload": { - "psr-4": { - "Webmozart\\Assert\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "Assertions to validate method input/output with nice error messages.", - "keywords": [ - "assert", - "check", - "validate" - ], - "time": "2019-08-24T08:43:50+00:00" - } - ], - "aliases": [], - "minimum-stability": "dev", - "stability-flags": { - "workshop/example-extension": 20 - }, - "prefer-stable": true, - "prefer-lowest": false, - "platform": [], - "platform-dev": [], - "platform-overrides": { - "php": "7.2" - } -} diff --git a/localPackages/example_extension/Classes/Controller/AddressController.php b/localPackages/example_extension/Classes/Controller/AddressController.php deleted file mode 100644 index 04bf58f..0000000 --- a/localPackages/example_extension/Classes/Controller/AddressController.php +++ /dev/null @@ -1,65 +0,0 @@ - - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA. - */ - -use TYPO3\CMS\Extbase\Mvc\Controller\ActionController; -use TYPO3\CMS\Extbase\Utility\LocalizationUtility; -use Workshop\ExampleExtension\Domain\Model\Address; -use Workshop\ExampleExtension\Domain\Repository\AddressRepository; - -class AddressController extends ActionController -{ - /** - * @var AddressRepository - */ - protected $addressRepository; - - public function __construct(AddressRepository $addressRepository) - { - $this->addressRepository = $addressRepository; - } - - public function indexAction() - { - $this->view->assign('addresses', $this->addressRepository->findAll()); - } - - /** - * @ignorevalidation $address - */ - public function editAction(Address $address) - { - $this->view->assign('address', $address); - } - - public function updateAction(Address $address) - { - $this->addressRepository->update($address); - - $this->signalSlotDispatcher->dispatch(__CLASS__, 'addressUpdated', [ - $address, - $this, - ]); - - $this->redirect('index'); - } -} diff --git a/localPackages/example_extension/Classes/Domain/Event/Address.php b/localPackages/example_extension/Classes/Domain/Event/Address.php deleted file mode 100644 index 3dd9b62..0000000 --- a/localPackages/example_extension/Classes/Domain/Event/Address.php +++ /dev/null @@ -1,58 +0,0 @@ - - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA. - */ - -use TYPO3\CMS\Core\Mail\MailMessage; -use TYPO3\CMS\Core\Utility\GeneralUtility; -use TYPO3\CMS\Extbase\Utility\LocalizationUtility; -use Workshop\ExampleExtension\Controller\AddressController; -use Workshop\ExampleExtension\Domain\Model\Address as AddressModel; - -class Address -{ - public function updated(AddressModel $address, AddressController $controller) - { - $this->sendUpdateEMail($address); - $this->addUpdateFlashMessage($address, $controller); - } - - private function sendUpdateEmail(AddressModel $address) - { - $mail = GeneralUtility::makeInstance(MailMessage::class); - - $mail->setSubject('Address ' . $address->getCompanyName() . ' was updated'); - $mail->setTo(array('coding@daniel-siepmann.de')); - $mail->setBody('The address ' . $address->getCompanyName() . ' was successfully updated.'); - $mail->send(); - } - - private function addUpdateFlashMessage(AddressModel $address, AddressController $controller) - { - $controller->addFlashMessage( - LocalizationUtility::translate('flashSuccess', 'ExampleExtension', [ - 'companyName' => $address->getCompanyName(), - 'street' => $address->getStreet(), - ]), - 'Update successfully' - ); - } -} diff --git a/localPackages/example_extension/Classes/Domain/Model/Address.php b/localPackages/example_extension/Classes/Domain/Model/Address.php deleted file mode 100644 index 394e6d3..0000000 --- a/localPackages/example_extension/Classes/Domain/Model/Address.php +++ /dev/null @@ -1,119 +0,0 @@ - - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA. - */ - -use TYPO3\CMS\Extbase\DomainObject\AbstractEntity; - -class Address extends AbstractEntity -{ - /** - * @var string - * @validate NotEmpty - */ - protected $companyName; - - /** - * @var string - */ - protected $street; - - /** - * @var string - */ - protected $houseNumber; - - /** - * @var string - * @validate RegularExpression(regularExpression = '/^[0-9]{5}$/') - */ - protected $zip; - - /** - * @var string - */ - protected $city; - - /** - * @var string - */ - protected $country; - - public function setCompanyName(string $companyName) - { - $this->companyName = $companyName; - } - - public function getCompanyName(): string - { - return $this->companyName; - } - - public function setStreet(string $street) - { - $this->street = $street; - } - - public function getStreet(): string - { - return $this->street; - } - - public function setHouseNumber(string $houseNumber) - { - $this->houseNumber = $houseNumber; - } - - public function getHouseNumber(): string - { - return $this->houseNumber; - } - - public function setZip(string $zip) - { - $this->zip = $zip; - } - - public function getZip(): string - { - return $this->zip; - } - - public function setCity(string $city) - { - $this->city = $city; - } - - public function getCity(): string - { - return $this->city; - } - - public function setCountry(string $country) - { - $this->country = $country; - } - - public function getCountry(): string - { - return $this->country; - } -} diff --git a/localPackages/example_extension/Classes/Domain/Repository/AddressRepository.php b/localPackages/example_extension/Classes/Domain/Repository/AddressRepository.php deleted file mode 100644 index 506d745..0000000 --- a/localPackages/example_extension/Classes/Domain/Repository/AddressRepository.php +++ /dev/null @@ -1,29 +0,0 @@ - - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA. - */ - -use TYPO3\CMS\Extbase\Persistence\Repository; - -class AddressRepository extends Repository -{ - -} diff --git a/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php b/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php deleted file mode 100644 index ee0ad49..0000000 --- a/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php +++ /dev/null @@ -1,40 +0,0 @@ - [ - 'typeicon_classes' => [ - 'exampleextension_address' => 'content-store', - ], - ], - 'types' => [ - 'exampleextension_address' => [ - 'showitem' => implode(',', [ - // phpcs:disable Generic.Files.LineLength.TooLong - // Keep original code from ext:frontend - '--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general', - '--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:palette.general;general', - '--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:palette.headers;headers', - 'pages;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:pages.ALT.list_formlabel', - 'recursive,', - '--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access', - '--palette--;;hidden', - '--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:palette.access;access', - // phpcs:enable - ]), - ], - ], - ] - ); -})('example_extension', 'tt_content'); diff --git a/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php b/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php deleted file mode 100644 index 13793a9..0000000 --- a/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php +++ /dev/null @@ -1,115 +0,0 @@ - [ - 'label' => 'company_name', - 'iconfile' => 'EXT:core/Resources/Public/Icons/T3Icons/content/content-store.svg', - 'default_sortby' => 'company_name', - 'tstamp' => 'tstamp', - 'crdate' => 'crdate', - 'cruser_id' => 'cruser_id', - 'title' => $extensionLanguagePrefix . 'address', - 'delete' => 'deleted', - 'enablecolumns' => [ - 'disabled' => 'hidden', - 'starttime' => 'starttime', - 'endtime' => 'endtime' - ], - 'searchFields' => 'company_name, street, city' - ], - 'interface' => [ - 'showRecordFieldList' => 'company_name, street, house_number, zip, city, country, slug' - ], - 'palettes' => [ - 'address' => [ - 'showitem' => implode(',', [ - 'street, house_number', - '--linebreak--', - 'zip, city', - '--linebreak--', - 'country', - ]), - ], - ], - 'types' => [ - '0' => [ - 'showitem' => implode(',', [ - '--div--;' . $coreLanguagePrefix . 'general', - 'company_name;;address', - 'slug', - ]), - ], - ], - 'columns' => [ - 'company_name' => [ - 'label' => $extensionLanguagePrefix . 'company_name', - 'config' => [ - 'type' => 'input', - 'max' => 255, - 'eval' => 'trim,required', - ], - ], - 'street' => [ - 'label' => $extensionLanguagePrefix . 'street', - 'config' => [ - 'type' => 'input', - 'max' => 255, - 'eval' => 'trim,required', - ], - ], - 'house_number' => [ - 'label' => $extensionLanguagePrefix . 'house_number', - 'config' => [ - 'type' => 'input', - 'size' => 10, - 'max' => 255, - 'eval' => 'trim,required', - ], - ], - 'zip' => [ - 'label' => $extensionLanguagePrefix . 'zip', - 'config' => [ - 'type' => 'input', - 'size' => 10, - 'max' => 255, - 'eval' => 'trim,required', - ], - ], - 'city' => [ - 'label' => $extensionLanguagePrefix . 'city', - 'config' => [ - 'type' => 'input', - 'max' => 255, - 'eval' => 'trim,required', - ], - ], - 'country' => [ - 'label' => $extensionLanguagePrefix . 'country', - 'config' => [ - 'type' => 'input', - 'max' => 255, - 'eval' => 'trim,required', - ], - ], - 'slug' => [ - 'label' => $extensionLanguagePrefix . 'slug', - 'config' => [ - 'type' => 'slug', - 'generatorOptions' => [ - 'fields' => ['company_name'], - 'prefixParentPageSlug' => true, - ], - 'fallbackCharacter' => '-', - 'eval' => 'uniqueInSite', - ], - ], - ], - ]; -})(); diff --git a/localPackages/example_extension/Configuration/TypoScript/Config.typoscript b/localPackages/example_extension/Configuration/TypoScript/Config.typoscript deleted file mode 100644 index 1031d91..0000000 --- a/localPackages/example_extension/Configuration/TypoScript/Config.typoscript +++ /dev/null @@ -1,3 +0,0 @@ -config { - contentObjectExceptionHandler = 0 -} diff --git a/localPackages/example_extension/Configuration/TypoScript/Extensions.typoscript b/localPackages/example_extension/Configuration/TypoScript/Extensions.typoscript deleted file mode 100644 index cbd1251..0000000 --- a/localPackages/example_extension/Configuration/TypoScript/Extensions.typoscript +++ /dev/null @@ -1 +0,0 @@ -@import 'EXT:fluid_styled_content/Configuration/TypoScript/setup.typoscript' diff --git a/localPackages/example_extension/Configuration/TypoScript/Page.typoscript b/localPackages/example_extension/Configuration/TypoScript/Page.typoscript deleted file mode 100644 index c7ff2b6..0000000 --- a/localPackages/example_extension/Configuration/TypoScript/Page.typoscript +++ /dev/null @@ -1,4 +0,0 @@ -page = PAGE -page { - 10 < styles.content.get -} diff --git a/localPackages/example_extension/Resources/Private/Language/locallang.xlf b/localPackages/example_extension/Resources/Private/Language/locallang.xlf deleted file mode 100644 index 9599d4f..0000000 --- a/localPackages/example_extension/Resources/Private/Language/locallang.xlf +++ /dev/null @@ -1,39 +0,0 @@ - - - -
- - - - Company name - - - Street - - - House number - - - Zip - - - City - - - Country - - - - - Please provide a company name. - - - Please provide a valid ZIP consisting of 5 digits. - - - - Update des Datensatzes %1$s war Erfolgreich. - - - - diff --git a/localPackages/example_extension/Resources/Private/Language/locallang_tca.xlf b/localPackages/example_extension/Resources/Private/Language/locallang_tca.xlf deleted file mode 100644 index 4ee28b2..0000000 --- a/localPackages/example_extension/Resources/Private/Language/locallang_tca.xlf +++ /dev/null @@ -1,29 +0,0 @@ - - - -
- - - Address - - - Company name - - - Street - - - House number - - - Zip - - - City - - - Country - - - - diff --git a/localPackages/example_extension/Resources/Private/Templates/Address/Edit.html b/localPackages/example_extension/Resources/Private/Templates/Address/Edit.html deleted file mode 100644 index 7fe9432..0000000 --- a/localPackages/example_extension/Resources/Private/Templates/Address/Edit.html +++ /dev/null @@ -1,41 +0,0 @@ -

Editing: {address.companyName}

- - - - {f:render(section: 'Field', arguments: { - propertyName: propertyName - })} - - -
- -
- - -

- -
- - {f:render(section: 'FieldErrors', arguments: { - propertyPath: 'address.{propertyName}' - })} -
-

-
- - - - - - {f:translate(id: 'error.{propertyPath}.{error.code}', default: error.code)} - - - - diff --git a/localPackages/example_extension/Resources/Private/Templates/Address/Index.html b/localPackages/example_extension/Resources/Private/Templates/Address/Index.html deleted file mode 100644 index 789c4c5..0000000 --- a/localPackages/example_extension/Resources/Private/Templates/Address/Index.html +++ /dev/null @@ -1,11 +0,0 @@ - - -

{address.companyName}

-
- {address.street} {address.houseNumber} - {address.zip} {address.city} - {address.country} -
- - Edit -
diff --git a/localPackages/example_extension/composer.json b/localPackages/example_extension/composer.json deleted file mode 100644 index 5b09e62..0000000 --- a/localPackages/example_extension/composer.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "workshop/example-extension", - "description": "Example for TYPO3 Extension Workshop.", - "type": "typo3-cms-extension", - "license": "GPL-2.0-or-later", - "authors": [ - { - "name": "Daniel Siepmann", - "email": "coding@daniel-siepmann.de" - } - ], - "autoload": { - "psr-4": { - "Workshop\\ExampleExtension\\": "Classes" - } - }, - "require": { - "php": ">=7.2.0", - "typo3/cms-core": "*" - } -} diff --git a/localPackages/example_extension/ext_emconf.php b/localPackages/example_extension/ext_emconf.php deleted file mode 100644 index f9b7c2c..0000000 --- a/localPackages/example_extension/ext_emconf.php +++ /dev/null @@ -1,23 +0,0 @@ - 'Example extension', - 'description' => 'Example for TYPO3 Extension Workshop.', - 'category' => 'example', - 'version' => '1.0.0', - 'state' => 'stable', - 'author' => 'Daniel Siepmann', - 'author_email' => 'coding@daniel-siepmann.de', - 'author_company' => 'Codappix', - 'constraints' => [ - 'depends' => [ - 'php' => '7.2.0-7.2.999', - 'typo3' => '8.7.0-9.5.999', - ], - ], - 'autoload' => [ - 'psr-4' => [ - 'Workshop\\ExampleExtension\\' => 'Classes', - ] - ], -]; diff --git a/localPackages/example_extension/ext_localconf.php b/localPackages/example_extension/ext_localconf.php deleted file mode 100644 index c4df2d8..0000000 --- a/localPackages/example_extension/ext_localconf.php +++ /dev/null @@ -1,51 +0,0 @@ - 'index, edit, update' - ], - [ - 'Address' => 'update' - ], - \TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT - ); - - \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScriptSetup(trim(' - @import "EXT:example_extension/Configuration/TypoScript/*.typoscript" - ')); - - \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(' - mod { - wizards { - newContentElement { - wizardItems { - common { - show = * - elements { - exampleElement { - iconIdentifier = content-store - title = Example title - description = Example Description - tt_content_defValues { - CType = list - list_type = exampleextension_pluginkey - } - } - } - } - } - } - } - } - '); - - \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Extbase\SignalSlot\Dispatcher::class)->connect( - \Workshop\ExampleExtension\Controller\AddressController::class, - 'addressUpdated', - \Workshop\ExampleExtension\Domain\Event\Address::class, - 'updated' - ); -})(); diff --git a/localPackages/example_extension/ext_tables.sql b/localPackages/example_extension/ext_tables.sql deleted file mode 100644 index 251e6b5..0000000 --- a/localPackages/example_extension/ext_tables.sql +++ /dev/null @@ -1,9 +0,0 @@ -CREATE TABLE tx_exampleextension_domain_model_address ( - company_name varchar(255) DEFAULT '' NOT NULL, - street varchar(255) DEFAULT '' NOT NULL, - house_number varchar(255) DEFAULT '' NOT NULL, - zip varchar(255) DEFAULT '' NOT NULL, - city varchar(255) DEFAULT '' NOT NULL, - country varchar(255) DEFAULT '' NOT NULL, - slug varchar(2048), -); diff --git a/tests/AddressCest.php b/tests/AddressCest.php deleted file mode 100644 index f9e7a3c..0000000 --- a/tests/AddressCest.php +++ /dev/null @@ -1,66 +0,0 @@ -amOnPage('/plugin'); - $I->see('Codappix GmbH'); - } - - /** - * @depends listsExistingRecords - */ - public function canEditRecord(AcceptanceTester $I) - { - $I->amOnPage('/plugin'); - $I->see('Edit'); - $I->click('Edit'); - - $I->see('Editing: Codappix GmbH'); - $I->fillField(['id' => 'companyName'], 'TYPO3 Camp Rhein Ruhr'); - $I->click('Update'); - - $I->amOnPage('/plugin'); - $I->see('TYPO3 Camp Rhein Ruhr'); - } - - /** - * @depends canEditRecord - */ - public function sendsMailOnUpdate(AcceptanceTester $I) - { - $I->amOnPage('/plugin'); - $I->see('Edit'); - $I->click('Edit'); - - $I->see('Editing: Codappix GmbH'); - $I->fillField(['id' => 'companyName'], 'TYPO3 Camp Rhein Ruhr'); - $I->click('Update'); - - $I->fetchEmails(); - $I->haveUnreadEmails(); - $I->openNextUnreadEmail(); - $I->dontHaveUnreadEmails(); - - $I->seeInOpenedEmailSubject('Address TYPO3 Camp Rhein Ruhr was updated'); - $I->seeInOpenedEmailBody('The address TYPO3 Camp Rhein Ruhr was successfully updated.'); - $I->seeInOpenedEmailRecipients('coding@daniel-siepmann.de'); - } - - /** - * @depends listsExistingRecords - */ - public function zipValidatesAgainst5Digits(AcceptanceTester $I) - { - $I->amOnPage('/plugin'); - $I->see('Edit'); - $I->click('Edit'); - - $I->see('Editing: Codappix GmbH'); - $I->fillField(['id' => 'zip'], '123'); - $I->click('Update'); - - $I->see('Please provide a valid ZIP consisting of 5 digits.'); - } -} diff --git a/tests/_data/.gitkeep b/tests/_data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/tests/_data/typo3.sql b/tests/_data/typo3.sql deleted file mode 100644 index 039ba25..0000000 --- a/tests/_data/typo3.sql +++ /dev/null @@ -1,1855 +0,0 @@ --- MySQL dump 10.13 Distrib 5.7.27, for Linux (x86_64) --- --- Host: localhost Database: own_workshopgitlabacceptance --- ------------------------------------------------------ --- Server version 5.7.27-0ubuntu0.18.04.1-log - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `backend_layout` --- - -DROP TABLE IF EXISTS `backend_layout`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `backend_layout` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(11) NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `sorting` int(11) NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_state` smallint(6) NOT NULL DEFAULT '0', - `t3ver_stage` int(11) NOT NULL DEFAULT '0', - `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `config` text COLLATE utf8mb4_unicode_ci NOT NULL, - `icon` text COLLATE utf8mb4_unicode_ci, - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`deleted`,`hidden`), - KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `backend_layout` --- - -LOCK TABLES `backend_layout` WRITE; -/*!40000 ALTER TABLE `backend_layout` DISABLE KEYS */; -/*!40000 ALTER TABLE `backend_layout` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `be_groups` --- - -DROP TABLE IF EXISTS `be_groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `be_groups` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `non_exclude_fields` text COLLATE utf8mb4_unicode_ci, - `explicit_allowdeny` text COLLATE utf8mb4_unicode_ci, - `allowed_languages` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `custom_options` text COLLATE utf8mb4_unicode_ci, - `db_mountpoints` text COLLATE utf8mb4_unicode_ci, - `pagetypes_select` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tables_select` text COLLATE utf8mb4_unicode_ci, - `tables_modify` text COLLATE utf8mb4_unicode_ci, - `groupMods` text COLLATE utf8mb4_unicode_ci, - `file_mountpoints` text COLLATE utf8mb4_unicode_ci, - `file_permissions` text COLLATE utf8mb4_unicode_ci, - `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `TSconfig` text COLLATE utf8mb4_unicode_ci, - `subgroup` text COLLATE utf8mb4_unicode_ci, - `workspace_perms` smallint(6) NOT NULL DEFAULT '1', - `category_perms` text COLLATE utf8mb4_unicode_ci, - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`deleted`,`hidden`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `be_groups` --- - -LOCK TABLES `be_groups` WRITE; -/*!40000 ALTER TABLE `be_groups` DISABLE KEYS */; -/*!40000 ALTER TABLE `be_groups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `be_sessions` --- - -DROP TABLE IF EXISTS `be_sessions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `be_sessions` ( - `ses_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ses_iplock` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ses_userid` int(10) unsigned NOT NULL DEFAULT '0', - `ses_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `ses_data` longblob, - `ses_backuserid` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`ses_id`), - KEY `ses_tstamp` (`ses_tstamp`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `be_users` --- - -DROP TABLE IF EXISTS `be_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `be_users` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `disable` smallint(5) unsigned NOT NULL DEFAULT '0', - `starttime` int(10) unsigned NOT NULL DEFAULT '0', - `endtime` int(10) unsigned NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `username` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `avatar` int(10) unsigned NOT NULL DEFAULT '0', - `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `admin` smallint(5) unsigned NOT NULL DEFAULT '0', - `usergroup` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `lang` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `db_mountpoints` text COLLATE utf8mb4_unicode_ci, - `options` smallint(5) unsigned NOT NULL DEFAULT '0', - `realName` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `userMods` text COLLATE utf8mb4_unicode_ci, - `allowed_languages` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `uc` mediumblob, - `file_mountpoints` text COLLATE utf8mb4_unicode_ci, - `file_permissions` text COLLATE utf8mb4_unicode_ci, - `workspace_perms` smallint(6) NOT NULL DEFAULT '1', - `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `disableIPlock` smallint(5) unsigned NOT NULL DEFAULT '0', - `TSconfig` text COLLATE utf8mb4_unicode_ci, - `lastlogin` int(10) unsigned NOT NULL DEFAULT '0', - `createdByAction` int(11) NOT NULL DEFAULT '0', - `usergroup_cached_list` text COLLATE utf8mb4_unicode_ci, - `workspace_id` int(11) NOT NULL DEFAULT '0', - `category_perms` text COLLATE utf8mb4_unicode_ci, - PRIMARY KEY (`uid`), - KEY `username` (`username`), - KEY `parent` (`pid`,`deleted`,`disable`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `be_users` --- - -LOCK TABLES `be_users` WRITE; -/*!40000 ALTER TABLE `be_users` DISABLE KEYS */; -INSERT INTO `be_users` VALUES (1,0,1566399565,1566399565,0,0,0,0,0,NULL,'dsiepmann',0,'$argon2i$v=19$m=65536,t=16,p=2$T2pmbUd5d29zYVBuV2dWdg$dhzQXuW8Opu6YZZfy9R4+KDNAPfKn+dOiHFCdGESmtY',1,'','','',NULL,0,'',NULL,'',_binary 'a:17:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:10:{s:10:\"web_layout\";a:2:{s:8:\"function\";s:1:\"1\";s:8:\"language\";s:1:\"0\";}s:8:\"web_list\";a:0:{}s:10:\"FormEngine\";a:2:{i:0;a:6:{s:32:\"696addfecc296b326ff6e9f04c7ff3e1\";a:4:{i:0;s:4:\"Home\";i:1;a:6:{s:4:\"edit\";a:1:{s:5:\"pages\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:28:\"&edit%5Bpages%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:5:\"pages\";s:3:\"uid\";i:1;s:3:\"pid\";i:0;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"a9a6057797db87f88ceebe9eef404c91\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";a:1:{s:10:\"tt_content\";a:4:{s:6:\"colPos\";s:1:\"0\";s:16:\"sys_language_uid\";s:1:\"0\";s:5:\"CType\";s:4:\"list\";s:9:\"list_type\";s:26:\"exampleextension_pluginkey\";}}s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:225:\"&edit%5Btt_content%5D%5B1%5D=edit&defVals%5Btt_content%5D%5BcolPos%5D=0&defVals%5Btt_content%5D%5Bsys_language_uid%5D=0&defVals%5Btt_content%5D%5BCType%5D=list&defVals%5Btt_content%5D%5Blist_type%5D=exampleextension_pluginkey\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"86205c5935270b8ee413592ec1b62292\";a:4:{i:0;s:25:\"Main TypoScript Rendering\";i:1;a:6:{s:4:\"edit\";a:1:{s:12:\"sys_template\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:35:\"&edit%5Bsys_template%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:12:\"sys_template\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"c312013d83c1a6ad7fec8b36a37ba3c8\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";a:4:{i:0;s:21:\"TYPO3 Camp Rhein Ruhr\";i:1;a:6:{s:4:\"edit\";a:1:{s:40:\"tx_exampleextension_domain_model_address\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:63:\"&edit%5Btx_exampleextension_domain_model_address%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:40:\"tx_exampleextension_domain_model_address\";s:3:\"uid\";i:1;s:3:\"pid\";i:2;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"20ed475662b97ac33d3aa853a74f9c9c\";a:4:{i:0;s:9:\"addresses\";i:1;a:6:{s:4:\"edit\";a:1:{s:5:\"pages\";a:1:{i:2;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:28:\"&edit%5Bpages%5D%5B2%5D=edit\";i:3;a:5:{s:5:\"table\";s:5:\"pages\";s:3:\"uid\";i:2;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}i:1;s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";}s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";a:0:{}s:6:\"web_ts\";a:8:{s:8:\"function\";s:87:\"TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateObjectBrowserModuleFunctionController\";s:19:\"constant_editor_cat\";s:0:\"\";s:15:\"ts_browser_type\";s:5:\"setup\";s:16:\"ts_browser_const\";s:5:\"subst\";s:19:\"ts_browser_fixedLgd\";s:1:\"0\";s:23:\"ts_browser_showComments\";s:1:\"1\";s:20:\"ts_browser_alphaSort\";s:1:\"1\";s:25:\"tsbrowser_depthKeys_setup\";a:4:{s:10:\"tt_content\";i:1;s:15:\"tt_content.list\";i:1;s:18:\"tt_content.list.20\";i:1;s:43:\"tt_content.list.20.exampleextension_address\";i:1;}}s:8:\"web_info\";a:2:{s:8:\"function\";s:60:\"TYPO3\\CMS\\Info\\Controller\\InfoPageTyposcriptConfigController\";s:12:\"tsconf_parts\";s:1:\"0\";}s:16:\"opendocs::recent\";a:2:{s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";a:4:{i:0;s:13:\"Codappix GmbH\";i:1;a:6:{s:4:\"edit\";a:1:{s:40:\"tx_exampleextension_domain_model_address\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:63:\"&edit%5Btx_exampleextension_domain_model_address%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:40:\"tx_exampleextension_domain_model_address\";s:3:\"uid\";i:1;s:3:\"pid\";i:2;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"c312013d83c1a6ad7fec8b36a37ba3c8\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}s:13:\"system_config\";a:3:{s:4:\"tree\";s:3:\"tca\";s:11:\"regexSearch\";b:0;s:8:\"node_tca\";a:6:{s:10:\"tt_content\";i:1;s:16:\"tt_content.types\";i:1;s:41:\"tt_content.types.exampleextension_address\";i:1;s:24:\"tt_content.types.bullets\";i:1;s:32:\"tt_content.ctrl.typeicon_classes\";i:1;s:21:\"tt_content.types.list\";i:1;}}s:16:\"browse_links.php\";a:1:{s:10:\"expandPage\";s:1:\"1\";}s:9:\"clipboard\";a:5:{s:6:\"normal\";a:2:{s:2:\"el\";a:0:{}s:4:\"mode\";s:0:\"\";}s:5:\"tab_1\";a:0:{}s:5:\"tab_2\";a:0:{}s:5:\"tab_3\";a:0:{}s:7:\"current\";s:6:\"normal\";}}s:19:\"thumbnailsByDefault\";i:1;s:14:\"emailMeAtLogin\";i:0;s:11:\"startModule\";s:15:\"help_AboutAbout\";s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:15:\"resizeTextareas\";i:1;s:25:\"resizeTextareas_MaxHeight\";i:500;s:24:\"resizeTextareas_Flexible\";i:0;s:4:\"lang\";s:0:\"\";s:19:\"firstLoginTimeStamp\";i:1566399603;s:15:\"moduleSessionID\";a:9:{s:10:\"web_layout\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:8:\"web_list\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:10:\"FormEngine\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:6:\"web_ts\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:8:\"web_info\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:16:\"opendocs::recent\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:16:\"browse_links.php\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:9:\"clipboard\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";}s:10:\"inlineView\";s:72:\"a:1:{s:4:\"site\";a:1:{i:1;a:1:{s:13:\"site_language\";a:1:{i:0;s:1:\"0\";}}}}\";s:17:\"BackendComponents\";a:1:{s:6:\"States\";a:1:{s:8:\"Pagetree\";a:1:{s:9:\"stateHash\";a:1:{s:3:\"0_1\";s:1:\"1\";}}}}s:11:\"browseTrees\";a:1:{s:11:\"browsePages\";s:32:\"a:1:{i:0;a:2:{i:0;i:1;i:1;i:1;}}\";}}',NULL,NULL,1,'',0,NULL,1566399603,0,NULL,0,NULL),(2,0,1566399575,1566399575,0,0,0,0,0,NULL,'_cli_',0,'$argon2i$v=19$m=65536,t=16,p=2$M2ovSHFDbi9tdlhCNWxSMA$rWNqC5yCk1bb7vxtVXl0Q+zWv4YIm9pGz6P0Cb0w8Mk',1,'','','',NULL,0,'',NULL,'',_binary 'a:13:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:0:{}s:19:\"thumbnailsByDefault\";i:1;s:14:\"emailMeAtLogin\";i:0;s:11:\"startModule\";s:15:\"help_AboutAbout\";s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:15:\"resizeTextareas\";i:1;s:25:\"resizeTextareas_MaxHeight\";i:500;s:24:\"resizeTextareas_Flexible\";i:0;s:4:\"lang\";s:0:\"\";s:19:\"firstLoginTimeStamp\";i:1566399575;}',NULL,NULL,1,'',0,NULL,0,0,NULL,0,NULL); -/*!40000 ALTER TABLE `be_users` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `cache_treelist` --- - -DROP TABLE IF EXISTS `cache_treelist`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cache_treelist` ( - `md5hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `pid` int(11) NOT NULL DEFAULT '0', - `treelist` mediumtext COLLATE utf8mb4_unicode_ci, - `tstamp` int(11) NOT NULL DEFAULT '0', - `expires` int(10) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`md5hash`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cache_treelist` --- - -LOCK TABLES `cache_treelist` WRITE; -/*!40000 ALTER TABLE `cache_treelist` DISABLE KEYS */; -/*!40000 ALTER TABLE `cache_treelist` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `cf_cache_hash` --- - -DROP TABLE IF EXISTS `cf_cache_hash`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_cache_hash` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `expires` int(10) unsigned NOT NULL DEFAULT '0', - `content` longblob, - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(180),`expires`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cf_cache_hash` --- - -LOCK TABLES `cf_cache_hash` WRITE; -/*!40000 ALTER TABLE `cf_cache_hash` DISABLE KEYS */; -/*!40000 ALTER TABLE `cf_cache_hash` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `cf_cache_hash_tags` --- - -DROP TABLE IF EXISTS `cf_cache_hash_tags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_cache_hash_tags` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(191)), - KEY `cache_tag` (`tag`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cf_cache_hash_tags` --- - -LOCK TABLES `cf_cache_hash_tags` WRITE; -/*!40000 ALTER TABLE `cf_cache_hash_tags` DISABLE KEYS */; -/*!40000 ALTER TABLE `cf_cache_hash_tags` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `cf_cache_imagesizes` --- - -DROP TABLE IF EXISTS `cf_cache_imagesizes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_cache_imagesizes` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `expires` int(10) unsigned NOT NULL DEFAULT '0', - `content` longblob, - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(180),`expires`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cf_cache_imagesizes` --- - -LOCK TABLES `cf_cache_imagesizes` WRITE; -/*!40000 ALTER TABLE `cf_cache_imagesizes` DISABLE KEYS */; -/*!40000 ALTER TABLE `cf_cache_imagesizes` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `cf_cache_imagesizes_tags` --- - -DROP TABLE IF EXISTS `cf_cache_imagesizes_tags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_cache_imagesizes_tags` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(191)), - KEY `cache_tag` (`tag`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cf_cache_imagesizes_tags` --- - -LOCK TABLES `cf_cache_imagesizes_tags` WRITE; -/*!40000 ALTER TABLE `cf_cache_imagesizes_tags` DISABLE KEYS */; -/*!40000 ALTER TABLE `cf_cache_imagesizes_tags` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `cf_cache_pages` --- - -DROP TABLE IF EXISTS `cf_cache_pages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_cache_pages` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `expires` int(10) unsigned NOT NULL DEFAULT '0', - `content` longblob, - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(180),`expires`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cf_cache_pages` --- - -LOCK TABLES `cf_cache_pages` WRITE; -/*!40000 ALTER TABLE `cf_cache_pages` DISABLE KEYS */; -/*!40000 ALTER TABLE `cf_cache_pages` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `cf_cache_pages_tags` --- - -DROP TABLE IF EXISTS `cf_cache_pages_tags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_cache_pages_tags` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(191)), - KEY `cache_tag` (`tag`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cf_cache_pages_tags` --- - -LOCK TABLES `cf_cache_pages_tags` WRITE; -/*!40000 ALTER TABLE `cf_cache_pages_tags` DISABLE KEYS */; -/*!40000 ALTER TABLE `cf_cache_pages_tags` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `cf_cache_pagesection` --- - -DROP TABLE IF EXISTS `cf_cache_pagesection`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_cache_pagesection` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `expires` int(10) unsigned NOT NULL DEFAULT '0', - `content` longblob, - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(180),`expires`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cf_cache_pagesection` --- - -LOCK TABLES `cf_cache_pagesection` WRITE; -/*!40000 ALTER TABLE `cf_cache_pagesection` DISABLE KEYS */; -/*!40000 ALTER TABLE `cf_cache_pagesection` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `cf_cache_pagesection_tags` --- - -DROP TABLE IF EXISTS `cf_cache_pagesection_tags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_cache_pagesection_tags` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(191)), - KEY `cache_tag` (`tag`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cf_cache_pagesection_tags` --- - -LOCK TABLES `cf_cache_pagesection_tags` WRITE; -/*!40000 ALTER TABLE `cf_cache_pagesection_tags` DISABLE KEYS */; -/*!40000 ALTER TABLE `cf_cache_pagesection_tags` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `cf_cache_rootline` --- - -DROP TABLE IF EXISTS `cf_cache_rootline`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_cache_rootline` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `expires` int(10) unsigned NOT NULL DEFAULT '0', - `content` longblob, - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(180),`expires`) -) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `cf_cache_rootline_tags` --- - -DROP TABLE IF EXISTS `cf_cache_rootline_tags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_cache_rootline_tags` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(191)), - KEY `cache_tag` (`tag`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `cf_extbase_datamapfactory_datamap` --- - -DROP TABLE IF EXISTS `cf_extbase_datamapfactory_datamap`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_extbase_datamapfactory_datamap` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `expires` int(10) unsigned NOT NULL DEFAULT '0', - `content` longblob, - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(180),`expires`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `cf_extbase_datamapfactory_datamap_tags` --- - -DROP TABLE IF EXISTS `cf_extbase_datamapfactory_datamap_tags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `cf_extbase_datamapfactory_datamap_tags` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `cache_id` (`identifier`(191)), - KEY `cache_tag` (`tag`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `cf_extbase_datamapfactory_datamap_tags` --- - -LOCK TABLES `cf_extbase_datamapfactory_datamap_tags` WRITE; -/*!40000 ALTER TABLE `cf_extbase_datamapfactory_datamap_tags` DISABLE KEYS */; -/*!40000 ALTER TABLE `cf_extbase_datamapfactory_datamap_tags` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `fe_groups` --- - -DROP TABLE IF EXISTS `fe_groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `fe_groups` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `tx_extbase_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', - `title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `subgroup` tinytext COLLATE utf8mb4_unicode_ci, - `TSconfig` text COLLATE utf8mb4_unicode_ci, - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`deleted`,`hidden`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `fe_groups` --- - -LOCK TABLES `fe_groups` WRITE; -/*!40000 ALTER TABLE `fe_groups` DISABLE KEYS */; -/*!40000 ALTER TABLE `fe_groups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `fe_sessions` --- - -DROP TABLE IF EXISTS `fe_sessions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `fe_sessions` ( - `ses_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ses_iplock` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ses_userid` int(10) unsigned NOT NULL DEFAULT '0', - `ses_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `ses_data` mediumblob, - `ses_permanent` smallint(5) unsigned NOT NULL DEFAULT '0', - `ses_anonymous` smallint(5) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`ses_id`), - KEY `ses_tstamp` (`ses_tstamp`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Table structure for table `fe_users` --- - -DROP TABLE IF EXISTS `fe_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `fe_users` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `disable` smallint(5) unsigned NOT NULL DEFAULT '0', - `starttime` int(10) unsigned NOT NULL DEFAULT '0', - `endtime` int(10) unsigned NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `tx_extbase_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', - `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `usergroup` tinytext COLLATE utf8mb4_unicode_ci, - `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `first_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `middle_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `last_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `telephone` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `fax` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `uc` blob, - `title` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `zip` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `city` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `country` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `www` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `company` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `image` tinytext COLLATE utf8mb4_unicode_ci, - `TSconfig` text COLLATE utf8mb4_unicode_ci, - `lastlogin` int(10) unsigned NOT NULL DEFAULT '0', - `is_online` int(10) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`username`(100)), - KEY `username` (`username`(100)), - KEY `is_online` (`is_online`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `fe_users` --- - -LOCK TABLES `fe_users` WRITE; -/*!40000 ALTER TABLE `fe_users` DISABLE KEYS */; -/*!40000 ALTER TABLE `fe_users` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `pages` --- - -DROP TABLE IF EXISTS `pages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `pages` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(11) NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `starttime` int(10) unsigned NOT NULL DEFAULT '0', - `endtime` int(10) unsigned NOT NULL DEFAULT '0', - `fe_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', - `sorting` int(11) NOT NULL DEFAULT '0', - `rowDescription` text COLLATE utf8mb4_unicode_ci, - `editlock` smallint(5) unsigned NOT NULL DEFAULT '0', - `sys_language_uid` int(11) NOT NULL DEFAULT '0', - `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_source` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_state` text COLLATE utf8mb4_unicode_ci, - `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_diffsource` mediumblob, - `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_state` smallint(6) NOT NULL DEFAULT '0', - `t3ver_stage` int(11) NOT NULL DEFAULT '0', - `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', - `perms_userid` int(10) unsigned NOT NULL DEFAULT '0', - `perms_groupid` int(10) unsigned NOT NULL DEFAULT '0', - `perms_user` smallint(5) unsigned NOT NULL DEFAULT '0', - `perms_group` smallint(5) unsigned NOT NULL DEFAULT '0', - `perms_everybody` smallint(5) unsigned NOT NULL DEFAULT '0', - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `slug` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `doktype` int(10) unsigned NOT NULL DEFAULT '0', - `TSconfig` text COLLATE utf8mb4_unicode_ci, - `is_siteroot` smallint(6) NOT NULL DEFAULT '0', - `php_tree_stop` smallint(6) NOT NULL DEFAULT '0', - `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `shortcut` int(10) unsigned NOT NULL DEFAULT '0', - `shortcut_mode` int(10) unsigned NOT NULL DEFAULT '0', - `subtitle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `layout` int(10) unsigned NOT NULL DEFAULT '0', - `target` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `media` int(10) unsigned NOT NULL DEFAULT '0', - `lastUpdated` int(10) unsigned NOT NULL DEFAULT '0', - `keywords` text COLLATE utf8mb4_unicode_ci, - `cache_timeout` int(10) unsigned NOT NULL DEFAULT '0', - `cache_tags` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `newUntil` int(10) unsigned NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `no_search` smallint(5) unsigned NOT NULL DEFAULT '0', - `SYS_LASTCHANGED` int(10) unsigned NOT NULL DEFAULT '0', - `abstract` text COLLATE utf8mb4_unicode_ci, - `module` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `extendToSubpages` smallint(5) unsigned NOT NULL DEFAULT '0', - `author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `author_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `nav_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `nav_hide` smallint(6) NOT NULL DEFAULT '0', - `content_from_pid` int(10) unsigned NOT NULL DEFAULT '0', - `mount_pid` int(10) unsigned NOT NULL DEFAULT '0', - `mount_pid_ol` smallint(6) NOT NULL DEFAULT '0', - `alias` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `l18n_cfg` smallint(6) NOT NULL DEFAULT '0', - `fe_login_mode` smallint(6) NOT NULL DEFAULT '0', - `backend_layout` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `backend_layout_next_level` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tsconfig_includes` text COLLATE utf8mb4_unicode_ci, - `legacy_overlay_uid` int(10) unsigned NOT NULL DEFAULT '0', - `categories` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `alias` (`alias`), - KEY `determineSiteRoot` (`is_siteroot`), - KEY `language_identifier` (`l10n_parent`,`sys_language_uid`), - KEY `parent` (`pid`,`deleted`,`hidden`), - KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `pages` --- - -LOCK TABLES `pages` WRITE; -/*!40000 ALTER TABLE `pages` DISABLE KEYS */; -INSERT INTO `pages` VALUES (1,0,1566401415,1566399570,1,0,0,0,0,'',0,NULL,0,0,0,0,NULL,0,_binary 'a:37:{s:7:\"doktype\";N;s:5:\"title\";N;s:4:\"slug\";N;s:9:\"nav_title\";N;s:8:\"subtitle\";N;s:8:\"abstract\";N;s:8:\"keywords\";N;s:11:\"description\";N;s:6:\"author\";N;s:12:\"author_email\";N;s:11:\"lastUpdated\";N;s:6:\"layout\";N;s:8:\"newUntil\";N;s:14:\"backend_layout\";N;s:25:\"backend_layout_next_level\";N;s:16:\"content_from_pid\";N;s:6:\"target\";N;s:13:\"cache_timeout\";N;s:10:\"cache_tags\";N;s:11:\"is_siteroot\";N;s:9:\"no_search\";N;s:13:\"php_tree_stop\";N;s:6:\"module\";N;s:5:\"media\";N;s:17:\"tsconfig_includes\";N;s:8:\"TSconfig\";N;s:8:\"l18n_cfg\";N;s:6:\"hidden\";N;s:8:\"nav_hide\";N;s:9:\"starttime\";N;s:7:\"endtime\";N;s:16:\"extendToSubpages\";N;s:8:\"fe_group\";N;s:13:\"fe_login_mode\";N;s:8:\"editlock\";N;s:10:\"categories\";N;s:14:\"rowDescription\";N;}',0,0,'',0,0,0,0,0,0,1,1,31,31,1,'Home','/',1,NULL,1,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1566401415,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0),(2,1,1566402668,1566400573,1,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,0,_binary 'a:13:{s:7:\"doktype\";N;s:5:\"title\";N;s:4:\"slug\";N;s:14:\"backend_layout\";N;s:25:\"backend_layout_next_level\";N;s:6:\"module\";N;s:5:\"media\";N;s:17:\"tsconfig_includes\";N;s:8:\"TSconfig\";N;s:6:\"hidden\";N;s:8:\"editlock\";N;s:10:\"categories\";N;s:14:\"rowDescription\";N;}',0,0,'',0,0,0,0,0,0,1,0,31,27,0,'addresses','/addresses',254,'TCEMAIN {\r\n clearCacheCmd = 3\r\n}',0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0),(3,1,1566401718,1566401700,1,0,0,0,0,'0',128,NULL,0,0,0,0,NULL,0,_binary 'a:1:{s:6:\"hidden\";N;}',0,0,'',0,0,0,0,0,0,1,0,31,27,0,'Plugin','/plugin',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1566401718,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0); -/*!40000 ALTER TABLE `pages` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_be_shortcuts` --- - -DROP TABLE IF EXISTS `sys_be_shortcuts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_be_shortcuts` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `userid` int(10) unsigned NOT NULL DEFAULT '0', - `module_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `url` text COLLATE utf8mb4_unicode_ci, - `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sorting` int(11) NOT NULL DEFAULT '0', - `sc_group` smallint(6) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `event` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_be_shortcuts` --- - -LOCK TABLES `sys_be_shortcuts` WRITE; -/*!40000 ALTER TABLE `sys_be_shortcuts` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_be_shortcuts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_category` --- - -DROP TABLE IF EXISTS `sys_category`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_category` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(11) NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `starttime` int(10) unsigned NOT NULL DEFAULT '0', - `endtime` int(10) unsigned NOT NULL DEFAULT '0', - `sorting` int(11) NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `sys_language_uid` int(11) NOT NULL DEFAULT '0', - `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_state` text COLLATE utf8mb4_unicode_ci, - `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_diffsource` mediumblob, - `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_state` smallint(6) NOT NULL DEFAULT '0', - `t3ver_stage` int(11) NOT NULL DEFAULT '0', - `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', - `title` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, - `parent` int(11) NOT NULL DEFAULT '0', - `items` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `category_parent` (`parent`), - KEY `category_list` (`pid`,`deleted`,`sys_language_uid`), - KEY `parent` (`pid`,`deleted`,`hidden`), - KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_category` --- - -LOCK TABLES `sys_category` WRITE; -/*!40000 ALTER TABLE `sys_category` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_category` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_category_record_mm` --- - -DROP TABLE IF EXISTS `sys_category_record_mm`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_category_record_mm` ( - `uid_local` int(11) NOT NULL DEFAULT '0', - `uid_foreign` int(11) NOT NULL DEFAULT '0', - `tablenames` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `fieldname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sorting` int(11) NOT NULL DEFAULT '0', - `sorting_foreign` int(11) NOT NULL DEFAULT '0', - KEY `uid_local_foreign` (`uid_local`,`uid_foreign`), - KEY `uid_foreign_tablefield` (`uid_foreign`,`tablenames`(40),`fieldname`(3),`sorting_foreign`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_category_record_mm` --- - -LOCK TABLES `sys_category_record_mm` WRITE; -/*!40000 ALTER TABLE `sys_category_record_mm` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_category_record_mm` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_collection` --- - -DROP TABLE IF EXISTS `sys_collection`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_collection` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(11) NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `starttime` int(10) unsigned NOT NULL DEFAULT '0', - `endtime` int(10) unsigned NOT NULL DEFAULT '0', - `fe_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `sys_language_uid` int(11) NOT NULL DEFAULT '0', - `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_state` text COLLATE utf8mb4_unicode_ci, - `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_diffsource` mediumblob, - `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_state` smallint(6) NOT NULL DEFAULT '0', - `t3ver_stage` int(11) NOT NULL DEFAULT '0', - `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', - `title` tinytext COLLATE utf8mb4_unicode_ci, - `type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'static', - `table_name` tinytext COLLATE utf8mb4_unicode_ci, - `items` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`deleted`,`hidden`), - KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_collection` --- - -LOCK TABLES `sys_collection` WRITE; -/*!40000 ALTER TABLE `sys_collection` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_collection` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_collection_entries` --- - -DROP TABLE IF EXISTS `sys_collection_entries`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_collection_entries` ( - `uid` int(11) NOT NULL AUTO_INCREMENT, - `uid_local` int(11) NOT NULL DEFAULT '0', - `uid_foreign` int(11) NOT NULL DEFAULT '0', - `tablenames` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sorting` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `uid_local` (`uid_local`), - KEY `uid_foreign` (`uid_foreign`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_collection_entries` --- - -LOCK TABLES `sys_collection_entries` WRITE; -/*!40000 ALTER TABLE `sys_collection_entries` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_collection_entries` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_domain` --- - -DROP TABLE IF EXISTS `sys_domain`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_domain` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `sorting` int(11) NOT NULL DEFAULT '0', - `domainName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`uid`), - KEY `getSysDomain` (`hidden`), - KEY `getDomainStartPage` (`pid`,`hidden`,`domainName`(100)), - KEY `parent` (`pid`,`hidden`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_domain` --- - -LOCK TABLES `sys_domain` WRITE; -/*!40000 ALTER TABLE `sys_domain` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_domain` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_file` --- - -DROP TABLE IF EXISTS `sys_file`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_file` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `last_indexed` int(11) NOT NULL DEFAULT '0', - `missing` smallint(6) NOT NULL DEFAULT '0', - `storage` int(11) NOT NULL DEFAULT '0', - `type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `metadata` int(11) NOT NULL DEFAULT '0', - `identifier` text COLLATE utf8mb4_unicode_ci, - `identifier_hash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `folder_hash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `extension` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `mime_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` tinytext COLLATE utf8mb4_unicode_ci, - `sha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `size` bigint(20) unsigned NOT NULL DEFAULT '0', - `creation_date` int(11) NOT NULL DEFAULT '0', - `modification_date` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `sel01` (`storage`,`identifier_hash`), - KEY `folder` (`storage`,`folder_hash`), - KEY `tstamp` (`tstamp`), - KEY `lastindex` (`last_indexed`), - KEY `sha1` (`sha1`), - KEY `parent` (`pid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_file` --- - -LOCK TABLES `sys_file` WRITE; -/*!40000 ALTER TABLE `sys_file` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_file` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_file_collection` --- - -DROP TABLE IF EXISTS `sys_file_collection`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_file_collection` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(11) NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `starttime` int(10) unsigned NOT NULL DEFAULT '0', - `endtime` int(10) unsigned NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `sys_language_uid` int(11) NOT NULL DEFAULT '0', - `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_state` text COLLATE utf8mb4_unicode_ci, - `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_diffsource` mediumblob, - `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_state` smallint(6) NOT NULL DEFAULT '0', - `t3ver_stage` int(11) NOT NULL DEFAULT '0', - `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', - `title` tinytext COLLATE utf8mb4_unicode_ci, - `type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'static', - `files` int(11) NOT NULL DEFAULT '0', - `storage` int(11) NOT NULL DEFAULT '0', - `folder` text COLLATE utf8mb4_unicode_ci, - `recursive` smallint(6) NOT NULL DEFAULT '0', - `category` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`deleted`,`hidden`), - KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_file_collection` --- - -LOCK TABLES `sys_file_collection` WRITE; -/*!40000 ALTER TABLE `sys_file_collection` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_file_collection` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_file_metadata` --- - -DROP TABLE IF EXISTS `sys_file_metadata`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_file_metadata` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(11) NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `sys_language_uid` int(11) NOT NULL DEFAULT '0', - `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_state` text COLLATE utf8mb4_unicode_ci, - `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_diffsource` mediumblob, - `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_state` smallint(6) NOT NULL DEFAULT '0', - `t3ver_stage` int(11) NOT NULL DEFAULT '0', - `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', - `file` int(11) NOT NULL DEFAULT '0', - `title` tinytext COLLATE utf8mb4_unicode_ci, - `width` int(11) NOT NULL DEFAULT '0', - `height` int(11) NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `alternative` text COLLATE utf8mb4_unicode_ci, - `categories` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `file` (`file`), - KEY `fal_filelist` (`l10n_parent`,`sys_language_uid`), - KEY `parent` (`pid`), - KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_file_metadata` --- - -LOCK TABLES `sys_file_metadata` WRITE; -/*!40000 ALTER TABLE `sys_file_metadata` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_file_metadata` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_file_processedfile` --- - -DROP TABLE IF EXISTS `sys_file_processedfile`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_file_processedfile` ( - `uid` int(11) NOT NULL AUTO_INCREMENT, - `tstamp` int(11) NOT NULL DEFAULT '0', - `crdate` int(11) NOT NULL DEFAULT '0', - `storage` int(11) NOT NULL DEFAULT '0', - `original` int(11) NOT NULL DEFAULT '0', - `identifier` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` tinytext COLLATE utf8mb4_unicode_ci, - `configuration` text COLLATE utf8mb4_unicode_ci, - `configurationsha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `originalfilesha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `task_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `checksum` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `width` int(11) DEFAULT '0', - `height` int(11) DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `combined_1` (`original`,`task_type`(100),`configurationsha1`), - KEY `identifier` (`storage`,`identifier`(180)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_file_processedfile` --- - -LOCK TABLES `sys_file_processedfile` WRITE; -/*!40000 ALTER TABLE `sys_file_processedfile` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_file_processedfile` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_file_reference` --- - -DROP TABLE IF EXISTS `sys_file_reference`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_file_reference` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(11) NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `sys_language_uid` int(11) NOT NULL DEFAULT '0', - `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_state` text COLLATE utf8mb4_unicode_ci, - `l10n_diffsource` mediumblob, - `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_state` smallint(6) NOT NULL DEFAULT '0', - `t3ver_stage` int(11) NOT NULL DEFAULT '0', - `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', - `uid_local` int(11) NOT NULL DEFAULT '0', - `uid_foreign` int(11) NOT NULL DEFAULT '0', - `tablenames` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `fieldname` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sorting_foreign` int(11) NOT NULL DEFAULT '0', - `table_local` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `title` tinytext COLLATE utf8mb4_unicode_ci, - `description` text COLLATE utf8mb4_unicode_ci, - `alternative` text COLLATE utf8mb4_unicode_ci, - `link` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `crop` varchar(4000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `autoplay` smallint(6) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `tablenames_fieldname` (`tablenames`(32),`fieldname`(12)), - KEY `deleted` (`deleted`), - KEY `uid_local` (`uid_local`), - KEY `uid_foreign` (`uid_foreign`), - KEY `combined_1` (`l10n_parent`,`t3ver_oid`,`t3ver_wsid`,`t3ver_state`,`deleted`), - KEY `parent` (`pid`,`deleted`,`hidden`), - KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_file_reference` --- - -LOCK TABLES `sys_file_reference` WRITE; -/*!40000 ALTER TABLE `sys_file_reference` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_file_reference` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_file_storage` --- - -DROP TABLE IF EXISTS `sys_file_storage`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_file_storage` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `driver` tinytext COLLATE utf8mb4_unicode_ci, - `configuration` text COLLATE utf8mb4_unicode_ci, - `is_default` smallint(6) NOT NULL DEFAULT '0', - `is_browsable` smallint(6) NOT NULL DEFAULT '0', - `is_public` smallint(6) NOT NULL DEFAULT '0', - `is_writable` smallint(6) NOT NULL DEFAULT '0', - `is_online` smallint(6) NOT NULL DEFAULT '1', - `auto_extract_metadata` smallint(6) NOT NULL DEFAULT '1', - `processingfolder` tinytext COLLATE utf8mb4_unicode_ci, - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`deleted`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_file_storage` --- - -LOCK TABLES `sys_file_storage` WRITE; -/*!40000 ALTER TABLE `sys_file_storage` DISABLE KEYS */; -INSERT INTO `sys_file_storage` VALUES (1,0,1566399620,1566399620,0,0,'This is the local fileadmin/ directory. This storage mount has been created automatically by TYPO3.','fileadmin/ (auto-created)','Local','\n\n \n \n \n \n fileadmin/\n \n \n relative\n \n \n 1\n \n \n \n \n',1,1,1,1,1,1,NULL); -/*!40000 ALTER TABLE `sys_file_storage` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_filemounts` --- - -DROP TABLE IF EXISTS `sys_filemounts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_filemounts` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `sorting` int(11) NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `base` int(10) unsigned NOT NULL DEFAULT '0', - `read_only` smallint(5) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`deleted`,`hidden`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_filemounts` --- - -LOCK TABLES `sys_filemounts` WRITE; -/*!40000 ALTER TABLE `sys_filemounts` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_filemounts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_history` --- - -DROP TABLE IF EXISTS `sys_history`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_history` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `actiontype` smallint(6) NOT NULL DEFAULT '0', - `usertype` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'BE', - `userid` int(10) unsigned DEFAULT NULL, - `originaluserid` int(10) unsigned DEFAULT NULL, - `recuid` int(11) NOT NULL DEFAULT '0', - `tablename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `history_data` mediumtext COLLATE utf8mb4_unicode_ci, - `workspace` int(11) DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `recordident_1` (`tablename`(100),`recuid`), - KEY `recordident_2` (`tablename`(100),`tstamp`), - KEY `parent` (`pid`) -) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_history` --- - -LOCK TABLES `sys_history` WRITE; -/*!40000 ALTER TABLE `sys_history` DISABLE KEYS */; -INSERT INTO `sys_history` VALUES (1,0,1566399649,1,'BE',1,0,1,'tt_content','{\"uid\":1,\"rowDescription\":\"\",\"pid\":1,\"tstamp\":1566399649,\"crdate\":1566399649,\"cruser_id\":1,\"deleted\":0,\"hidden\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"sorting\":256,\"editlock\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l10n_source\":0,\"l10n_state\":null,\"t3_origuid\":0,\"l18n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_id\":0,\"t3ver_label\":\"\",\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"t3ver_count\":0,\"t3ver_tstamp\":0,\"t3ver_move_id\":0,\"CType\":\"list\",\"header\":\"Example plugin\",\"header_position\":\"\",\"bodytext\":null,\"bullets_type\":0,\"uploads_description\":0,\"uploads_type\":0,\"assets\":0,\"image\":0,\"imagewidth\":0,\"imageorient\":0,\"imagecols\":2,\"imageborder\":0,\"media\":0,\"layout\":0,\"frame_class\":\"default\",\"cols\":0,\"spaceBefore\":0,\"spaceAfter\":0,\"space_before_class\":\"\",\"space_after_class\":\"\",\"records\":null,\"pages\":\"\",\"colPos\":0,\"subheader\":\"\",\"header_link\":\"\",\"image_zoom\":0,\"header_layout\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"linkToTop\":0,\"file_collections\":null,\"filelink_size\":0,\"filelink_sorting\":\"\",\"filelink_sorting_direction\":\"\",\"target\":\"\",\"date\":0,\"recursive\":0,\"imageheight\":0,\"pi_flexform\":null,\"accessibility_title\":\"\",\"accessibility_bypass\":0,\"accessibility_bypass_text\":\"\",\"selected_categories\":null,\"category_field\":\"\",\"table_class\":\"\",\"table_caption\":null,\"table_delimiter\":124,\"table_enclosure\":0,\"table_header_position\":0,\"table_tfoot\":0,\"categories\":0}',0),(2,0,1566399785,2,'BE',1,0,1,'sys_template','{\"oldRecord\":{\"config\":\"page = PAGE\\npage.10 = TEXT\\npage.10.value (\\n
\\n
\\n <\\/svg>\\n <\\/div>\\n

Welcome to a default website made with TYPO3<\\/a><\\/h4>\\n <\\/div>\\n)\\npage.100 =< styles.content.get\",\"include_static_file\":\"EXT:fluid_styled_content\\/Configuration\\/TypoScript\\/,EXT:fluid_styled_content\\/Configuration\\/TypoScript\\/Styling\\/\",\"description\":\"This is an Empty Site Package TypoScript template.\\n\\nFor each website you need a TypoScript template on the main page of your website (on the top level). For better maintenance all TypoScript should be extracted into external files via @import \'EXT:site_myproject\\/Configuration\\/TypoScript\\/setup.typoscript\'\"},\"newRecord\":{\"config\":\"\",\"include_static_file\":\"\",\"description\":\"This is an Empty Site Package TypoScript template.\\r\\n\\r\\nFor each website you need a TypoScript template on the main page of your website (on the top level). For better maintenance all TypoScript should be extracted into external files via @import \'EXT:site_myproject\\/Configuration\\/TypoScript\\/setup.typoscript\'\"}}',0),(3,0,1566400263,2,'BE',1,0,1,'tt_content','{\"oldRecord\":{\"CType\":\"list\",\"l18n_diffsource\":\"\"},\"newRecord\":{\"CType\":\"exampleextension_address\",\"l18n_diffsource\":\"a:25:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:9:\\\"list_type\\\";N;s:5:\\\"pages\\\";N;s:9:\\\"recursive\\\";N;s:6:\\\"layout\\\";N;s:11:\\\"frame_class\\\";N;s:18:\\\"space_before_class\\\";N;s:17:\\\"space_after_class\\\";N;s:12:\\\"sectionIndex\\\";N;s:9:\\\"linkToTop\\\";N;s:16:\\\"sys_language_uid\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;s:10:\\\"categories\\\";N;s:14:\\\"rowDescription\\\";N;}\"}}',0),(4,0,1566400541,2,'BE',1,0,1,'tt_content','{\"oldRecord\":{\"pi_flexform\":null,\"l18n_diffsource\":\"a:25:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:9:\\\"list_type\\\";N;s:5:\\\"pages\\\";N;s:9:\\\"recursive\\\";N;s:6:\\\"layout\\\";N;s:11:\\\"frame_class\\\";N;s:18:\\\"space_before_class\\\";N;s:17:\\\"space_after_class\\\";N;s:12:\\\"sectionIndex\\\";N;s:9:\\\"linkToTop\\\";N;s:16:\\\"sys_language_uid\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;s:10:\\\"categories\\\";N;s:14:\\\"rowDescription\\\";N;}\"},\"newRecord\":{\"pi_flexform\":\"\\n\\n \\n \\n \\n \\n <\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\",\"l18n_diffsource\":\"a:14:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:11:\\\"pi_flexform\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;}\"}}',0),(5,0,1566400573,1,'BE',1,0,2,'pages','{\"uid\":2,\"pid\":1,\"tstamp\":1566400573,\"crdate\":1566400573,\"cruser_id\":1,\"deleted\":0,\"hidden\":1,\"starttime\":0,\"endtime\":0,\"fe_group\":\"0\",\"sorting\":256,\"rowDescription\":null,\"editlock\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_source\":0,\"l10n_state\":null,\"t3_origuid\":0,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_id\":0,\"t3ver_label\":\"\",\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"t3ver_count\":0,\"t3ver_tstamp\":0,\"t3ver_move_id\":0,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"addresses\",\"slug\":\"\\/addresses\",\"doktype\":254,\"TSconfig\":null,\"is_siteroot\":0,\"php_tree_stop\":0,\"url\":\"\",\"shortcut\":0,\"shortcut_mode\":0,\"subtitle\":\"\",\"layout\":0,\"target\":\"\",\"media\":0,\"lastUpdated\":0,\"keywords\":null,\"cache_timeout\":0,\"cache_tags\":\"\",\"newUntil\":0,\"description\":null,\"no_search\":0,\"SYS_LASTCHANGED\":0,\"abstract\":null,\"module\":\"\",\"extendToSubpages\":0,\"author\":\"\",\"author_email\":\"\",\"nav_title\":\"\",\"nav_hide\":0,\"content_from_pid\":0,\"mount_pid\":0,\"mount_pid_ol\":0,\"alias\":\"\",\"l18n_cfg\":0,\"fe_login_mode\":0,\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"tsconfig_includes\":null,\"legacy_overlay_uid\":0,\"categories\":0}',0),(6,0,1566400578,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"a:1:{s:6:\\\"hidden\\\";N;}\"}}',0),(7,0,1566400612,1,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"uid\":1,\"pid\":2,\"tstamp\":1566400612,\"crdate\":1566400612,\"cruser_id\":1,\"deleted\":0,\"hidden\":0,\"starttime\":0,\"endtime\":0,\"company_name\":\"Codappix GmbH\",\"street\":\"Wallstra\\u00dfe\",\"house_number\":\"14\",\"zip\":\"41061\",\"city\":\"M\\u00f6nchengladbach\",\"country\":\"Germany\"}',0),(8,0,1566400897,2,'BE',1,0,1,'tt_content','{\"oldRecord\":{\"pages\":\"\",\"l18n_diffsource\":\"a:14:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:11:\\\"pi_flexform\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;}\"},\"newRecord\":{\"pages\":\"2\",\"l18n_diffsource\":\"a:15:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:5:\\\"pages\\\";N;s:9:\\\"recursive\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;}\"}}',0),(9,0,1566401145,2,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"oldRecord\":{\"slug\":null},\"newRecord\":{\"slug\":\"default-65cfba6982\"}}',0),(10,0,1566401161,2,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"oldRecord\":{\"slug\":\"default-65cfba6982\"},\"newRecord\":{\"slug\":\"codappix-gmbh\"}}',0),(11,0,1566401308,2,'BE',1,0,1,'pages','{\"oldRecord\":{\"slug\":\"\\/\",\"fe_group\":\"0\",\"l10n_diffsource\":null},\"newRecord\":{\"slug\":\"\\/home\",\"fe_group\":\"\",\"l10n_diffsource\":\"a:37:{s:7:\\\"doktype\\\";N;s:5:\\\"title\\\";N;s:4:\\\"slug\\\";N;s:9:\\\"nav_title\\\";N;s:8:\\\"subtitle\\\";N;s:8:\\\"abstract\\\";N;s:8:\\\"keywords\\\";N;s:11:\\\"description\\\";N;s:6:\\\"author\\\";N;s:12:\\\"author_email\\\";N;s:11:\\\"lastUpdated\\\";N;s:6:\\\"layout\\\";N;s:8:\\\"newUntil\\\";N;s:14:\\\"backend_layout\\\";N;s:25:\\\"backend_layout_next_level\\\";N;s:16:\\\"content_from_pid\\\";N;s:6:\\\"target\\\";N;s:13:\\\"cache_timeout\\\";N;s:10:\\\"cache_tags\\\";N;s:11:\\\"is_siteroot\\\";N;s:9:\\\"no_search\\\";N;s:13:\\\"php_tree_stop\\\";N;s:6:\\\"module\\\";N;s:5:\\\"media\\\";N;s:17:\\\"tsconfig_includes\\\";N;s:8:\\\"TSconfig\\\";N;s:8:\\\"l18n_cfg\\\";N;s:6:\\\"hidden\\\";N;s:8:\\\"nav_hide\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:16:\\\"extendToSubpages\\\";N;s:8:\\\"fe_group\\\";N;s:13:\\\"fe_login_mode\\\";N;s:8:\\\"editlock\\\";N;s:10:\\\"categories\\\";N;s:14:\\\"rowDescription\\\";N;}\"}}',0),(12,0,1566401415,2,'BE',1,0,1,'pages','{\"oldRecord\":{\"slug\":\"\\/home\"},\"newRecord\":{\"slug\":\"\\/\"}}',0),(13,0,1566401509,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"TSconfig\":null,\"l10n_diffsource\":\"a:1:{s:6:\\\"hidden\\\";N;}\"},\"newRecord\":{\"TSconfig\":\"TCEMAIN {\\r\\n clearCacheCmd = 1\\r\\n}\",\"l10n_diffsource\":\"a:13:{s:7:\\\"doktype\\\";N;s:5:\\\"title\\\";N;s:4:\\\"slug\\\";N;s:14:\\\"backend_layout\\\";N;s:25:\\\"backend_layout_next_level\\\";N;s:6:\\\"module\\\";N;s:5:\\\"media\\\";N;s:17:\\\"tsconfig_includes\\\";N;s:8:\\\"TSconfig\\\";N;s:6:\\\"hidden\\\";N;s:8:\\\"editlock\\\";N;s:10:\\\"categories\\\";N;s:14:\\\"rowDescription\\\";N;}\"}}',0),(14,0,1566401700,1,'BE',1,0,3,'pages','{\"uid\":3,\"pid\":1,\"tstamp\":1566401700,\"crdate\":1566401700,\"cruser_id\":1,\"deleted\":0,\"hidden\":1,\"starttime\":0,\"endtime\":0,\"fe_group\":\"0\",\"sorting\":128,\"rowDescription\":null,\"editlock\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_source\":0,\"l10n_state\":null,\"t3_origuid\":0,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_id\":0,\"t3ver_label\":\"\",\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"t3ver_count\":0,\"t3ver_tstamp\":0,\"t3ver_move_id\":0,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"Plugin\",\"slug\":\"\\/plugin\",\"doktype\":1,\"TSconfig\":null,\"is_siteroot\":0,\"php_tree_stop\":0,\"url\":\"\",\"shortcut\":0,\"shortcut_mode\":0,\"subtitle\":\"\",\"layout\":0,\"target\":\"\",\"media\":0,\"lastUpdated\":0,\"keywords\":null,\"cache_timeout\":0,\"cache_tags\":\"\",\"newUntil\":0,\"description\":null,\"no_search\":0,\"SYS_LASTCHANGED\":0,\"abstract\":null,\"module\":\"\",\"extendToSubpages\":0,\"author\":\"\",\"author_email\":\"\",\"nav_title\":\"\",\"nav_hide\":0,\"content_from_pid\":0,\"mount_pid\":0,\"mount_pid_ol\":0,\"alias\":\"\",\"l18n_cfg\":0,\"fe_login_mode\":0,\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"tsconfig_includes\":null,\"legacy_overlay_uid\":0,\"categories\":0}',0),(15,0,1566401714,3,'BE',1,0,1,'tt_content','{\"oldPageId\":1,\"newPageId\":3,\"oldData\":{\"header\":\"Example plugin\",\"pid\":1,\"event_pid\":1,\"t3ver_state\":0,\"_ORIG_pid\":null},\"newData\":{\"tstamp\":1566401714,\"pid\":3,\"sorting\":256}}',0),(16,0,1566401714,2,'BE',1,0,1,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"a:15:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:5:\\\"pages\\\";N;s:9:\\\"recursive\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;}\"},\"newRecord\":{\"l18n_diffsource\":\"a:2:{s:6:\\\"colPos\\\";N;s:16:\\\"sys_language_uid\\\";N;}\"}}',0),(17,0,1566401718,2,'BE',1,0,3,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"a:1:{s:6:\\\"hidden\\\";N;}\"}}',0),(18,0,1566402622,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"TSconfig\":\"TCEMAIN {\\r\\n clearCacheCmd = 1\\r\\n}\"},\"newRecord\":{\"TSconfig\":\"TCEMAIN {\\r\\n clearCacheCmd = 2\\r\\n}\"}}',0),(19,0,1566402638,2,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"oldRecord\":{\"company_name\":\"TYPO3 Camp Rhein Ruhr\"},\"newRecord\":{\"company_name\":\"Codappix GmbH\"}}',0),(20,0,1566402668,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"TSconfig\":\"TCEMAIN {\\r\\n clearCacheCmd = 2\\r\\n}\"},\"newRecord\":{\"TSconfig\":\"TCEMAIN {\\r\\n clearCacheCmd = 3\\r\\n}\"}}',0),(21,0,1566402676,2,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"oldRecord\":{\"company_name\":\"TYPO3 Camp Rhein Ruhr\"},\"newRecord\":{\"company_name\":\"Codappix GmbH\"}}',0),(22,0,1566402685,2,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"oldRecord\":{\"company_name\":\"TYPO3 Camp Rhein Ruhr\"},\"newRecord\":{\"company_name\":\"Codappix GmbH\"}}',0); -/*!40000 ALTER TABLE `sys_history` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_language` --- - -DROP TABLE IF EXISTS `sys_language`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_language` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `sorting` int(11) NOT NULL DEFAULT '0', - `title` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `flag` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `language_isocode` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `static_lang_isocode` int(10) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`hidden`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_language` --- - -LOCK TABLES `sys_language` WRITE; -/*!40000 ALTER TABLE `sys_language` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_language` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_lockedrecords` --- - -DROP TABLE IF EXISTS `sys_lockedrecords`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_lockedrecords` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `userid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `record_table` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `record_uid` int(11) NOT NULL DEFAULT '0', - `record_pid` int(11) NOT NULL DEFAULT '0', - `username` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `feuserid` int(10) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `event` (`userid`,`tstamp`) -) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_lockedrecords` --- - -LOCK TABLES `sys_lockedrecords` WRITE; -/*!40000 ALTER TABLE `sys_lockedrecords` DISABLE KEYS */; -INSERT INTO `sys_lockedrecords` VALUES (43,1,1566402685,'tx_exampleextension_domain_model_address',1,0,'dsiepmann',0); -/*!40000 ALTER TABLE `sys_lockedrecords` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_log` --- - -DROP TABLE IF EXISTS `sys_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_log` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `userid` int(10) unsigned NOT NULL DEFAULT '0', - `action` smallint(5) unsigned NOT NULL DEFAULT '0', - `recuid` int(10) unsigned NOT NULL DEFAULT '0', - `tablename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `recpid` int(11) NOT NULL DEFAULT '0', - `error` smallint(5) unsigned NOT NULL DEFAULT '0', - `details` text COLLATE utf8mb4_unicode_ci, - `type` smallint(5) unsigned NOT NULL DEFAULT '0', - `details_nr` smallint(6) NOT NULL DEFAULT '0', - `IP` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `log_data` text COLLATE utf8mb4_unicode_ci, - `event_pid` int(11) NOT NULL DEFAULT '-1', - `workspace` int(11) NOT NULL DEFAULT '0', - `NEWid` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `request_id` varchar(13) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `time_micro` double NOT NULL DEFAULT '0', - `component` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `level` smallint(5) unsigned NOT NULL DEFAULT '0', - `message` text COLLATE utf8mb4_unicode_ci, - `data` text COLLATE utf8mb4_unicode_ci, - PRIMARY KEY (`uid`), - KEY `event` (`userid`,`event_pid`), - KEY `recuidIdx` (`recuid`), - KEY `user_auth` (`type`,`action`,`tstamp`), - KEY `request` (`request_id`), - KEY `combined_1` (`tstamp`,`type`,`userid`), - KEY `parent` (`pid`) -) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_log` --- - -LOCK TABLES `sys_log` WRITE; -/*!40000 ALTER TABLE `sys_log` DISABLE KEYS */; -INSERT INTO `sys_log` VALUES (1,0,1566399649,1,1,1,'tt_content',0,0,'Record \'%s\' (%s) was inserted on page \'%s\' (%s)',1,10,'::1','a:4:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";i:2;s:4:\"Home\";i:3;i:1;}',1,0,'NEW5d5d5c9cf073f726289402','',0,'',0,NULL,NULL),(2,0,1566399773,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:5:\"pages\";}',-1,0,'','',0,'',0,NULL,NULL),(3,0,1566399785,1,2,1,'sys_template',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:25:\"Main TypoScript Rendering\";i:1;s:14:\"sys_template:1\";s:7:\"history\";s:1:\"2\";}',1,0,'','',0,'',0,NULL,NULL),(4,0,1566399786,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1294587217: The page is not configured! [type=0][]. This means that there is no TypoScript object of type PAGE with typeNum=0 configured. | TYPO3\\CMS\\Core\\Error\\Http\\ServiceUnavailableException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php in line 2602. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/?no_cache=1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(5,0,1566399828,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1294587217: The page is not configured! [type=0][]. This means that there is no TypoScript object of type PAGE with typeNum=0 configured. | TYPO3\\CMS\\Core\\Error\\Http\\ServiceUnavailableException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php in line 2602. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/?no_cache=1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(6,0,1566399832,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:5:\"pages\";}',-1,0,'','',0,'',0,NULL,NULL),(7,0,1566399832,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1294587217: The page is not configured! [type=0][]. This means that there is no TypoScript object of type PAGE with typeNum=0 configured. | TYPO3\\CMS\\Core\\Error\\Http\\ServiceUnavailableException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php in line 2602. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/?no_cache=1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(8,0,1566399881,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(9,0,1566400091,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1294587217: The page is not configured! [type=0][]. This means that there is no TypoScript object of type PAGE with typeNum=0 configured. | TYPO3\\CMS\\Core\\Error\\Http\\ServiceUnavailableException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php in line 2602. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/?no_cache=1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(10,0,1566400156,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1540246570: No Content Object definition found at TypoScript object path \"tt_content.list.20.\" | TYPO3Fluid\\Fluid\\Core\\ViewHelper\\Exception thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php in line 160. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/?no_cache=1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(11,0,1566400263,1,2,1,'tt_content',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";s:7:\"history\";s:1:\"3\";}',1,0,'','',0,'',0,NULL,NULL),(12,0,1566400364,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(13,0,1566400541,1,2,1,'tt_content',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";s:7:\"history\";s:1:\"4\";}',1,0,'','',0,'',0,NULL,NULL),(14,0,1566400573,1,1,2,'pages',0,0,'Record \'%s\' (%s) was inserted on page \'%s\' (%s)',1,10,'::1','a:4:{i:0;s:9:\"addresses\";i:1;s:7:\"pages:2\";i:2;s:4:\"Home\";i:3;i:1;}',1,0,'NEW_1','',0,'',0,NULL,NULL),(15,0,1566400578,1,2,2,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:9:\"addresses\";i:1;s:7:\"pages:2\";s:7:\"history\";s:1:\"6\";}',2,0,'','',0,'',0,NULL,NULL),(16,0,1566400612,1,1,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was inserted on page \'%s\' (%s)',1,10,'::1','a:4:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";i:2;s:9:\"addresses\";i:3;i:2;}',2,0,'NEW5d5d60457cecc182582065','',0,'',0,NULL,NULL),(17,0,1566400897,1,2,1,'tt_content',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";s:7:\"history\";s:1:\"8\";}',1,0,'','',0,'',0,NULL,NULL),(18,0,1566400998,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(19,0,1566401108,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: An exception occurred while executing \'SELECT `slug` FROM `tx_exampleextension_domain_model_address` WHERE `uid` = ?\' with params [1]:\n\nUnknown column \'slug\' in \'field list\' | Doctrine\\DBAL\\Exception\\InvalidFieldNameException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php in line 60. Requested URL: https://workshop-gitlab-acceptance.own.localhost/typo3/index.php?route=%%2Frecord%%2Fedit&token=--AnonymizedToken--&edit%%5Btx_exampleextension_domain_model_address%%5D%%5B1%%5D=edit&returnUrl=%%2Ftypo3%%2Findex.php%%3Froute%%3D%%252Fweb%%252Flist%%252F%%26token%%3Dd2ec9d5beabd65abb4c39034277c19832955f965%%26id%%3D2%%26table%%3D%%26imagemode%%3D1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(20,0,1566401145,1,2,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";s:7:\"history\";s:1:\"9\";}',2,0,'','',0,'',0,NULL,NULL),(21,0,1566401161,1,2,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";s:7:\"history\";s:2:\"10\";}',2,0,'','',0,'',0,NULL,NULL),(22,0,1566401244,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(23,0,1566401255,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(24,0,1566401292,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(25,0,1566401298,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(26,0,1566401308,1,2,1,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:4:\"Home\";i:1;s:7:\"pages:1\";s:7:\"history\";s:2:\"11\";}',1,0,'','',0,'',0,NULL,NULL),(27,0,1566401310,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(28,0,1566401315,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/home/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(29,0,1566401360,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(30,0,1566401369,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/home/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(31,0,1566401415,1,2,1,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:4:\"Home\";i:1;s:7:\"pages:1\";s:7:\"history\";s:2:\"12\";}',1,0,'','',0,'',0,NULL,NULL),(32,0,1566401421,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(33,0,1566401454,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(34,0,1566401509,1,2,2,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:9:\"addresses\";i:1;s:7:\"pages:2\";s:7:\"history\";s:2:\"13\";}',2,0,'','',0,'',0,NULL,NULL),(35,0,1566401642,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(36,0,1566401642,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(37,0,1566401642,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(38,0,1566401700,1,1,3,'pages',0,0,'Record \'%s\' (%s) was inserted on page \'%s\' (%s)',1,10,'::1','a:4:{i:0;s:6:\"Plugin\";i:1;s:7:\"pages:3\";i:2;s:4:\"Home\";i:3;i:1;}',1,0,'NEW_1','',0,'',0,NULL,NULL),(39,0,1566401714,1,4,1,'tt_content',0,0,'Moved record \'%s\' (%s) to page \'%s\' (%s)',1,2,'::1','a:4:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";i:2;s:6:\"Plugin\";i:3;i:3;}',1,0,'','',0,'',0,NULL,NULL),(40,0,1566401714,1,4,1,'tt_content',0,0,'Moved record \'%s\' (%s) from page \'%s\' (%s)',1,3,'::1','a:4:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";i:2;s:4:\"Home\";i:3;i:1;}',3,0,'','',0,'',0,NULL,NULL),(41,0,1566401714,1,2,1,'tt_content',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";s:7:\"history\";s:2:\"16\";}',3,0,'','',0,'',0,NULL,NULL),(42,0,1566401718,1,2,3,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:6:\"Plugin\";i:1;s:7:\"pages:3\";s:7:\"history\";s:2:\"17\";}',3,0,'','',0,'',0,NULL,NULL),(43,0,1566401734,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(44,0,1566401754,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(45,0,1566401757,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/plugin/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(46,0,1566401765,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(47,0,1566401770,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(48,0,1566401770,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(49,0,1566401770,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(50,0,1566401930,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(51,0,1566402008,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(52,0,1566402011,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/plugin/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(53,0,1566402095,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/plugin/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(54,0,1566402114,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/plugin/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(55,0,1566402119,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(56,0,1566402316,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(57,0,1566402622,1,2,2,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:9:\"addresses\";i:1;s:7:\"pages:2\";s:7:\"history\";s:2:\"18\";}',2,0,'','',0,'',0,NULL,NULL),(58,0,1566402622,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:1:\"1\";}',-1,0,'','',0,'',0,NULL,NULL),(59,0,1566402638,1,2,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";s:7:\"history\";s:2:\"19\";}',2,0,'','',0,'',0,NULL,NULL),(60,0,1566402638,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:1:\"2\";}',-1,0,'','',0,'',0,NULL,NULL),(61,0,1566402668,1,2,2,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:9:\"addresses\";i:1;s:7:\"pages:2\";s:7:\"history\";s:2:\"20\";}',2,0,'','',0,'',0,NULL,NULL),(62,0,1566402668,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:1:\"2\";}',-1,0,'','',0,'',0,NULL,NULL),(63,0,1566402676,1,2,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";s:7:\"history\";s:2:\"21\";}',2,0,'','',0,'',0,NULL,NULL),(64,0,1566402676,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:1:\"3\";}',-1,0,'','',0,'',0,NULL,NULL),(65,0,1566402685,1,2,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";s:7:\"history\";s:2:\"22\";}',2,0,'','',0,'',0,NULL,NULL),(66,0,1566402685,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:1:\"3\";}',-1,0,'','',0,'',0,NULL,NULL); -/*!40000 ALTER TABLE `sys_log` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_news` --- - -DROP TABLE IF EXISTS `sys_news`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_news` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `starttime` int(10) unsigned NOT NULL DEFAULT '0', - `endtime` int(10) unsigned NOT NULL DEFAULT '0', - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `content` mediumtext COLLATE utf8mb4_unicode_ci, - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`deleted`,`hidden`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_news` --- - -LOCK TABLES `sys_news` WRITE; -/*!40000 ALTER TABLE `sys_news` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_news` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_refindex` --- - -DROP TABLE IF EXISTS `sys_refindex`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_refindex` ( - `hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tablename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `recuid` int(11) NOT NULL DEFAULT '0', - `field` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `flexpointer` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `softref_key` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `softref_id` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sorting` int(11) NOT NULL DEFAULT '0', - `deleted` smallint(6) NOT NULL DEFAULT '0', - `workspace` int(11) NOT NULL DEFAULT '0', - `ref_table` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ref_uid` int(11) NOT NULL DEFAULT '0', - `ref_string` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`hash`), - KEY `lookup_rec` (`tablename`(100),`recuid`), - KEY `lookup_uid` (`ref_table`(100),`ref_uid`), - KEY `lookup_string` (`ref_string`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_refindex` --- - -LOCK TABLES `sys_refindex` WRITE; -/*!40000 ALTER TABLE `sys_refindex` DISABLE KEYS */; -INSERT INTO `sys_refindex` VALUES ('cca7ab90d092f4ead7e8b51a7a476f92','tt_content',1,'pages','','','',0,0,0,'pages',2,''); -/*!40000 ALTER TABLE `sys_refindex` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_registry` --- - -DROP TABLE IF EXISTS `sys_registry`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_registry` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `entry_namespace` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `entry_key` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `entry_value` mediumblob, - PRIMARY KEY (`uid`), - UNIQUE KEY `entry_identifier` (`entry_namespace`,`entry_key`) -) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_registry` --- - -LOCK TABLES `sys_registry` WRITE; -/*!40000 ALTER TABLE `sys_registry` DISABLE KEYS */; -INSERT INTO `sys_registry` VALUES (1,'installUpdate','TYPO3\\CMS\\Install\\Updates\\ExtensionManagerTables',_binary 'i:1;'),(2,'installUpdate','TYPO3\\CMS\\Install\\Updates\\WizardDoneToRegistry',_binary 'i:1;'),(3,'installUpdate','TYPO3\\CMS\\Install\\Updates\\StartModuleUpdate',_binary 'i:1;'),(4,'installUpdate','TYPO3\\CMS\\Install\\Updates\\FrontendUserImageUpdateWizard',_binary 'i:1;'),(5,'installUpdate','TYPO3\\CMS\\Install\\Updates\\DatabaseRowsUpdateWizard',_binary 'i:1;'),(6,'installUpdate','TYPO3\\CMS\\Install\\Updates\\CommandLineBackendUserRemovalUpdate',_binary 'i:1;'),(7,'installUpdate','TYPO3\\CMS\\Install\\Updates\\FillTranslationSourceField',_binary 'i:1;'),(8,'installUpdate','TYPO3\\CMS\\Install\\Updates\\SectionFrameToFrameClassUpdate',_binary 'i:1;'),(9,'installUpdate','TYPO3\\CMS\\Install\\Updates\\SplitMenusUpdate',_binary 'i:1;'),(10,'installUpdate','TYPO3\\CMS\\Install\\Updates\\BulletContentElementUpdate',_binary 'i:1;'),(11,'installUpdate','TYPO3\\CMS\\Install\\Updates\\UploadContentElementUpdate',_binary 'i:1;'),(12,'installUpdate','TYPO3\\CMS\\Install\\Updates\\MigrateFscStaticTemplateUpdate',_binary 'i:1;'),(13,'installUpdate','TYPO3\\CMS\\Install\\Updates\\FileReferenceUpdate',_binary 'i:1;'),(14,'installUpdate','TYPO3\\CMS\\Install\\Updates\\MigrateFeSessionDataUpdate',_binary 'i:1;'),(15,'installUpdate','TYPO3\\CMS\\Install\\Updates\\Compatibility7ExtractionUpdate',_binary 'i:1;'),(16,'installUpdate','TYPO3\\CMS\\Install\\Updates\\FormLegacyExtractionUpdate',_binary 'i:1;'),(17,'installUpdate','TYPO3\\CMS\\Install\\Updates\\RteHtmlAreaExtractionUpdate',_binary 'i:1;'),(18,'installUpdate','TYPO3\\CMS\\Install\\Updates\\LanguageSortingUpdate',_binary 'i:1;'),(19,'installUpdate','TYPO3\\CMS\\Install\\Updates\\Typo3DbExtractionUpdate',_binary 'i:1;'),(20,'installUpdate','TYPO3\\CMS\\Install\\Updates\\FuncExtractionUpdate',_binary 'i:1;'),(21,'installUpdate','TYPO3\\CMS\\Install\\Updates\\MigrateUrlTypesInPagesUpdate',_binary 'i:1;'),(22,'installUpdate','TYPO3\\CMS\\Install\\Updates\\SeparateSysHistoryFromSysLogUpdate',_binary 'i:1;'),(23,'installUpdate','TYPO3\\CMS\\Install\\Updates\\RedirectExtractionUpdate',_binary 'i:1;'),(24,'installUpdate','TYPO3\\CMS\\Install\\Updates\\BackendUserStartModuleUpdate',_binary 'i:1;'),(25,'installUpdate','TYPO3\\CMS\\Install\\Updates\\MigratePagesLanguageOverlayUpdate',_binary 'i:1;'),(26,'installUpdate','TYPO3\\CMS\\Install\\Updates\\MigratePagesLanguageOverlayBeGroupsAccessRights',_binary 'i:1;'),(27,'installUpdate','TYPO3\\CMS\\Install\\Updates\\BackendLayoutIconUpdateWizard',_binary 'i:1;'),(28,'installUpdate','TYPO3\\CMS\\Install\\Updates\\RedirectsExtensionUpdate',_binary 'i:1;'),(29,'installUpdate','TYPO3\\CMS\\Install\\Updates\\AdminPanelInstall',_binary 'i:1;'),(30,'installUpdate','TYPO3\\CMS\\Install\\Updates\\PopulatePageSlugs',_binary 'i:1;'),(31,'installUpdate','TYPO3\\CMS\\Install\\Updates\\Argon2iPasswordHashes',_binary 'i:1;'),(32,'extensionDataImport','typo3/sysext/core/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(33,'extensionDataImport','typo3/sysext/scheduler/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(34,'extensionDataImport','typo3/sysext/extbase/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(35,'extensionDataImport','typo3/sysext/fluid/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(36,'extensionDataImport','typo3/sysext/frontend/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(37,'extensionDataImport','typo3/sysext/fluid_styled_content/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(38,'extensionDataImport','typo3/sysext/install/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(39,'extensionDataImport','typo3/sysext/recordlist/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(40,'extensionDataImport','typo3/sysext/backend/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(41,'extensionDataImport','typo3/sysext/setup/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(42,'extensionDataImport','typo3/sysext/rte_ckeditor/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(43,'extensionDataImport','typo3/sysext/about/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(44,'extensionDataImport','typo3/sysext/belog/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(45,'extensionDataImport','typo3/sysext/beuser/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(46,'extensionDataImport','typo3/sysext/extensionmanager/ext_tables_static+adt.sql',_binary 's:32:\"9beb0be917f14fdde2c9cb940a47d38e\";'),(47,'extensionDataImport','typo3/sysext/filelist/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(48,'extensionDataImport','typo3/sysext/info/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(49,'extensionDataImport','typo3/sysext/lowlevel/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(50,'extensionDataImport','typo3/sysext/t3editor/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(51,'extensionDataImport','typo3/sysext/tstemplate/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(52,'extensionDataImport','typo3conf/ext/example_extension/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(53,'core','formProtectionSessionToken:1',_binary 's:64:\"a4b6f8511b0ee8c977cc74899405f49ca1f63a928bc85b9ed59a81dc7be389cb\";'); -/*!40000 ALTER TABLE `sys_registry` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_template` --- - -DROP TABLE IF EXISTS `sys_template`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `sys_template` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(11) NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `starttime` int(10) unsigned NOT NULL DEFAULT '0', - `endtime` int(10) unsigned NOT NULL DEFAULT '0', - `sorting` int(11) NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_state` smallint(6) NOT NULL DEFAULT '0', - `t3ver_stage` int(11) NOT NULL DEFAULT '0', - `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sitetitle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `root` smallint(5) unsigned NOT NULL DEFAULT '0', - `clear` smallint(5) unsigned NOT NULL DEFAULT '0', - `include_static_file` text COLLATE utf8mb4_unicode_ci, - `constants` text COLLATE utf8mb4_unicode_ci, - `config` text COLLATE utf8mb4_unicode_ci, - `nextLevel` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `basedOn` tinytext COLLATE utf8mb4_unicode_ci, - `includeStaticAfterBasedOn` smallint(5) unsigned NOT NULL DEFAULT '0', - `static_file_mode` smallint(5) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `roottemplate` (`deleted`,`hidden`,`root`), - KEY `parent` (`pid`,`deleted`,`hidden`), - KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_template` --- - -LOCK TABLES `sys_template` WRITE; -/*!40000 ALTER TABLE `sys_template` DISABLE KEYS */; -INSERT INTO `sys_template` VALUES (1,1,1566399785,1566399570,1,0,0,0,0,0,'This is an Empty Site Package TypoScript template.\r\n\r\nFor each website you need a TypoScript template on the main page of your website (on the top level). For better maintenance all TypoScript should be extracted into external files via @import \'EXT:site_myproject/Configuration/TypoScript/setup.typoscript\'',0,0,0,'',0,0,0,0,0,0,'Main TypoScript Rendering','New TYPO3 Console site',1,1,'','','','',NULL,0,0); -/*!40000 ALTER TABLE `sys_template` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tt_content` --- - -DROP TABLE IF EXISTS `tt_content`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tt_content` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `rowDescription` text COLLATE utf8mb4_unicode_ci, - `pid` int(11) NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `starttime` int(10) unsigned NOT NULL DEFAULT '0', - `endtime` int(10) unsigned NOT NULL DEFAULT '0', - `fe_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', - `sorting` int(11) NOT NULL DEFAULT '0', - `editlock` smallint(5) unsigned NOT NULL DEFAULT '0', - `sys_language_uid` int(11) NOT NULL DEFAULT '0', - `l18n_parent` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_source` int(10) unsigned NOT NULL DEFAULT '0', - `l10n_state` text COLLATE utf8mb4_unicode_ci, - `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', - `l18n_diffsource` mediumblob, - `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_state` smallint(6) NOT NULL DEFAULT '0', - `t3ver_stage` int(11) NOT NULL DEFAULT '0', - `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', - `CType` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `header` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `header_position` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `bodytext` mediumtext COLLATE utf8mb4_unicode_ci, - `bullets_type` smallint(5) unsigned NOT NULL DEFAULT '0', - `uploads_description` smallint(5) unsigned NOT NULL DEFAULT '0', - `uploads_type` smallint(5) unsigned NOT NULL DEFAULT '0', - `assets` int(10) unsigned NOT NULL DEFAULT '0', - `image` int(10) unsigned NOT NULL DEFAULT '0', - `imagewidth` int(10) unsigned NOT NULL DEFAULT '0', - `imageorient` smallint(5) unsigned NOT NULL DEFAULT '0', - `imagecols` smallint(5) unsigned NOT NULL DEFAULT '0', - `imageborder` smallint(5) unsigned NOT NULL DEFAULT '0', - `media` int(10) unsigned NOT NULL DEFAULT '0', - `layout` int(10) unsigned NOT NULL DEFAULT '0', - `frame_class` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', - `cols` int(10) unsigned NOT NULL DEFAULT '0', - `spaceBefore` smallint(5) unsigned NOT NULL DEFAULT '0', - `spaceAfter` smallint(5) unsigned NOT NULL DEFAULT '0', - `space_before_class` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `space_after_class` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `records` text COLLATE utf8mb4_unicode_ci, - `pages` text COLLATE utf8mb4_unicode_ci, - `colPos` int(10) unsigned NOT NULL DEFAULT '0', - `subheader` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `header_link` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `image_zoom` smallint(5) unsigned NOT NULL DEFAULT '0', - `header_layout` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', - `list_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sectionIndex` smallint(5) unsigned NOT NULL DEFAULT '0', - `linkToTop` smallint(5) unsigned NOT NULL DEFAULT '0', - `file_collections` text COLLATE utf8mb4_unicode_ci, - `filelink_size` smallint(5) unsigned NOT NULL DEFAULT '0', - `filelink_sorting` varchar(17) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `filelink_sorting_direction` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `target` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `date` int(10) unsigned NOT NULL DEFAULT '0', - `recursive` smallint(5) unsigned NOT NULL DEFAULT '0', - `imageheight` int(10) unsigned NOT NULL DEFAULT '0', - `pi_flexform` mediumtext COLLATE utf8mb4_unicode_ci, - `accessibility_title` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `accessibility_bypass` smallint(5) unsigned NOT NULL DEFAULT '0', - `accessibility_bypass_text` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `selected_categories` text COLLATE utf8mb4_unicode_ci, - `category_field` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `table_class` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `table_caption` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `table_delimiter` smallint(5) unsigned NOT NULL DEFAULT '0', - `table_enclosure` smallint(5) unsigned NOT NULL DEFAULT '0', - `table_header_position` smallint(5) unsigned NOT NULL DEFAULT '0', - `table_tfoot` smallint(5) unsigned NOT NULL DEFAULT '0', - `categories` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`sorting`), - KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`), - KEY `language` (`l18n_parent`,`sys_language_uid`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tt_content` --- - -LOCK TABLES `tt_content` WRITE; -/*!40000 ALTER TABLE `tt_content` DISABLE KEYS */; -INSERT INTO `tt_content` VALUES (1,'',3,1566401714,1566399649,1,0,0,0,0,'',256,0,0,0,0,NULL,0,_binary 'a:2:{s:6:\"colPos\";N;s:16:\"sys_language_uid\";N;}',0,0,'',0,0,0,0,0,0,'exampleextension_address','Example plugin','',NULL,0,0,0,0,0,0,0,2,0,0,0,'default',0,0,0,'','',NULL,'2',0,'','',0,'0','',1,0,NULL,0,'','','',0,0,0,'\n\n \n \n \n \n \n \n \n \n \n','',0,'',NULL,'','',NULL,124,0,0,0,0); -/*!40000 ALTER TABLE `tt_content` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tx_exampleextension_domain_model_address` --- - -DROP TABLE IF EXISTS `tx_exampleextension_domain_model_address`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tx_exampleextension_domain_model_address` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `starttime` int(10) unsigned NOT NULL DEFAULT '0', - `endtime` int(10) unsigned NOT NULL DEFAULT '0', - `company_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `street` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `house_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `zip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `country` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `slug` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`deleted`,`hidden`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tx_exampleextension_domain_model_address` --- - -LOCK TABLES `tx_exampleextension_domain_model_address` WRITE; -/*!40000 ALTER TABLE `tx_exampleextension_domain_model_address` DISABLE KEYS */; -INSERT INTO `tx_exampleextension_domain_model_address` VALUES (1,2,1566402685,1566400612,1,0,0,0,0,'Codappix GmbH','Wallstraße','14','41061','Mönchengladbach','Germany','codappix-gmbh'); -/*!40000 ALTER TABLE `tx_exampleextension_domain_model_address` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tx_extensionmanager_domain_model_extension` --- - -DROP TABLE IF EXISTS `tx_extensionmanager_domain_model_extension`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tx_extensionmanager_domain_model_extension` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `extension_key` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `repository` int(10) unsigned NOT NULL DEFAULT '1', - `version` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `alldownloadcounter` int(10) unsigned NOT NULL DEFAULT '0', - `downloadcounter` int(10) unsigned NOT NULL DEFAULT '0', - `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` mediumtext COLLATE utf8mb4_unicode_ci, - `state` int(11) NOT NULL DEFAULT '0', - `review_state` int(11) NOT NULL DEFAULT '0', - `category` int(11) NOT NULL DEFAULT '0', - `last_updated` int(10) unsigned NOT NULL DEFAULT '0', - `serialized_dependencies` mediumtext COLLATE utf8mb4_unicode_ci, - `author_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `author_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ownerusername` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `md5hash` varchar(35) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `update_comment` mediumtext COLLATE utf8mb4_unicode_ci, - `authorcompany` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `integer_version` int(11) NOT NULL DEFAULT '0', - `current_version` int(11) NOT NULL DEFAULT '0', - `lastreviewedversion` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - UNIQUE KEY `versionextrepo` (`extension_key`,`version`,`repository`), - KEY `index_extrepo` (`extension_key`,`repository`), - KEY `index_versionrepo` (`integer_version`,`repository`,`extension_key`), - KEY `index_currentversions` (`current_version`,`review_state`), - KEY `parent` (`pid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tx_extensionmanager_domain_model_extension` --- - -LOCK TABLES `tx_extensionmanager_domain_model_extension` WRITE; -/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_extension` DISABLE KEYS */; -/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_extension` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tx_extensionmanager_domain_model_repository` --- - -DROP TABLE IF EXISTS `tx_extensionmanager_domain_model_repository`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tx_extensionmanager_domain_model_repository` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` mediumtext COLLATE utf8mb4_unicode_ci, - `wsdl_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `mirror_list_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `last_update` int(10) unsigned NOT NULL DEFAULT '0', - `extension_count` int(11) NOT NULL DEFAULT '0', - `pid` int(10) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `parent` (`pid`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tx_extensionmanager_domain_model_repository` --- - -LOCK TABLES `tx_extensionmanager_domain_model_repository` WRITE; -/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_repository` DISABLE KEYS */; -INSERT INTO `tx_extensionmanager_domain_model_repository` VALUES (1,'TYPO3.org Main Repository','Main repository on typo3.org. This repository has some mirrors configured which are available with the mirror url.','https://typo3.org/wsdl/tx_ter_wsdl.php','https://repositories.typo3.org/mirrors.xml.gz',1346191200,0,0); -/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_repository` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tx_scheduler_task` --- - -DROP TABLE IF EXISTS `tx_scheduler_task`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tx_scheduler_task` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `disable` smallint(5) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `nextexecution` int(10) unsigned NOT NULL DEFAULT '0', - `lastexecution_time` int(10) unsigned NOT NULL DEFAULT '0', - `lastexecution_failure` text COLLATE utf8mb4_unicode_ci, - `lastexecution_context` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `serialized_task_object` mediumblob, - `serialized_executions` mediumblob, - `task_group` int(10) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`uid`), - KEY `index_nextexecution` (`nextexecution`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tx_scheduler_task` --- - -LOCK TABLES `tx_scheduler_task` WRITE; -/*!40000 ALTER TABLE `tx_scheduler_task` DISABLE KEYS */; -/*!40000 ALTER TABLE `tx_scheduler_task` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tx_scheduler_task_group` --- - -DROP TABLE IF EXISTS `tx_scheduler_task_group`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tx_scheduler_task_group` ( - `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, - `pid` int(10) unsigned NOT NULL DEFAULT '0', - `tstamp` int(10) unsigned NOT NULL DEFAULT '0', - `crdate` int(10) unsigned NOT NULL DEFAULT '0', - `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', - `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', - `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', - `sorting` int(11) NOT NULL DEFAULT '0', - `groupName` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` text COLLATE utf8mb4_unicode_ci, - PRIMARY KEY (`uid`), - KEY `parent` (`pid`,`deleted`,`hidden`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tx_scheduler_task_group` --- - -LOCK TABLES `tx_scheduler_task_group` WRITE; -/*!40000 ALTER TABLE `tx_scheduler_task_group` DISABLE KEYS */; -/*!40000 ALTER TABLE `tx_scheduler_task_group` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2019-08-21 17:57:58 diff --git a/tests/_envs/gitlab-ci.yml b/tests/_envs/gitlab-ci.yml deleted file mode 100644 index e031c75..0000000 --- a/tests/_envs/gitlab-ci.yml +++ /dev/null @@ -1,12 +0,0 @@ -modules: - config: - WebDriver: - url: http://%TESTING_DOMAIN%/ - host: selenium__standalone-chrome - Db: - dsn: 'mysql:host=mysql;dbname=dev' - user: 'dev' - password: 'dev' - MailHog: - url: http://mailhog__mailhog - port: 8025 diff --git a/tests/_envs/local.yml b/tests/_envs/local.yml deleted file mode 100644 index 867e75e..0000000 --- a/tests/_envs/local.yml +++ /dev/null @@ -1,11 +0,0 @@ -modules: - config: - WebDriver: - url: http://localhost:8080/ - Db: - dsn: 'mysql:host=localhost;dbname=own_workshopgitlabacceptance_testing' - user: 'dev' - password: 'dev' - MailHog: - url: http://127.0.0.1 - port: 8025 diff --git a/tests/_output/.gitignore b/tests/_output/.gitignore deleted file mode 100644 index c96a04f..0000000 --- a/tests/_output/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/tests/_support/AcceptanceTester.php b/tests/_support/AcceptanceTester.php deleted file mode 100644 index 95c00ec..0000000 --- a/tests/_support/AcceptanceTester.php +++ /dev/null @@ -1,26 +0,0 @@ -