contao / core-bundle

[READ-ONLY] Contao Core Bundle
GNU Lesser General Public License v3.0
123 stars 58 forks source link

C4.4 Attempted to call an undefined method named "parseFile" #1650

Closed akroii closed 5 years ago

akroii commented 6 years ago

Seitdem ich das Contao von einem Arbeitsplatz auf einen anderen Umgezogen habe erhalte ich einen Fehler beim einloggen im Backend: Internal Server Error

Attempted to call an undefined method named "parseFile" of class "Symfony\Component\Yaml\Parser".

[2018-07-25 18:40:41] request.INFO: Matched route "contao_backend". {"route":"contao_backend","route_parameters":{"_scope":"backend","_token_check":true,"_controller":"Contao\\CoreBundle\\Controller\\BackendController::mainAction","_route":"contao_backend"},"request_uri":"http://buschner.local:8888/contao","method":"HEAD"} []
[2018-07-25 18:40:41] security.INFO: Attempting SimplePreAuthentication. {"key":"backend","authenticator":"Contao\\CoreBundle\\Security\\ContaoAuthenticator"} []
[2018-07-25 18:40:41] request.INFO: Matched route "contao_backend". {"route":"contao_backend","route_parameters":{"_scope":"backend","_token_check":true,"_controller":"Contao\\CoreBundle\\Controller\\BackendController::mainAction","_route":"contao_backend"},"request_uri":"http://buschner.local:8888/contao","method":"GET"} []
[2018-07-25 18:40:41] security.INFO: Attempting SimplePreAuthentication. {"key":"backend","authenticator":"Contao\\CoreBundle\\Security\\ContaoAuthenticator"} []
[2018-07-25 18:40:41] app.CRITICAL: An exception occurred. {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\UndefinedMethodException(code: 0): Attempted to call an undefined method named \"parseFile\" of class \"Symfony\\Component\\Yaml\\Parser\". at /Applications/MAMP/htdocs/buschner/vendor/symfony/symfony/src/Symfony/Component/Translation/Loader/YamlFileLoader.php:48)"} []

Wenn ich in der Datei: /Applications/MAMP/htdocs/buschner/vendor/symfony/symfony/src/Symfony/Component/Translation/Loader/YamlFileLoader.php die besagte Zeile 48 auskommentiere, dann funktioniert alles wieder.

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Translation\Loader;

use Symfony\Component\Translation\Exception\InvalidResourceException;
use Symfony\Component\Translation\Exception\LogicException;
use Symfony\Component\Yaml\Parser as YamlParser;
use Symfony\Component\Yaml\Exception\ParseException;

/**
 * YamlFileLoader loads translations from Yaml files.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 */
class YamlFileLoader extends FileLoader
{
    private $yamlParser;

    /**
     * {@inheritdoc}
     */
    protected function loadResource($resource)
    {
        if (null === $this->yamlParser) {
            if (!class_exists('Symfony\Component\Yaml\Parser')) {
                throw new LogicException('Loading translations from the YAML format requires the Symfony Yaml component.');
            }

            $this->yamlParser = new YamlParser();
        }

        $prevErrorHandler = set_error_handler(function ($level, $message, $script, $line) use ($resource, &$prevErrorHandler) {
            $message = E_USER_DEPRECATED === $level ? preg_replace('/ on line \d+/', ' in "'.$resource.'"$0', $message) : $message;

            return $prevErrorHandler ? $prevErrorHandler($level, $message, $script, $line) : false;
        });

        try {
            #$messages = $this->yamlParser->parseFile($resource); <!---------------- hier
        } catch (ParseException $e) {
            throw new InvalidResourceException(sprintf('Error parsing YAML, invalid file "%s"', $resource), 0, $e);
        } finally {
            restore_error_handler();
        }

        return $messages;
    }
}

Mehr Infos unter: https://community.contao.org/de/showthread.php?71445-Attempted-to-call-an-undefined-method-named-quot-parseFile-quot&p=478443#post478443

ausi commented 6 years ago

Im Forum ist angegeben, dass symfony/symfony in Version 3.4.12 installiert ist. Bitte vergleiche deine lokale Datei /Applications/MAMP/htdocs/buschner/vendor/symfony/symfony/src/Symfony/Component/Yaml/Parser.php mit folgender: https://github.com/symfony/symfony/blob/v3.4.12/src/Symfony/Component/Yaml/Parser.php. Im speziellen die Zeile 64.

akroii commented 6 years ago

Habe beide Datein miteinander verglichen, sind beide 100% identisch.

ausi commented 6 years ago

Wenn die beiden Dateien identisch sind bedeutet das, dass die Klasse Symfony\Component\Yaml\Parser aus einer anderen Datei geladen wird.

Existiert eventuell die Datei app/bootstrap.php.cache oder var/bootstrap.php.cache in deiner Installation?

akroii commented 6 years ago

Nein, eine solche Datei existiert nicht.

cboelter commented 6 years ago

Ich stolpere in einer Installation auch öfter über diese Meldung. Meistens nach einem Composer-Update. Wenn ich dann den Cache noch einmal per rm -rf /var/cache/* leere geht es wieder. Die Parser.php ist bei mir ebenfalls identisch mit der von Github. Auch die beiden bootstrap.php.cache Dateien existieren nicht.

akroii commented 6 years ago

Wenn ich versuche lokal in den app_dev.php-Modus zu gelangen erscheint folgende Meldung: bildschirmfoto 2018-08-24 um 08 35 45

Wenn ich mit der Maus darüber gehe erscheint: /Applications/MAMP/htdocs/xxxx/vendor/contao/manager-plugin/src/Bundle/Parser/DelegatingParser.php line 22

Die oben erwähnte Änderung in der Datei YamlFileLoader.php auf der Zeile 48 habe ich die Kommentierung wieder entfernt.

UPDATE: Hatte versehentlich die PHP Version auf 5.6 eingestellt.

fritzmg commented 6 years ago

Check with composer show contao/manager-plugin which version is installed. It appears you are only using PHP 5.6, yet the contao/manager-plugin is installed in version 2.3.x or higher, which is not compatible with PHP 5.6. Make sure you are using the correct PHP version for your webspace during composer operations - or define the correct PHP version of your webspace in your composer.json.

akroii commented 6 years ago

Ich habe noch nicht erwähnt, dass die Seite bei Strato liegt.

aschempp commented 6 years ago

UPDATE: Hatte versehentlich die PHP Version auf 5.6 eingestellt.

Dann bitte das Ticket schliessen.

akroii commented 6 years ago

Nein, das Problem besteht weiterhin. Die obere Nachricht im app_dev-Modus war nicht ganz glücklich gesetzt.

ausi commented 6 years ago

Kannst du in deiner Installation bitte nach allen Dateien suchen die sowohl
namespace Symfony\Component\Yaml; als auch class Parser enthalten?

Bekommst du nach wie vor die Fehlermeldung Attempted to call an undefined method named "parseFile"… beim Backend-Login?

akroii commented 6 years ago

namespace Symfony\Component\Yaml; bildschirmfoto 2018-09-04 um 08 03 16

class Parser bildschirmfoto 2018-09-04 um 08 02 29

Ja, der Fehler tritt weiterhin auf. Meistens tritt dieser Fehler auf wenn ich das Contao-Backend-Root /contao aufrufe. Wenn ich dagegen/contao/main.php?do=isotope aufrufe geht es wieder. Klicke ich aber auf das Contao Logo im Backend (links oben), erscheint der Fehler.

akroii commented 6 years ago
Meine Composer.lock: ``` { "_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": "e439fbb32ca6d02d5e248e102e9c5aed", "packages": [ { "name": "clue/stream-filter", "version": "v1.4.0", "source": { "type": "git", "url": "https://github.com/clue/php-stream-filter.git", "reference": "d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0", "reference": "d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0", "shasum": "" }, "require": { "php": ">=5.3" }, "require-dev": { "phpunit/phpunit": "^5.0 || ^4.8" }, "type": "library", "autoload": { "psr-4": { "Clue\\StreamFilter\\": "src/" }, "files": [ "src/functions.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Christian Lück", "email": "christian@lueck.tv" } ], "description": "A simple and modern approach to stream filtering in PHP", "homepage": "https://github.com/clue/php-stream-filter", "keywords": [ "bucket brigade", "callback", "filter", "php_user_filter", "stream", "stream_filter_append", "stream_filter_register" ], "time": "2017-08-18T09:54:01+00:00" }, { "name": "codefog/contao-haste", "version": "4.20.2", "source": { "type": "git", "url": "https://github.com/codefog/contao-haste.git", "reference": "c522f4af6f5b20c97dd6238abc4a069dc22dd6e8" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/codefog/contao-haste/zipball/c522f4af6f5b20c97dd6238abc4a069dc22dd6e8", "reference": "c522f4af6f5b20c97dd6238abc4a069dc22dd6e8", "shasum": "" }, "require": { "contao-community-alliance/composer-plugin": "~2.4 || ~3.0", "contao/core-bundle": "^3.5.1 || ~4.1", "php": "~5.4 || ~7.0" }, "replace": { "contao-legacy/haste": "self.version" }, "require-dev": { "phpunit/phpunit": "4.8.*", "terminal42/contao-namespace-class-loader": "~1.0" }, "suggest": { "phpoffice/phpexcel": "Required for the Haste\\IO\\ExcelFileWriter component." }, "type": "contao-module", "extra": { "contao": { "sources": { "": "system/modules/haste" }, "runonce": [ "system/modules/haste/config/upgrade.php" ] } }, "autoload": { "psr-0": { "Haste\\": [ "library/" ] } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Codefog", "homepage": "http://codefog.pl" }, { "name": "terminal42 gmbh", "homepage": "https://www.terminal42.ch" } ], "description": "haste extension for Contao Open Source CMS", "keywords": [ "contao", "haste" ], "time": "2018-08-03T12:11:33+00:00" }, { "name": "composer/ca-bundle", "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", "reference": "46afded9720f40b9dc63542af4e3e43a1177acb0" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/composer/ca-bundle/zipball/46afded9720f40b9dc63542af4e3e43a1177acb0", "reference": "46afded9720f40b9dc63542af4e3e43a1177acb0", "shasum": "" }, "require": { "ext-openssl": "*", "ext-pcre": "*", "php": "^5.3.2 || ^7.0" }, "require-dev": { "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5", "psr/log": "^1.0", "symfony/process": "^2.5 || ^3.0 || ^4.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { "Composer\\CaBundle\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Jordi Boggiano", "email": "j.boggiano@seld.be", "homepage": "http://seld.be" } ], "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", "keywords": [ "cabundle", "cacert", "certificate", "ssl", "tls" ], "time": "2018-08-08T08:57:40+00:00" }, { "name": "contao-community-alliance/composer-plugin", "version": "3.0.9", "source": { "type": "git", "url": "https://github.com/contao-community-alliance/composer-plugin.git", "reference": "2686fb2299fa4fcde1d3a54ec10cd497661d8536" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-community-alliance/composer-plugin/zipball/2686fb2299fa4fcde1d3a54ec10cd497661d8536", "reference": "2686fb2299fa4fcde1d3a54ec10cd497661d8536", "shasum": "" }, "require": { "composer-plugin-api": "^1.0", "php": "^5.4 || ^7.0", "symfony/finder": "^2.7 || ^3.0 || ^4.0", "symfony/process": "^2.7 || ^3.0 || ^4.0" }, "conflict": { "contao/core": "*", "contao/core-bundle": "<4.1" }, "require-dev": { "composer/composer": "~1.0", "phpcq/all-tasks": "~1.1", "symfony/phpunit-bridge": "^3.0" }, "type": "composer-plugin", "extra": { "class": "ContaoCommunityAlliance\\Composer\\Plugin\\Plugin", "branch-alias": { "dev-master": "3.0.x-dev", "dev-develop": "3.1.x-dev" } }, "autoload": { "psr-4": { "ContaoCommunityAlliance\\Composer\\Plugin\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0+" ], "description": "Composer plugin that provides installers for contao-module and legacy-contao-module.", "homepage": "http://c-c-a.org/", "time": "2018-07-22T21:42:30+00:00" }, { "name": "contao-components/ace", "version": "1.3.3", "source": { "type": "git", "url": "https://github.com/contao-components/ace.git", "reference": "7e2a5a048bc8dd227ae311b3eb5554ef7ed8990e" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/ace/zipball/7e2a5a048bc8dd227ae311b3eb5554ef7ed8990e", "reference": "7e2a5a048bc8dd227ae311b3eb5554ef7ed8990e", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "ACE code editor integration for Contao Open Source CMS", "time": "2018-07-05T07:15:11+00:00" }, { "name": "contao-components/chosen", "version": "1.1.11", "source": { "type": "git", "url": "https://github.com/contao-components/chosen.git", "reference": "72b379054075d94a17bd03593a11d4e0942c0cc0" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/chosen/zipball/72b379054075d94a17bd03593a11d4e0942c0cc0", "reference": "72b379054075d94a17bd03593a11d4e0942c0cc0", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Chosen integration for Contao Open Source CMS", "time": "2018-08-13T07:04:48+00:00" }, { "name": "contao-components/colorbox", "version": "1.6.4.1", "source": { "type": "git", "url": "https://github.com/contao-components/colorbox.git", "reference": "99774cbad832fa78e5a1073fe8ba1ef07954125f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/colorbox/zipball/99774cbad832fa78e5a1073fe8ba1ef07954125f", "reference": "99774cbad832fa78e5a1073fe8ba1ef07954125f", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Colorbox integration for Contao Open Source CMS", "time": "2017-09-26T07:24:43+00:00" }, { "name": "contao-components/colorpicker", "version": "1.4.0.2", "source": { "type": "git", "url": "https://github.com/contao-components/colorpicker.git", "reference": "1e9c9312b0ab220bdd08b0a9317be73c0bc47127" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/colorpicker/zipball/1e9c9312b0ab220bdd08b0a9317be73c0bc47127", "reference": "1e9c9312b0ab220bdd08b0a9317be73c0bc47127", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Color picker integration for Contao Open Source CMS", "time": "2017-09-26T07:27:20+00:00" }, { "name": "contao-components/compass", "version": "0.12.2.1", "source": { "type": "git", "url": "https://github.com/contao-components/compass.git", "reference": "57f0d49607922a71b78101728cf03a5bde287a28" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/compass/zipball/57f0d49607922a71b78101728cf03a5bde287a28", "reference": "57f0d49607922a71b78101728cf03a5bde287a28", "shasum": "" }, "type": "library", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Compass integration for Contao Open Source CMS", "time": "2016-07-07T11:45:34+00:00" }, { "name": "contao-components/contao", "version": "7.1.5", "source": { "type": "git", "url": "https://github.com/contao-components/contao.git", "reference": "13b71489b62b63c5dd72d1e10d821aed551b0558" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/contao/zipball/13b71489b62b63c5dd72d1e10d821aed551b0558", "reference": "13b71489b62b63c5dd72d1e10d821aed551b0558", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Contao Open Source CMS components", "time": "2018-02-27T21:13:23+00:00" }, { "name": "contao-components/datepicker", "version": "2.2.0.5", "source": { "type": "git", "url": "https://github.com/contao-components/datepicker.git", "reference": "324536c9fa13334390c3b8192428b3480de19075" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/datepicker/zipball/324536c9fa13334390c3b8192428b3480de19075", "reference": "324536c9fa13334390c3b8192428b3480de19075", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Date picker integration for Contao Open Source CMS", "time": "2018-08-13T07:05:49+00:00" }, { "name": "contao-components/dropzone", "version": "4.3.0", "source": { "type": "git", "url": "https://github.com/contao-components/dropzone.git", "reference": "5d198fb01f58fd79ff1bd7f5b187060393f8c505" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/dropzone/zipball/5d198fb01f58fd79ff1bd7f5b187060393f8c505", "reference": "5d198fb01f58fd79ff1bd7f5b187060393f8c505", "shasum": "" }, "require": { "contao-components/installer": "~1.0" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "DropZone integration for Contao Open Source CMS", "time": "2017-01-09T20:15:57+00:00" }, { "name": "contao-components/highlight", "version": "8.9.1", "source": { "type": "git", "url": "https://github.com/contao-components/highlight.git", "reference": "92851aa223c597bfa15ebb170877af92d7243293" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/highlight/zipball/92851aa223c597bfa15ebb170877af92d7243293", "reference": "92851aa223c597bfa15ebb170877af92d7243293", "shasum": "" }, "require": { "contao-components/installer": "~1.0" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Highlight.js integration for Contao Open Source CMS", "time": "2015-11-10T13:11:20+00:00" }, { "name": "contao-components/html5shiv", "version": "3.7.3", "source": { "type": "git", "url": "https://github.com/contao-components/html5shiv.git", "reference": "15fa06ddc9bc47a09f0c31bb93e26b789c3b43ea" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/html5shiv/zipball/15fa06ddc9bc47a09f0c31bb93e26b789c3b43ea", "reference": "15fa06ddc9bc47a09f0c31bb93e26b789c3b43ea", "shasum": "" }, "require": { "contao-components/installer": "~1.0" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "HTML5 Shiv integration for Contao Open Source CMS", "time": "2015-11-10T10:48:13+00:00" }, { "name": "contao-components/installer", "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/contao-components/installer.git", "reference": "15c6855b34b5142955096dda6118676e38ca82ab" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/installer/zipball/15c6855b34b5142955096dda6118676e38ca82ab", "reference": "15c6855b34b5142955096dda6118676e38ca82ab", "shasum": "" }, "require": { "composer-plugin-api": "^1.0", "php": "^5.6 || ^7.0" }, "require-dev": { "composer/composer": "^1.0", "friendsofphp/php-cs-fixer": "^2.12", "php-coveralls/php-coveralls": "^2.1", "phpunit/phpunit": "^5.7.26" }, "type": "composer-plugin", "extra": { "class": "Contao\\ComponentsInstaller\\Composer\\Plugin" }, "autoload": { "psr-4": { "Contao\\ComponentsInstaller\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Contao components installer", "time": "2018-07-23T12:19:38+00:00" }, { "name": "contao-components/jquery", "version": "1.12.4", "source": { "type": "git", "url": "https://github.com/contao-components/jquery.git", "reference": "59c19392c1544945f90bb360a1b83abacae87a52" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/jquery/zipball/59c19392c1544945f90bb360a1b83abacae87a52", "reference": "59c19392c1544945f90bb360a1b83abacae87a52", "shasum": "" }, "require": { "contao-components/installer": "~1.0" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "jQuery integration for Contao Open Source CMS", "time": "2016-09-06T09:45:28+00:00" }, { "name": "contao-components/jquery-ui", "version": "1.12.1.1", "source": { "type": "git", "url": "https://github.com/contao-components/jquery-ui.git", "reference": "1fabbe27469a6b44130c1ad38bd1aa0a2a3720a1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/jquery-ui/zipball/1fabbe27469a6b44130c1ad38bd1aa0a2a3720a1", "reference": "1fabbe27469a6b44130c1ad38bd1aa0a2a3720a1", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "jQuery UI integration for Contao Open Source CMS", "time": "2017-09-26T08:11:43+00:00" }, { "name": "contao-components/mediabox", "version": "1.5.4.2", "source": { "type": "git", "url": "https://github.com/contao-components/mediabox.git", "reference": "728cedff60ed8918f31d5a807b33dedfe8f4b880" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/mediabox/zipball/728cedff60ed8918f31d5a807b33dedfe8f4b880", "reference": "728cedff60ed8918f31d5a807b33dedfe8f4b880", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Mediabox integration for Contao Open Source CMS", "time": "2017-09-26T08:25:02+00:00" }, { "name": "contao-components/mediaelement", "version": "4.2.9", "source": { "type": "git", "url": "https://github.com/contao-components/mediaelement.git", "reference": "cfe2b1d8e71d58d72c9c0f6130e75a0d0e827cfc" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/mediaelement/zipball/cfe2b1d8e71d58d72c9c0f6130e75a0d0e827cfc", "reference": "cfe2b1d8e71d58d72c9c0f6130e75a0d0e827cfc", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "MediaElement.js integration for Contao Open Source CMS", "time": "2018-07-05T08:38:55+00:00" }, { "name": "contao-components/mootools", "version": "1.6.0.5", "source": { "type": "git", "url": "https://github.com/contao-components/mootools.git", "reference": "69eb2a66c4da52de4e7fe3a852181ce53e46a046" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/mootools/zipball/69eb2a66c4da52de4e7fe3a852181ce53e46a046", "reference": "69eb2a66c4da52de4e7fe3a852181ce53e46a046", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "MooTools integration for Contao Open Source CMS", "time": "2017-09-26T09:02:35+00:00" }, { "name": "contao-components/respimage", "version": "1.4.2", "source": { "type": "git", "url": "https://github.com/contao-components/respimage.git", "reference": "c8e20216d7e958447b17429d631341dfdd0ebed9" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/respimage/zipball/c8e20216d7e958447b17429d631341dfdd0ebed9", "reference": "c8e20216d7e958447b17429d631341dfdd0ebed9", "shasum": "" }, "require": { "contao-components/installer": "~1.0" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Respimage.js integration for Contao Open Source CMS", "time": "2015-11-10T10:49:03+00:00" }, { "name": "contao-components/simplemodal", "version": "2.0.8", "source": { "type": "git", "url": "https://github.com/contao-components/simplemodal.git", "reference": "679b1cb319860ef765309bfc6d88da6216bceb87" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/simplemodal/zipball/679b1cb319860ef765309bfc6d88da6216bceb87", "reference": "679b1cb319860ef765309bfc6d88da6216bceb87", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "SimpleModal integration for Contao Open Source CMS", "time": "2018-02-20T21:00:03+00:00" }, { "name": "contao-components/swipe", "version": "2.0.6.2", "source": { "type": "git", "url": "https://github.com/contao-components/swipe.git", "reference": "1a91e58373929ff15387b5307c07cd7a5b8d33b8" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/swipe/zipball/1a91e58373929ff15387b5307c07cd7a5b8d33b8", "reference": "1a91e58373929ff15387b5307c07cd7a5b8d33b8", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "A JavaScript touch slider with dot menu", "time": "2017-09-26T09:07:16+00:00" }, { "name": "contao-components/tablesort", "version": "3.4.11", "source": { "type": "git", "url": "https://github.com/contao-components/tablesort.git", "reference": "b4e2ebed2277c80a8f3aedd291e69b1ee877d6b2" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/tablesort/zipball/b4e2ebed2277c80a8f3aedd291e69b1ee877d6b2", "reference": "b4e2ebed2277c80a8f3aedd291e69b1ee877d6b2", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Contao Open Source CMS tablesort", "time": "2018-08-13T07:06:20+00:00" }, { "name": "contao-components/tablesorter", "version": "2.0.5.7", "source": { "type": "git", "url": "https://github.com/contao-components/tablesorter.git", "reference": "b011a12758381caa6c405b7fc90c379b446197f8" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/tablesorter/zipball/b011a12758381caa6c405b7fc90c379b446197f8", "reference": "b011a12758381caa6c405b7fc90c379b446197f8", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "jQuery tablesorter integration for Contao Open Source CMS", "time": "2018-08-13T07:06:27+00:00" }, { "name": "contao-components/tinymce4", "version": "4.6.7.2", "source": { "type": "git", "url": "https://github.com/contao-components/tinymce4.git", "reference": "40933994137ae78f88f4f3c336bb80fa81f33d7d" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao-components/tinymce4/zipball/40933994137ae78f88f4f3c336bb80fa81f33d7d", "reference": "40933994137ae78f88f4f3c336bb80fa81f33d7d", "shasum": "" }, "require": { "contao-components/installer": "^1.0.9" }, "type": "contao-component", "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1+" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "TinyMCE 4 integration for Contao Open Source CMS", "time": "2017-10-07T19:55:54+00:00" }, { "name": "contao/calendar-bundle", "version": "4.4.23", "source": { "type": "git", "url": "https://github.com/contao/calendar-bundle.git", "reference": "3edd6b25fb22b4a2146c335395b6d5d1bab0f40f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/calendar-bundle/zipball/3edd6b25fb22b4a2146c335395b6d5d1bab0f40f", "reference": "3edd6b25fb22b4a2146c335395b6d5d1bab0f40f", "shasum": "" }, "require": { "contao/core-bundle": "self.version", "php": "^5.6 || ^7.0", "symfony/framework-bundle": "^3.3" }, "conflict": { "contao/core": "*", "contao/manager-plugin": "<2.0 || >=3.0" }, "require-dev": { "contao/manager-plugin": "^2.0", "doctrine/doctrine-cache-bundle": "^1.3", "php-coveralls/php-coveralls": "^2.1", "php-http/guzzle6-adapter": "^1.1", "php-http/message-factory": "^1.0.2", "phpunit/phpunit": "^5.7.26", "symfony/phpunit-bridge": "^3.3.11" }, "type": "contao-bundle", "extra": { "branch-alias": { "dev-4.4": "4.4.x-dev" }, "contao-manager-plugin": "Contao\\CalendarBundle\\ContaoManager\\Plugin" }, "autoload": { "psr-4": { "Contao\\CalendarBundle\\": "src/" }, "classmap": [ "src/Resources/contao/" ], "exclude-from-classmap": [ "src/Resources/contao/config/", "src/Resources/contao/dca/", "src/Resources/contao/languages/", "src/Resources/contao/templates/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Adds calendar functionality to Contao 4", "time": "2018-08-27T13:36:23+00:00" }, { "name": "contao/comments-bundle", "version": "4.4.23", "source": { "type": "git", "url": "https://github.com/contao/comments-bundle.git", "reference": "7753dd96e816143b45a84a1e79f06d3ca7d81282" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/comments-bundle/zipball/7753dd96e816143b45a84a1e79f06d3ca7d81282", "reference": "7753dd96e816143b45a84a1e79f06d3ca7d81282", "shasum": "" }, "require": { "contao/core-bundle": "self.version", "php": "^5.6 || ^7.0", "symfony/framework-bundle": "^3.3" }, "conflict": { "contao/core": "*", "contao/manager-plugin": "<2.0 || >=3.0" }, "require-dev": { "contao/manager-plugin": "^2.0" }, "type": "contao-bundle", "extra": { "branch-alias": { "dev-4.4": "4.4.x-dev" }, "contao-manager-plugin": "Contao\\CommentsBundle\\ContaoManager\\Plugin" }, "autoload": { "psr-4": { "Contao\\CommentsBundle\\": "src/" }, "classmap": [ "src/Resources/contao/" ], "exclude-from-classmap": [ "src/Resources/contao/config/", "src/Resources/contao/dca/", "src/Resources/contao/languages/", "src/Resources/contao/templates/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Adds comments functionality to Contao 4", "time": "2018-08-19T18:55:21+00:00" }, { "name": "contao/core-bundle", "version": "4.4.23", "source": { "type": "git", "url": "https://github.com/contao/core-bundle.git", "reference": "9ab278a971fc8ca665f40f3d0c32c86571a80d01" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/core-bundle/zipball/9ab278a971fc8ca665f40f3d0c32c86571a80d01", "reference": "9ab278a971fc8ca665f40f3d0c32c86571a80d01", "shasum": "" }, "require": { "contao-components/ace": "^1.2", "contao-components/chosen": "^1.1.6", "contao-components/colorbox": "^1.6", "contao-components/colorpicker": "^1.4.0.1", "contao-components/compass": "^0.12", "contao-components/contao": "^7.1.4", "contao-components/datepicker": "^2.2.0.2", "contao-components/dropzone": "^4.1.1", "contao-components/highlight": "^8.9", "contao-components/html5shiv": "^3.7.3", "contao-components/jquery": "^1.11.3", "contao-components/jquery-ui": "^1.11.4", "contao-components/mediabox": "^1.5", "contao-components/mediaelement": "^4.1", "contao-components/mootools": "^1.6.0.1", "contao-components/respimage": "^1.4", "contao-components/simplemodal": "^2.0.3", "contao-components/swipe": "^2.0.3", "contao-components/tablesort": "^3.4.5", "contao-components/tablesorter": "^2.0.5.3", "contao-components/tinymce4": "4.6.*", "contao/image": "^0.3.1", "contao/imagine-svg": "^0.1.2 || ^0.2", "doctrine/dbal": "^2.5", "doctrine/doctrine-bundle": "^1.6", "doctrine/doctrine-cache-bundle": "^1.3", "ext-dom": "*", "ext-gd": "*", "ext-pcre": "*", "imagine/imagine": "^0.6 || ^0.7", "knplabs/knp-menu-bundle": "^2.1", "knplabs/knp-time-bundle": "^1.5.2", "leafo/scssphp": "^0.6", "league/uri": "^4.0", "matthiasmullie/minify": "^1.3", "michelf/php-markdown": "^1.4", "nelmio/cors-bundle": "^1.5.3", "oyejorge/less.php": "^1.7", "patchwork/utf8": "^1.2", "php": "^5.6 || ^7.0", "phpspec/php-diff": "^1.0", "phpunit/php-token-stream": "^1.4", "psr/log": "^1.0", "sensio/framework-extra-bundle": "^3.0.2", "simplepie/simplepie": "^1.3", "symfony/console": "^3.3.7", "symfony/filesystem": "^3.3", "symfony/finder": "^3.3", "symfony/framework-bundle": "^3.3", "symfony/http-foundation": "^3.3.5", "symfony/security": "^3.3", "symfony/swiftmailer-bundle": "^2.3", "symfony/yaml": "^3.3", "tecnickcom/tcpdf": "^6.0", "terminal42/header-replay-bundle": "^1.2", "true/punycode": "^2.1", "twig/twig": "^1.26", "webmozart/path-util": "^2.0" }, "conflict": { "contao-community-alliance/composer-plugin": "<3.0", "contao/core": "*", "contao/manager-plugin": "<2.0 || >=3.0", "doctrine/doctrine-migrations-bundle": "<1.1", "doctrine/orm": "<2.4", "lexik/maintenance-bundle": "2.1.4", "symfony/finder": "3.4.7", "symfony/security": "3.3.17 || 3.4.7 || 3.4.8 || 3.4.11", "symfony/swiftmailer-bundle": "2.6.* <2.6.2" }, "require-dev": { "composer/composer": "^1.0", "contao/manager-plugin": "^2.2", "doctrine/doctrine-migrations-bundle": "^1.1", "doctrine/orm": "^2.5", "ext-fileinfo": "*", "lexik/maintenance-bundle": "^2.1.3", "monolog/monolog": "^1.22", "php-coveralls/php-coveralls": "^2.1", "php-http/guzzle6-adapter": "^1.1", "php-http/message-factory": "^1.0.2", "phpunit/phpunit": "^5.7.26", "symfony/phpunit-bridge": "^3.3.11" }, "suggest": { "lexik/maintenance-bundle": "To put the application into maintenance mode" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-4.4": "4.4.x-dev" }, "contao-manager-plugin": "Contao\\CoreBundle\\ContaoManager\\Plugin" }, "autoload": { "psr-4": { "Contao\\CoreBundle\\": "src/" }, "classmap": [ "src/Resources/contao/" ], "files": [ "src/Resources/functions/utf8_bootup.php" ], "exclude-from-classmap": [ "src/Resources/contao/config/", "src/Resources/contao/dca/", "src/Resources/contao/helper/", "src/Resources/contao/languages/", "src/Resources/contao/templates/", "src/Resources/contao/themes/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Contao 4 core bundle", "time": "2018-08-28T15:37:25+00:00" }, { "name": "contao/faq-bundle", "version": "4.4.23", "source": { "type": "git", "url": "https://github.com/contao/faq-bundle.git", "reference": "9320e50244eb0a1fd0e7827e53ac70f043999163" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/faq-bundle/zipball/9320e50244eb0a1fd0e7827e53ac70f043999163", "reference": "9320e50244eb0a1fd0e7827e53ac70f043999163", "shasum": "" }, "require": { "contao/core-bundle": "self.version", "php": "^5.6 || ^7.0", "symfony/framework-bundle": "^3.3" }, "conflict": { "contao/core": "*", "contao/manager-plugin": "<2.0 || >=3.0" }, "require-dev": { "contao/manager-plugin": "^2.0", "doctrine/doctrine-cache-bundle": "^1.3", "php-coveralls/php-coveralls": "^2.1", "php-http/guzzle6-adapter": "^1.1", "php-http/message-factory": "^1.0.2", "phpunit/phpunit": "^5.7.26", "symfony/phpunit-bridge": "^3.3.11" }, "type": "contao-bundle", "extra": { "branch-alias": { "dev-4.4": "4.4.x-dev" }, "contao-manager-plugin": "Contao\\FaqBundle\\ContaoManager\\Plugin" }, "autoload": { "psr-4": { "Contao\\FaqBundle\\": "src/" }, "classmap": [ "src/Resources/contao/" ], "exclude-from-classmap": [ "src/Resources/contao/config/", "src/Resources/contao/dca/", "src/Resources/contao/languages/", "src/Resources/contao/templates/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Adds FAQ functionality to Contao 4", "time": "2018-08-27T09:04:43+00:00" }, { "name": "contao/image", "version": "0.3.7", "source": { "type": "git", "url": "https://github.com/contao/image.git", "reference": "dc9e2dc78533c6da1d7d0cf010b0b89b2b5ffd06" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/image/zipball/dc9e2dc78533c6da1d7d0cf010b0b89b2b5ffd06", "reference": "dc9e2dc78533c6da1d7d0cf010b0b89b2b5ffd06", "shasum": "" }, "require": { "contao/imagine-svg": "^0.1.4 || ^0.2", "imagine/imagine": "^0.6 || ^0.7", "php": "^5.6 || ^7.0", "symfony/filesystem": "^2.8 || ^3.0 || ^4.0", "webmozart/path-util": "^2.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.12", "php-coveralls/php-coveralls": "^2.1", "phpunit/phpunit": "^5.7.26" }, "type": "library", "extra": { "branch-alias": { "dev-develop": "0.4.x-dev" } }, "autoload": { "psr-4": { "Contao\\Image\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Martin Auswöger", "homepage": "https://github.com/ausi" } ], "description": "Contao image library", "time": "2018-06-14T13:28:52+00:00" }, { "name": "contao/imagine-svg", "version": "0.2.1", "source": { "type": "git", "url": "https://github.com/contao/imagine-svg.git", "reference": "7e8c9f47604aed87cede9bdf3502d38d07f8479f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/imagine-svg/zipball/7e8c9f47604aed87cede9bdf3502d38d07f8479f", "reference": "7e8c9f47604aed87cede9bdf3502d38d07f8479f", "shasum": "" }, "require": { "ext-dom": "*", "imagine/imagine": "^0.6|^0.7", "php": "^5.6|^7.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.6", "phpunit/phpunit": "^5.7.26", "satooshi/php-coveralls": "^0.6", "symfony/filesystem": "^2.8|^3.0|^4.0" }, "type": "library", "extra": { "branch-alias": { "dev-develop": "0.2.x-dev" } }, "autoload": { "psr-4": { "Contao\\ImagineSvg\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Martin Auswöger", "homepage": "https://github.com/ausi" } ], "description": "Contao Imagine SVG library", "time": "2018-03-02T08:55:49+00:00" }, { "name": "contao/installation-bundle", "version": "4.4.23", "source": { "type": "git", "url": "https://github.com/contao/installation-bundle.git", "reference": "0f7f628632897feefadf4a968cbfc66c31360641" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/installation-bundle/zipball/0f7f628632897feefadf4a968cbfc66c31360641", "reference": "0f7f628632897feefadf4a968cbfc66c31360641", "shasum": "" }, "require": { "contao/core-bundle": "self.version", "php": "^5.6 || ^7.0", "sensio/distribution-bundle": "^5.0", "sensiolabs/ansi-to-html": "^1.1", "symfony/filesystem": "^3.3", "symfony/framework-bundle": "^3.3" }, "conflict": { "contao/core": "*", "contao/manager-plugin": "<2.0 || >=3.0" }, "require-dev": { "contao/manager-plugin": "^2.0", "doctrine/doctrine-cache-bundle": "^1.3", "php-coveralls/php-coveralls": "^2.1", "php-http/guzzle6-adapter": "^1.1", "php-http/message-factory": "^1.0.2", "phpunit/phpunit": "^5.7.26", "symfony/phpunit-bridge": "^3.3.11" }, "type": "contao-bundle", "extra": { "branch-alias": { "dev-4.4": "4.4.x-dev" }, "contao-manager-plugin": "Contao\\InstallationBundle\\ContaoManager\\Plugin" }, "autoload": { "psr-4": { "Contao\\InstallationBundle\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Required to install and update Contao 4", "time": "2018-08-27T13:36:23+00:00" }, { "name": "contao/listing-bundle", "version": "4.4.23", "source": { "type": "git", "url": "https://github.com/contao/listing-bundle.git", "reference": "7528334462c50b1f302f4b1d113aef3de1b59f7b" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/listing-bundle/zipball/7528334462c50b1f302f4b1d113aef3de1b59f7b", "reference": "7528334462c50b1f302f4b1d113aef3de1b59f7b", "shasum": "" }, "require": { "contao/core-bundle": "self.version", "php": "^5.6 || ^7.0", "symfony/framework-bundle": "^3.3" }, "conflict": { "contao/core": "*", "contao/manager-plugin": "<2.0 || >=3.0" }, "require-dev": { "contao/manager-plugin": "^2.0" }, "type": "contao-bundle", "extra": { "branch-alias": { "dev-4.4": "4.4.x-dev" }, "contao-manager-plugin": "Contao\\ListingBundle\\ContaoManager\\Plugin" }, "autoload": { "psr-4": { "Contao\\ListingBundle\\": "src/" }, "classmap": [ "src/Resources/contao/" ], "exclude-from-classmap": [ "src/Resources/contao/config/", "src/Resources/contao/dca/", "src/Resources/contao/languages/", "src/Resources/contao/templates/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Allows to list arbitrary data in the Contao 4 front end", "time": "2018-08-19T18:55:21+00:00" }, { "name": "contao/manager-bundle", "version": "4.4.23", "source": { "type": "git", "url": "https://github.com/contao/manager-bundle.git", "reference": "3ba7e71d18e023f3b34367425fa6e5cc7034b2e4" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/manager-bundle/zipball/3ba7e71d18e023f3b34367425fa6e5cc7034b2e4", "reference": "3ba7e71d18e023f3b34367425fa6e5cc7034b2e4", "shasum": "" }, "require": { "contao/core-bundle": "self.version", "contao/installation-bundle": "self.version", "contao/manager-plugin": "^2.1", "doctrine/doctrine-bundle": "^1.6", "friendsofsymfony/http-cache": "^2.0", "lexik/maintenance-bundle": "^2.1.3", "nelmio/security-bundle": "^2.2", "php": "^5.6 || ^7.0", "php-http/guzzle6-adapter": "^1.1", "sensio/framework-extra-bundle": "^3.0.2", "symfony/monolog-bundle": "^2.8 || ^3.0", "symfony/swiftmailer-bundle": "^2.3", "symfony/symfony": "^3.3.7", "terminal42/header-replay-bundle": "^1.4.2" }, "require-dev": { "composer/composer": "^1.0", "php-coveralls/php-coveralls": "^2.1", "php-http/message-factory": "^1.0.2", "phpunit/phpunit": "^5.7.26", "symfony/phpunit-bridge": "^3.3.11" }, "bin": [ "bin/contao-console" ], "type": "symfony-bundle", "extra": { "branch-alias": { "dev-4.4": "4.4.x-dev" }, "contao-manager-plugin": "Contao\\ManagerBundle\\ContaoManager\\Plugin" }, "autoload": { "psr-4": { "Contao\\ManagerBundle\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Andreas Schempp", "homepage": "https://github.com/aschempp" } ], "description": "Contao 4 manager bundle", "time": "2018-08-27T09:04:43+00:00" }, { "name": "contao/manager-plugin", "version": "2.6.2", "source": { "type": "git", "url": "https://github.com/contao/manager-plugin.git", "reference": "ba6da80fc2b7433ebe2e43f137b994906c1d3204" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/manager-plugin/zipball/ba6da80fc2b7433ebe2e43f137b994906c1d3204", "reference": "ba6da80fc2b7433ebe2e43f137b994906c1d3204", "shasum": "" }, "require": { "composer-plugin-api": "^1.1", "php": "^7.1", "symfony/config": "^3.3 || ^4.0", "symfony/dependency-injection": "^3.3 || ^4.0", "symfony/filesystem": "^3.3 || ^4.0", "symfony/http-kernel": "^3.3 || ^4.0", "symfony/routing": "^3.3 || ^4.0" }, "require-dev": { "composer/composer": "^1.1", "contao/core-bundle": "^4.5", "friendsofphp/php-cs-fixer": "^2.12", "php-coveralls/php-coveralls": "^2.1", "php-http/guzzle6-adapter": "^1.1", "phpunit/phpunit": "^6.5", "symfony/phpunit-bridge": "^3.4.5" }, "type": "composer-plugin", "extra": { "branch-alias": { "dev-2.6": "2.6.x-dev" }, "class": "Contao\\ManagerPlugin\\Composer\\Plugin" }, "autoload": { "psr-4": { "Contao\\ManagerPlugin\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Andreas Schempp", "homepage": "https://github.com/aschempp" } ], "description": "Contao 4 manager plugin", "time": "2018-08-18T18:38:48+00:00" }, { "name": "contao/news-bundle", "version": "4.4.23", "source": { "type": "git", "url": "https://github.com/contao/news-bundle.git", "reference": "c2c58b332829c79f212eaa3421293e9f024ec304" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/news-bundle/zipball/c2c58b332829c79f212eaa3421293e9f024ec304", "reference": "c2c58b332829c79f212eaa3421293e9f024ec304", "shasum": "" }, "require": { "contao/core-bundle": "self.version", "php": "^5.6 || ^7.0", "symfony/framework-bundle": "^3.3" }, "conflict": { "contao/core": "*", "contao/manager-plugin": "<2.0 || >=3.0" }, "require-dev": { "contao/manager-plugin": "^2.0", "doctrine/doctrine-cache-bundle": "^1.3", "php-coveralls/php-coveralls": "^2.1", "php-http/guzzle6-adapter": "^1.1", "php-http/message-factory": "^1.0.2", "phpunit/phpunit": "^5.7.26", "symfony/phpunit-bridge": "^3.3.11" }, "type": "contao-bundle", "extra": { "branch-alias": { "dev-4.4": "4.4.x-dev" }, "contao-manager-plugin": "Contao\\NewsBundle\\ContaoManager\\Plugin" }, "autoload": { "psr-4": { "Contao\\NewsBundle\\": "src/" }, "classmap": [ "src/Resources/contao/" ], "exclude-from-classmap": [ "src/Resources/contao/config/", "src/Resources/contao/dca/", "src/Resources/contao/languages/", "src/Resources/contao/templates/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Adds news functionality to Contao 4", "time": "2018-08-27T13:36:23+00:00" }, { "name": "contao/newsletter-bundle", "version": "4.4.23", "source": { "type": "git", "url": "https://github.com/contao/newsletter-bundle.git", "reference": "f5ff66c980f39bf336f68881c77b4bae7d45bb8e" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/contao/newsletter-bundle/zipball/f5ff66c980f39bf336f68881c77b4bae7d45bb8e", "reference": "f5ff66c980f39bf336f68881c77b4bae7d45bb8e", "shasum": "" }, "require": { "contao/core-bundle": "self.version", "php": "^5.6 || ^7.0", "symfony/framework-bundle": "^3.3" }, "conflict": { "contao/core": "*", "contao/manager-plugin": "<2.0 || >=3.0" }, "require-dev": { "contao/manager-plugin": "^2.0" }, "type": "contao-bundle", "extra": { "branch-alias": { "dev-4.4": "4.4.x-dev" }, "contao-manager-plugin": "Contao\\NewsletterBundle\\ContaoManager\\Plugin" }, "autoload": { "psr-4": { "Contao\\NewsletterBundle\\": "src/" }, "classmap": [ "src/Resources/contao/" ], "exclude-from-classmap": [ "src/Resources/contao/config/", "src/Resources/contao/dca/", "src/Resources/contao/languages/", "src/Resources/contao/templates/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Leo Feyer", "homepage": "https://github.com/leofeyer" } ], "description": "Adds newsletter functionality to Contao 4", "time": "2018-08-19T18:55:21+00:00" }, { "name": "derhaeuptling/contao-lazy-images", "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/derhaeuptling/contao-lazy-images.git", "reference": "b0f0219128ca76602d59c6517213e5e37ef34128" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/derhaeuptling/contao-lazy-images/zipball/b0f0219128ca76602d59c6517213e5e37ef34128", "reference": "b0f0219128ca76602d59c6517213e5e37ef34128", "shasum": "" }, "require": { "contao-community-alliance/composer-plugin": "~2.4 || ~3.0", "contao/core-bundle": "~3.5 || ~4.1", "php": ">=5.4.0" }, "type": "contao-module", "extra": { "contao": { "sources": { "": "system/modules/lazy-images" } } }, "autoload": { "psr-0": { "DerHaeuptling\\": [ "system/modules/lazy-images/library/" ] } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0+" ], "authors": [ { "name": "derhaeuptling", "homepage": "https://derhaeuptling.com" }, { "name": "Sebastijan Ribarić", "email": "sebastijan.ribaric@media-8.org", "homepage": "http://mediar-agency.com", "role": "Developer" } ], "description": "Lazy Images delays loading of images in long web pages for Contao Open Source CMS.", "keywords": [ "contao", "images" ], "time": "2018-04-18T21:00:59+00:00" }, { "name": "doctrine/annotations", "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5", "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5", "shasum": "" }, "require": { "doctrine/lexer": "1.*", "php": "^7.1" }, "require-dev": { "doctrine/cache": "1.*", "phpunit/phpunit": "^6.4" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.6.x-dev" } }, "autoload": { "psr-4": { "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" } }, "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": "Docblock Annotations Parser", "homepage": "http://www.doctrine-project.org", "keywords": [ "annotations", "docblock", "parser" ], "time": "2017-12-06T07:11:42+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/collections", "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf", "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf", "shasum": "" }, "require": { "php": "^7.1" }, "require-dev": { "doctrine/coding-standard": "~0.1@dev", "phpunit/phpunit": "^5.7" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.3.x-dev" } }, "autoload": { "psr-0": { "Doctrine\\Common\\Collections\\": "lib/" } }, "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": "Collections Abstraction library", "homepage": "http://www.doctrine-project.org", "keywords": [ "array", "collections", "iterator" ], "time": "2017-07-22T10:37:32+00:00" }, { "name": "doctrine/common", "version": "v2.9.0", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", "reference": "a210246d286c77d2b89040f8691ba7b3a713d2c1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/common/zipball/a210246d286c77d2b89040f8691ba7b3a713d2c1", "reference": "a210246d286c77d2b89040f8691ba7b3a713d2c1", "shasum": "" }, "require": { "doctrine/annotations": "^1.0", "doctrine/cache": "^1.0", "doctrine/collections": "^1.0", "doctrine/event-manager": "^1.0", "doctrine/inflector": "^1.0", "doctrine/lexer": "^1.0", "doctrine/persistence": "^1.0", "doctrine/reflection": "^1.0", "php": "^7.1" }, "require-dev": { "doctrine/coding-standard": "^1.0", "phpunit/phpunit": "^6.3", "squizlabs/php_codesniffer": "^3.0", "symfony/phpunit-bridge": "^4.0.5" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.9.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": "Common Library for Doctrine projects", "homepage": "https://www.doctrine-project.org", "keywords": [ "annotations", "collections", "eventmanager", "persistence", "spl" ], "time": "2018-07-12T21:16:12+00:00" }, { "name": "doctrine/dbal", "version": "v2.8.0", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", "reference": "5140a64c08b4b607b9bedaae0cedd26f04a0e621" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/dbal/zipball/5140a64c08b4b607b9bedaae0cedd26f04a0e621", "reference": "5140a64c08b4b607b9bedaae0cedd26f04a0e621", "shasum": "" }, "require": { "doctrine/cache": "^1.0", "doctrine/event-manager": "^1.0", "ext-pdo": "*", "php": "^7.1" }, "require-dev": { "doctrine/coding-standard": "^4.0", "jetbrains/phpstorm-stubs": "^2018.1.2", "phpstan/phpstan": "^0.10.1", "phpunit/phpunit": "^7.1.2", "phpunit/phpunit-mock-objects": "!=3.2.4,!=3.2.5", "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.8.x-dev", "dev-develop": "3.0.x-dev" } }, "autoload": { "psr-0": { "Doctrine\\DBAL\\": "lib/" } }, "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": "Database Abstraction Layer", "homepage": "http://www.doctrine-project.org", "keywords": [ "database", "dbal", "persistence", "queryobject" ], "time": "2018-07-13T03:16:35+00:00" }, { "name": "doctrine/doctrine-bundle", "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", "reference": "703fad32e4c8cbe609caf45a71a1d4266c830f0f" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/703fad32e4c8cbe609caf45a71a1d4266c830f0f", "reference": "703fad32e4c8cbe609caf45a71a1d4266c830f0f", "shasum": "" }, "require": { "doctrine/dbal": "^2.5.12", "doctrine/doctrine-cache-bundle": "~1.2", "jdorn/sql-formatter": "^1.2.16", "php": "^5.5.9|^7.0", "symfony/console": "~2.7|~3.0|~4.0", "symfony/dependency-injection": "~2.7|~3.0|~4.0", "symfony/doctrine-bridge": "~2.7|~3.0|~4.0", "symfony/framework-bundle": "^2.7.22|~3.0|~4.0" }, "conflict": { "symfony/http-foundation": "<2.6" }, "require-dev": { "doctrine/orm": "~2.4", "phpunit/phpunit": "^4.8.36|^5.7|^6.4", "satooshi/php-coveralls": "^1.0", "symfony/phpunit-bridge": "~2.7|~3.0|~4.0", "symfony/property-info": "~2.8|~3.0|~4.0", "symfony/validator": "~2.7|~3.0|~4.0", "symfony/web-profiler-bundle": "~2.7|~3.0|~4.0", "symfony/yaml": "~2.7|~3.0|~4.0", "twig/twig": "~1.26|~2.0" }, "suggest": { "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.", "symfony/web-profiler-bundle": "To use the data collector." }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "1.8.x-dev" } }, "autoload": { "psr-4": { "Doctrine\\Bundle\\DoctrineBundle\\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Symfony Community", "homepage": "http://symfony.com/contributors" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Doctrine Project", "homepage": "http://www.doctrine-project.org/" }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "Symfony DoctrineBundle", "homepage": "http://www.doctrine-project.org", "keywords": [ "database", "dbal", "orm", "persistence" ], "time": "2018-04-19T14:07:39+00:00" }, { "name": "doctrine/doctrine-cache-bundle", "version": "1.3.3", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineCacheBundle.git", "reference": "4c8e363f96427924e7e519c5b5119b4f54512697" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/4c8e363f96427924e7e519c5b5119b4f54512697", "reference": "4c8e363f96427924e7e519c5b5119b4f54512697", "shasum": "" }, "require": { "doctrine/cache": "^1.4.2", "doctrine/inflector": "~1.0", "php": ">=5.3.2", "symfony/doctrine-bridge": "~2.7|~3.3|~4.0" }, "require-dev": { "instaclick/coding-standard": "~1.1", "instaclick/object-calisthenics-sniffs": "dev-master", "instaclick/symfony2-coding-standard": "dev-remaster", "phpunit/phpunit": "~4|~5", "predis/predis": "~0.8", "satooshi/php-coveralls": "^1.0", "squizlabs/php_codesniffer": "~1.5", "symfony/console": "~2.7|~3.3|~4.0", "symfony/finder": "~2.7|~3.3|~4.0", "symfony/framework-bundle": "~2.7|~3.3|~4.0", "symfony/phpunit-bridge": "~2.7|~3.3|~4.0", "symfony/security-acl": "~2.7|~3.3", "symfony/validator": "~2.7|~3.3|~4.0", "symfony/yaml": "~2.7|~3.3|~4.0" }, "suggest": { "symfony/security-acl": "For using this bundle to cache ACLs" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "1.3.x-dev" } }, "autoload": { "psr-4": { "Doctrine\\Bundle\\DoctrineCacheBundle\\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Symfony Community", "homepage": "http://symfony.com/contributors" }, { "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, { "name": "Fabio B. Silva", "email": "fabio.bat.silva@gmail.com" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@hotmail.com" }, { "name": "Doctrine Project", "homepage": "http://www.doctrine-project.org/" }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "Symfony Bundle for Doctrine Cache", "homepage": "http://www.doctrine-project.org", "keywords": [ "cache", "caching" ], "time": "2018-03-27T09:22:12+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/inflector", "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", "reference": "5527a48b7313d15261292c149e55e26eae771b0a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a", "reference": "5527a48b7313d15261292c149e55e26eae771b0a", "shasum": "" }, "require": { "php": "^7.1" }, "require-dev": { "phpunit/phpunit": "^6.2" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.3.x-dev" } }, "autoload": { "psr-4": { "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" } }, "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": "Common String Manipulations with regard to casing and singular/plural rules.", "homepage": "http://www.doctrine-project.org", "keywords": [ "inflection", "pluralize", "singularize", "string" ], "time": "2018-01-09T20:05:19+00:00" }, { "name": "doctrine/lexer", "version": "v1.0.1", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", "shasum": "" }, "require": { "php": ">=5.3.2" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-0": { "Doctrine\\Common\\Lexer\\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", "homepage": "http://www.doctrine-project.org", "keywords": [ "lexer", "parser" ], "time": "2014-09-09T13:34:57+00:00" }, { "name": "doctrine/persistence", "version": "v1.0.1", "source": { "type": "git", "url": "https://github.com/doctrine/persistence.git", "reference": "af1ec238659a83e320f03e0e454e200f689b4b97" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/persistence/zipball/af1ec238659a83e320f03e0e454e200f689b4b97", "reference": "af1ec238659a83e320f03e0e454e200f689b4b97", "shasum": "" }, "require": { "doctrine/annotations": "^1.0", "doctrine/cache": "^1.0", "doctrine/collections": "^1.0", "doctrine/event-manager": "^1.0", "doctrine/reflection": "^1.0", "php": "^7.1" }, "conflict": { "doctrine/common": "<2.9@dev" }, "require-dev": { "doctrine/coding-standard": "^4.0", "phpstan/phpstan": "^0.8", "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 Persistence abstractions.", "homepage": "https://doctrine-project.org/projects/persistence.html", "keywords": [ "persistence" ], "time": "2018-07-12T12:37:50+00:00" }, { "name": "doctrine/reflection", "version": "v1.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/reflection.git", "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6", "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6", "shasum": "" }, "require": { "doctrine/annotations": "^1.0", "ext-tokenizer": "*", "php": "^7.1" }, "require-dev": { "doctrine/coding-standard": "^4.0", "doctrine/common": "^2.8", "phpstan/phpstan": "^0.9.2", "phpstan/phpstan-phpunit": "^0.9.4", "phpunit/phpunit": "^7.0", "squizlabs/php_codesniffer": "^3.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 Reflection component", "homepage": "https://www.doctrine-project.org/projects/reflection.html", "keywords": [ "reflection" ], "time": "2018-06-14T14:45:07+00:00" }, { "name": "fig/link-util", "version": "1.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/link-util.git", "reference": "1a07821801a148be4add11ab0603e4af55a72fac" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac", "reference": "1a07821801a148be4add11ab0603e4af55a72fac", "shasum": "" }, "require": { "php": ">=5.5.0", "psr/link": "~1.0@dev" }, "require-dev": { "phpunit/phpunit": "^5.1", "squizlabs/php_codesniffer": "^2.3.1" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { "Fig\\Link\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "PHP-FIG", "homepage": "http://www.php-fig.org/" } ], "description": "Common utility implementations for HTTP links", "keywords": [ "http", "http-link", "link", "psr", "psr-13", "rest" ], "time": "2016-10-17T18:31:11+00:00" }, { "name": "friendsofsymfony/http-cache", "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/FriendsOfSymfony/FOSHttpCache.git", "reference": "508d2322c031a8c2cc9f2043bd5618ab83db8f9a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/FriendsOfSymfony/FOSHttpCache/zipball/508d2322c031a8c2cc9f2043bd5618ab83db8f9a", "reference": "508d2322c031a8c2cc9f2043bd5618ab83db8f9a", "shasum": "" }, "require": { "php": "^5.6 || ^7.0.0", "php-http/client-common": "^1.1.0", "php-http/client-implementation": "^1.0.0", "php-http/discovery": "^1.0", "php-http/message": "^1.0.0", "symfony/event-dispatcher": "^2.3 || ^3.0 || ^4.0", "symfony/options-resolver": "^2.7 || ^3.0 || ^4.0" }, "require-dev": { "mockery/mockery": "~0.9.5", "monolog/monolog": "^1.0", "php-http/guzzle6-adapter": "^1.0.0", "php-http/mock-client": "^0.3.2", "phpunit/phpunit": "^5.7 || ^6.0", "symfony/http-kernel": "^2.3 || ^3.0 || ^4.0", "symfony/process": "^2.3 || ^3.0 || ^4.0" }, "suggest": { "friendsofsymfony/http-cache-bundle": "For integration with the Symfony framework", "monolog/monolog": "For logging issues while invalidating" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.4.x-dev" } }, "autoload": { "psr-4": { "FOS\\HttpCache\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Liip AG", "homepage": "http://www.liip.ch/" }, { "name": "Driebit", "email": "tech@driebit.nl", "homepage": "http://www.driebit.nl" }, { "name": "Community contributions", "homepage": "https://github.com/friendsofsymfony/FOSHttpCache/contributors" } ], "description": "Tools to manage HTTP caching proxies with PHP", "homepage": "https://github.com/friendsofsymfony/FOSHttpCache", "keywords": [ "caching", "http", "invalidation", "nginx", "purge", "varnish" ], "time": "2018-07-30T11:46:53+00:00" }, { "name": "friendsofsymfony/http-cache-bundle", "version": "2.4.1", "source": { "type": "git", "url": "https://github.com/FriendsOfSymfony/FOSHttpCacheBundle.git", "reference": "19e8057bf0f3abe67ecb9cd2777895b590196692" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/FriendsOfSymfony/FOSHttpCacheBundle/zipball/19e8057bf0f3abe67ecb9cd2777895b590196692", "reference": "19e8057bf0f3abe67ecb9cd2777895b590196692", "shasum": "" }, "require": { "friendsofsymfony/http-cache": "^2.3", "php": "^7.1", "symfony/framework-bundle": "^2.8.18||^3.3||^4.0", "symfony/http-foundation": "^2.8.18.13||^3.3||^4.0" }, "conflict": { "twig/twig": "<1.12.0" }, "require-dev": { "matthiasnoback/symfony-dependency-injection-test": "^2.3", "mockery/mockery": "^1.0", "monolog/monolog": "*", "php-http/guzzle6-adapter": "^1.0", "php-http/message": "^1.0", "sebastian/exporter": "^2.0", "sensio/framework-extra-bundle": "^3.0", "symfony/browser-kit": "^2.8.18||^3.3||^4.0", "symfony/console": "^2.8.18||^3.3||^4.0", "symfony/css-selector": "^2.8.18||^3.3||^4.0", "symfony/expression-language": "^2.8.18||^3.3||^4.0", "symfony/finder": "^2.8.18||^3.3||^4.0", "symfony/monolog-bundle": "^2.8.18||^3.3||^4.0", "symfony/phpunit-bridge": "^3.3||^4.0", "symfony/routing": "^2.8.18||^3.3||^4.0", "symfony/security-bundle": "^2.8.18||^3.3||^4.0", "symfony/twig-bundle": "^2.8.18||^3.3||^4.0", "symfony/yaml": "^2.8.18||^3.3||^4.0" }, "suggest": { "sensio/framework-extra-bundle": "For Tagged Cache Invalidation", "symfony/console": "To send invalidation requests from the command line", "symfony/expression-language": "For Tagged Cache Invalidation" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "2.4.x-dev" } }, "autoload": { "psr-4": { "FOS\\HttpCacheBundle\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Liip AG", "homepage": "http://www.liip.ch/" }, { "name": "Driebit", "email": "tech@driebit.nl", "homepage": "http://www.driebit.nl" }, { "name": "Community contributions", "homepage": "https://github.com/friendsofsymfony/FOSHttpCacheBundle/contributors" } ], "description": "Set path based HTTP cache headers and send invalidation requests to your HTTP cache", "homepage": "https://github.com/FriendsOfSymfony/FOSHttpCacheBundle", "keywords": [ "caching", "esi", "http", "invalidation", "purge", "varnish" ], "time": "2018-08-09T07:28:06+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.4.2", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c", "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c", "shasum": "" }, "require": { "php": ">=5.4.0", "psr/http-message": "~1.0" }, "provide": { "psr/http-message-implementation": "1.0" }, "require-dev": { "phpunit/phpunit": "~4.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.4-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", "request", "response", "stream", "uri", "url" ], "time": "2017-03-20T17:10:46+00:00" }, { "name": "imagine/imagine", "version": "v0.7.1", "source": { "type": "git", "url": "https://github.com/avalanche123/Imagine.git", "reference": "a9a702a946073cbca166718f1b02a1e72d742daa" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/a9a702a946073cbca166718f1b02a1e72d742daa", "reference": "a9a702a946073cbca166718f1b02a1e72d742daa", "shasum": "" }, "require": { "php": ">=5.3.2" }, "require-dev": { "sami/sami": "^3.3", "symfony/phpunit-bridge": "^3.2" }, "suggest": { "ext-gd": "to use the GD implementation", "ext-gmagick": "to use the Gmagick implementation", "ext-imagick": "to use the Imagick implementation" }, "type": "library", "extra": { "branch-alias": { "dev-develop": "0.7-dev" } }, "autoload": { "psr-0": { "Imagine": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Bulat Shakirzyanov", "email": "mallluhuct@gmail.com", "homepage": "http://avalanche123.com" } ], "description": "Image processing for PHP 5.3", "homepage": "http://imagine.readthedocs.org/", "keywords": [ "drawing", "graphics", "image manipulation", "image processing" ], "time": "2017-05-16T10:31:22+00:00" }, { "name": "isotope/isotope-core", "version": "2.5.2", "source": { "type": "git", "url": "https://github.com/isotope/core.git", "reference": "6191798cc64458220f9b37cdb1193b29a6744272" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/isotope/core/zipball/6191798cc64458220f9b37cdb1193b29a6744272", "reference": "6191798cc64458220f9b37cdb1193b29a6744272", "shasum": "" }, "require": { "codefog/contao-haste": "~4.15", "contao-community-alliance/composer-plugin": "~2.4 || ~3.0", "contao/core-bundle": "^3.5.2 || ~4.1", "guzzlehttp/guzzle": "~6.0", "menatwork/contao-multicolumnwizard": "~3.2", "php": "~5.4 || ~7.0", "terminal42/contao-conditionalselectmenu": "^3.0.3", "terminal42/contao-tablelookupwizard": "~3.2", "terminal42/dc_multilingual": "~2.0", "terminal42/dcawizard": "~2.3", "terminal42/notification_center": "~1.0" }, "conflict": { "contao/core-bundle": "4.0.0 || 4.0.1", "contao/manager-plugin": "<2.0 || >= 3.0", "mpay24/mpay24-php": "< 4.0 || >= 5.0", "terminal42/contao-fineuploader": "< 2.0 || >= 3.0" }, "replace": { "contao-legacy/isotope": "self.version" }, "require-dev": { "contao/manager-plugin": "^2.0", "discordier/httprequestextended": "~1.1", "mpay24/mpay24-php": "^4.0", "petschko/dhl-php-sdk": "dev-master@dev", "terminal42/contao-fineuploader": "^2.0" }, "suggest": { "mpay24/mpay24-php": "For mPAY24 payment provider", "petschko/dhl-php-sdk": "For DHL Business shipping", "terminal42/contao-fineuploader": "For file uploads in frontend using FineUploader" }, "type": "contao-module", "extra": { "branch-alias": { "dev-master": "2.5.x-dev", "dev-develop": "2.6.x-dev" }, "contao-manager-plugin": "Isotope\\ContaoManager\\Plugin", "contao": { "sources": { "system/modules/isotope": "system/modules/isotope", "system/modules/isotope_reports": "system/modules/isotope_reports", "system/modules/isotope_rules": "system/modules/isotope_rules" }, "runonce": [ "system/modules/isotope/config/upgrade.php" ] } }, "autoload": { "psr-0": { "Isotope\\": [ "system/modules/isotope/library", "system/modules/isotope_reports/library", "system/modules/isotope_rules/library" ], "UnitedPrototype\\": [ "system/modules/isotope/library" ] }, "classmap": [ "system/modules/isotope/drivers/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Isotope Workgroup", "homepage": "https://isotopeecommerce.org" }, { "name": "terminal42 gmbh", "homepage": "https://www.terminal42.ch" } ], "description": "Isotope is the premier open source eCommerce solution for Contao Open Source CMS", "homepage": "https://isotopeecommerce.org", "keywords": [ "contao", "isotope" ], "time": "2018-08-29T11:39:07+00:00" }, { "name": "jdorn/sql-formatter", "version": "v1.2.17", "source": { "type": "git", "url": "https://github.com/jdorn/sql-formatter.git", "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc", "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc", "shasum": "" }, "require": { "php": ">=5.2.4" }, "require-dev": { "phpunit/phpunit": "3.7.*" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.3.x-dev" } }, "autoload": { "classmap": [ "lib" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Jeremy Dorn", "email": "jeremy@jeremydorn.com", "homepage": "http://jeremydorn.com/" } ], "description": "a PHP SQL highlighting library", "homepage": "https://github.com/jdorn/sql-formatter/", "keywords": [ "highlight", "sql" ], "time": "2014-01-12T16:20:24+00:00" }, { "name": "jeremykendall/php-domain-parser", "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/jeremykendall/php-domain-parser.git", "reference": "896e7e70f02bd4fd77190052799bc61e4d779672" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/jeremykendall/php-domain-parser/zipball/896e7e70f02bd4fd77190052799bc61e4d779672", "reference": "896e7e70f02bd4fd77190052799bc61e4d779672", "shasum": "" }, "require": { "ext-curl": "*", "ext-intl": "*", "ext-mbstring": "*", "php": ">=5.3.0" }, "require-dev": { "jeremykendall/debug-die": "0.0.1.*", "mikey179/vfsstream": "~1.4", "phpunit/phpunit": "~4.4" }, "bin": [ "bin/parse", "bin/update-psl" ], "type": "library", "autoload": { "psr-0": { "Pdp\\": "src/" }, "files": [ "src/pdp-parse-url.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Jeremy Kendall", "homepage": "http://about.me/jeremykendall", "role": "Developer" }, { "name": "Contributors", "homepage": "https://github.com/jeremykendall/php-domain-parser/graphs/contributors" } ], "description": "Public Suffix List based URL parsing implemented in PHP.", "homepage": "https://github.com/jeremykendall/php-domain-parser", "keywords": [ "Public Suffix List", "domain parsing", "url parsing" ], "time": "2015-03-30T12:49:45+00:00" }, { "name": "knplabs/knp-menu", "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/KnpLabs/KnpMenu.git", "reference": "655630a1db0b72108262d1a844de3b1ba0885be5" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/655630a1db0b72108262d1a844de3b1ba0885be5", "reference": "655630a1db0b72108262d1a844de3b1ba0885be5", "shasum": "" }, "require": { "php": ">=5.6.0" }, "require-dev": { "psr/container": "^1.0", "symfony/http-foundation": "~2.4|~3.0|^4.0", "symfony/phpunit-bridge": "~3.3|^4.0", "symfony/routing": "~2.3|~3.0|^4.0", "twig/twig": "~1.16|~2.0" }, "suggest": { "twig/twig": "for the TwigRenderer and the integration with your templates" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.3-dev" } }, "autoload": { "psr-4": { "Knp\\Menu\\": "src/Knp/Menu" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Christophe Coevoet", "email": "stof@notk.org" }, { "name": "Symfony Community", "homepage": "https://github.com/KnpLabs/KnpMenu/contributors" }, { "name": "KnpLabs", "homepage": "https://knplabs.com" } ], "description": "An object oriented menu library", "homepage": "https://knplabs.com", "keywords": [ "menu", "tree" ], "time": "2017-11-18T20:49:26+00:00" }, { "name": "knplabs/knp-menu-bundle", "version": "v2.2.1", "source": { "type": "git", "url": "https://github.com/KnpLabs/KnpMenuBundle.git", "reference": "6bea43eb84fc67c43ab2b43709194efffa8a8ac0" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/6bea43eb84fc67c43ab2b43709194efffa8a8ac0", "reference": "6bea43eb84fc67c43ab2b43709194efffa8a8ac0", "shasum": "" }, "require": { "knplabs/knp-menu": "~2.3", "php": "^5.6 || ^7", "symfony/framework-bundle": "~2.7|~3.0 | ^4.0" }, "require-dev": { "symfony/expression-language": "~2.7|~3.0 | ^4.0", "symfony/phpunit-bridge": "^3.3 | ^4.0", "symfony/templating": "~2.7|~3.0 | ^4.0" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "2.2.x-dev" } }, "autoload": { "psr-4": { "Knp\\Bundle\\MenuBundle\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Christophe Coevoet", "email": "stof@notk.org" }, { "name": "KnpLabs", "homepage": "http://knplabs.com" }, { "name": "Symfony Community", "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors" } ], "description": "This bundle provides an integration of the KnpMenu library", "keywords": [ "menu" ], "time": "2017-12-24T16:32:39+00:00" }, { "name": "knplabs/knp-time-bundle", "version": "1.8.0", "target-dir": "Knp/Bundle/TimeBundle", "source": { "type": "git", "url": "https://github.com/KnpLabs/KnpTimeBundle.git", "reference": "dd7ed9e72e8c28edb596c13e3d3c18c29d1248b4" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/KnpLabs/KnpTimeBundle/zipball/dd7ed9e72e8c28edb596c13e3d3c18c29d1248b4", "reference": "dd7ed9e72e8c28edb596c13e3d3c18c29d1248b4", "shasum": "" }, "require": { "php": ">=5.5", "symfony/config": "~2.3|~3.0|~4.0", "symfony/dependency-injection": "~2.3|~3.0|~4.0", "symfony/templating": "~2.3|~3.0|~4.0", "symfony/translation": "~2.3|~3.0|~4.0" }, "require-dev": { "phpunit/phpunit": "^4.8|^5.0" }, "suggest": { "symfony/twig-bundle": "to use the Twig time_diff function" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "1.1.x-dev" } }, "autoload": { "psr-0": { "Knp\\Bundle\\TimeBundle": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "KnpLabs Team", "homepage": "http://knplabs.com" }, { "name": "Symfony Community", "homepage": "http://github.com/KnpLabs/KnpTimeBundle/contributors" } ], "description": "Knplabs time bundle makes your dates look sensible and descriptive", "homepage": "http://github.com/KnpLabs/KnpTimeBundle", "keywords": [ "bundle", "date", "descriptive time", "knp", "knplabs", "time" ], "time": "2017-12-26T03:59:33+00:00" }, { "name": "leafo/scssphp", "version": "v0.6.7", "source": { "type": "git", "url": "https://github.com/leafo/scssphp.git", "reference": "562213cd803e42ea53b0735554794c4022d8db89" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/leafo/scssphp/zipball/562213cd803e42ea53b0735554794c4022d8db89", "reference": "562213cd803e42ea53b0735554794c4022d8db89", "shasum": "" }, "require": { "php": ">=5.4.0" }, "require-dev": { "kherge/box": "~2.5", "phpunit/phpunit": "~3.7", "squizlabs/php_codesniffer": "~2.5" }, "bin": [ "bin/pscss" ], "type": "library", "autoload": { "psr-4": { "Leafo\\ScssPhp\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Leaf Corcoran", "email": "leafot@gmail.com", "homepage": "http://leafo.net" } ], "description": "scssphp is a compiler for SCSS written in PHP.", "homepage": "http://leafo.github.io/scssphp/", "keywords": [ "css", "less", "sass", "scss", "stylesheet" ], "time": "2017-02-23T05:07:33+00:00" }, { "name": "league/uri", "version": "4.2.2", "source": { "type": "git", "url": "https://github.com/thephpleague/uri.git", "reference": "a2e73bad7e60c3bc61b649680fb8b46876e342e3" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/thephpleague/uri/zipball/a2e73bad7e60c3bc61b649680fb8b46876e342e3", "reference": "a2e73bad7e60c3bc61b649680fb8b46876e342e3", "shasum": "" }, "require": { "ext-fileinfo": "*", "ext-intl": "*", "ext-mbstring": "*", "jeremykendall/php-domain-parser": "^3.0", "php": ">=5.5.9", "psr/http-message": "^1.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^1.9", "phpunit/phpunit": "^4.0", "zendframework/zend-diactoros": "^1.3" }, "type": "library", "extra": { "branch-alias": { "dev-master": "4.2.x-dev" } }, "autoload": { "psr-4": { "League\\Uri\\": "src" }, "files": [ "src/functions_include.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Ignace Nyamagana Butera", "email": "nyamsprod@gmail.com", "homepage": "https://nyamsprod.com" } ], "description": "URI manipulation library", "homepage": "http://uri.thephpleague.com", "keywords": [ "data-uri", "ftp", "http", "https", "parse_url", "psr-7", "rfc3986", "uri", "url", "ws" ], "time": "2016-12-12T11:36:42+00:00" }, { "name": "lexik/maintenance-bundle", "version": "v2.1.5", "source": { "type": "git", "url": "https://github.com/lexik/LexikMaintenanceBundle.git", "reference": "3a3e916776934a95834235e4a1d71e4595d515f5" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/lexik/LexikMaintenanceBundle/zipball/3a3e916776934a95834235e4a1d71e4595d515f5", "reference": "3a3e916776934a95834235e4a1d71e4595d515f5", "shasum": "" }, "require": { "php": ">=5.3.9", "symfony/framework-bundle": "~2.7|~3.0|^4.0", "symfony/translation": "~2.7|~3.0|^4.0" }, "require-dev": { "phpunit/phpunit": "~4.8|~5.7.11", "symfony/phpunit-bridge": "~2.7|~3.0|^4.0" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { "Lexik\\Bundle\\MaintenanceBundle\\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Dev Lexik", "email": "dev@lexik.fr" }, { "name": "Gilles Gauthier", "email": "g.gauthier@lexik.fr" }, { "name": "Djuri Baars", "email": "info@djurict.nl" } ], "description": "This bundle allows you to place your website in maintenance mode by calling two commands from your console.", "homepage": "https://github.com/lexik/LexikMaintenanceBundle", "keywords": [ "Symfony2", "bundle", "maintenance" ], "time": "2018-02-14T10:18:33+00:00" }, { "name": "matthiasmullie/minify", "version": "1.3.60", "source": { "type": "git", "url": "https://github.com/matthiasmullie/minify.git", "reference": "ab7fea80ce5ce6549baaf272bc8bd926a7e08f90" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/ab7fea80ce5ce6549baaf272bc8bd926a7e08f90", "reference": "ab7fea80ce5ce6549baaf272bc8bd926a7e08f90", "shasum": "" }, "require": { "ext-pcre": "*", "matthiasmullie/path-converter": "~1.1", "php": ">=5.3.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "~2.0", "matthiasmullie/scrapbook": "~1.0", "phpunit/phpunit": "~4.8" }, "suggest": { "psr/cache-implementation": "Cache implementation to use with Minify::cache" }, "bin": [ "bin/minifycss", "bin/minifyjs" ], "type": "library", "autoload": { "psr-4": { "MatthiasMullie\\Minify\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Matthias Mullie", "email": "minify@mullie.eu", "homepage": "http://www.mullie.eu", "role": "Developer" } ], "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.", "homepage": "http://www.minifier.org", "keywords": [ "JS", "css", "javascript", "minifier", "minify" ], "time": "2018-04-18T08:50:35+00:00" }, { "name": "matthiasmullie/path-converter", "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/matthiasmullie/path-converter.git", "reference": "3082a6838be02b930239a97d38b5c9da4d693aca" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/3082a6838be02b930239a97d38b5c9da4d693aca", "reference": "3082a6838be02b930239a97d38b5c9da4d693aca", "shasum": "" }, "require": { "ext-pcre": "*", "php": ">=5.3.0" }, "require-dev": { "phpunit/phpunit": "~4.8" }, "type": "library", "autoload": { "psr-4": { "MatthiasMullie\\PathConverter\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Matthias Mullie", "email": "pathconverter@mullie.eu", "homepage": "http://www.mullie.eu", "role": "Developer" } ], "description": "Relative path converter", "homepage": "http://github.com/matthiasmullie/path-converter", "keywords": [ "converter", "path", "paths", "relative" ], "time": "2018-02-02T11:30:10+00:00" }, { "name": "menatwork/contao-multicolumnwizard", "version": "3.3.16", "source": { "type": "git", "url": "https://github.com/menatwork/MultiColumnWizard.git", "reference": "9a354fe2f05549656cc0f832573c9facebf8f2a4" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/menatwork/MultiColumnWizard/zipball/9a354fe2f05549656cc0f832573c9facebf8f2a4", "reference": "9a354fe2f05549656cc0f832573c9facebf8f2a4", "shasum": "" }, "require": { "contao-community-alliance/composer-plugin": "~2.4 || ~3.0", "contao/core-bundle": "~3.5 || ~4.1" }, "replace": { "contao-legacy/multicolumnwizard": "*" }, "type": "contao-module", "extra": { "contao": { "sources": { "system/modules/multicolumnwizard": "system/modules/multicolumnwizard" } }, "branch-alias": { "dev-master": "3.3.x-dev", "dev-dev": "3.4.x-dev" } }, "autoload": { "classmap": [ "system/" ], "psr-4": { "MenAtWork\\MultiColumnWizard\\": "system/modules/multicolumnwizard/src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "Tristan Lins", "email": "tristan.lins@bit3.de", "homepage": "http://bit3.de", "role": "Developer" }, { "name": "Andreas Schempp", "email": "andreas.schempp@terminal42.ch", "homepage": "http://www.terminal42.ch", "role": "Developer" }, { "name": "Yanick Witschi", "email": "yanick.witschi@terminal42.ch", "homepage": "http://www.terminal42.ch", "role": "Developer" }, { "name": "Andreas Isaak", "email": "contao@men-at-work.de", "homepage": "http://www.men-at-work.de", "role": "Project leader" }, { "name": "David Maack", "email": "contao@men-at-work.de", "homepage": "http://www.men-at-work.de", "role": "Developer" } ], "description": "MultiColumWizard for Contao OpenSource CMS", "homepage": "http://www.men-at-work.de", "keywords": [ "contao", "widget", "wizard" ], "time": "2018-02-26T17:12:41+00:00" }, { "name": "michelf/php-markdown", "version": "1.8.0", "source": { "type": "git", "url": "https://github.com/michelf/php-markdown.git", "reference": "01ab082b355bf188d907b9929cd99b2923053495" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/michelf/php-markdown/zipball/01ab082b355bf188d907b9929cd99b2923053495", "reference": "01ab082b355bf188d907b9929cd99b2923053495", "shasum": "" }, "require": { "php": ">=5.3.0" }, "type": "library", "autoload": { "psr-4": { "Michelf\\": "Michelf/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { "name": "Michel Fortin", "email": "michel.fortin@michelf.ca", "homepage": "https://michelf.ca/", "role": "Developer" }, { "name": "John Gruber", "homepage": "https://daringfireball.net/" } ], "description": "PHP Markdown", "homepage": "https://michelf.ca/projects/php-markdown/", "keywords": [ "markdown" ], "time": "2018-01-15T00:49:33+00:00" }, { "name": "monolog/monolog", "version": "1.23.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4", "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4", "shasum": "" }, "require": { "php": ">=5.3.0", "psr/log": "~1.0" }, "provide": { "psr/log-implementation": "1.0.0" }, "require-dev": { "aws/aws-sdk-php": "^2.4.9 || ^3.0", "doctrine/couchdb": "~1.0@dev", "graylog2/gelf-php": "~1.0", "jakub-onderka/php-parallel-lint": "0.9", "php-amqplib/php-amqplib": "~2.4", "php-console/php-console": "^3.1.3", "phpunit/phpunit": "~4.5", "phpunit/phpunit-mock-objects": "2.3.0", "ruflin/elastica": ">=0.90 <3.0", "sentry/sentry": "^0.13", "swiftmailer/swiftmailer": "^5.3|^6.0" }, "suggest": { "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", "doctrine/couchdb": "Allow sending log messages to a CouchDB server", "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", "ext-mongo": "Allow sending log messages to a MongoDB server", "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", "php-console/php-console": "Allow sending log messages to Google Chrome", "rollbar/rollbar": "Allow sending log messages to Rollbar", "ruflin/elastica": "Allow sending log messages to an Elastic Search server", "sentry/sentry": "Allow sending log messages to a Sentry server" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { "Monolog\\": "src/Monolog" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Jordi Boggiano", "email": "j.boggiano@seld.be", "homepage": "http://seld.be" } ], "description": "Sends your logs to files, sockets, inboxes, databases and various web services", "homepage": "http://github.com/Seldaek/monolog", "keywords": [ "log", "logging", "psr-3" ], "time": "2017-06-19T01:22:40+00:00" }, { "name": "nelmio/cors-bundle", "version": "1.5.4", "source": { "type": "git", "url": "https://github.com/nelmio/NelmioCorsBundle.git", "reference": "548dc8ebd3984acd2f6d8787ab1dac2e9aa14254" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/548dc8ebd3984acd2f6d8787ab1dac2e9aa14254", "reference": "548dc8ebd3984acd2f6d8787ab1dac2e9aa14254", "shasum": "" }, "require": { "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0" }, "require-dev": { "matthiasnoback/symfony-dependency-injection-test": "^1.0 || ^2.0", "mockery/mockery": "^0.9 || ^1.0", "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "1.5.x-dev" } }, "autoload": { "psr-4": { "Nelmio\\CorsBundle\\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nelmio", "homepage": "http://nelm.io" }, { "name": "Symfony Community", "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors" } ], "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application", "keywords": [ "api", "cors", "crossdomain" ], "time": "2017-12-11T18:41:54+00:00" }, { "name": "nelmio/security-bundle", "version": "2.5.1", "source": { "type": "git", "url": "https://github.com/nelmio/NelmioSecurityBundle.git", "reference": "fe1d31eb23c13e0918de9a66df9d315648c5d3d1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/fe1d31eb23c13e0918de9a66df9d315648c5d3d1", "reference": "fe1d31eb23c13e0918de9a66df9d315648c5d3d1", "shasum": "" }, "require": { "paragonie/random_compat": "~1.0|~2.0", "symfony/framework-bundle": "~2.3|~3.0|~4.0", "symfony/security": "~2.3|~3.0|~4.0", "ua-parser/uap-php": "^3.4.4" }, "require-dev": { "doctrine/cache": "^1.0", "psr/cache": "^1.0", "symfony/phpunit-bridge": "^3.2|~4.0", "symfony/yaml": "~2.3|~3.0|~4.0", "twig/twig": "^1.24" }, "suggest": { "ua-parser/uap-php": "To allow adapt CSP directives given the user-agent" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "2.4.x-dev" } }, "autoload": { "psr-4": { "Nelmio\\SecurityBundle\\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Nelmio", "homepage": "http://nelm.io" }, { "name": "Symfony Community", "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors" } ], "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...", "keywords": [ "security" ], "time": "2018-03-21T14:33:42+00:00" }, { "name": "oyejorge/less.php", "version": "v1.7.0.14", "source": { "type": "git", "url": "https://github.com/oyejorge/less.php.git", "reference": "42925c5a01a07d67ca7e82dfc8fb31814d557bc9" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/oyejorge/less.php/zipball/42925c5a01a07d67ca7e82dfc8fb31814d557bc9", "reference": "42925c5a01a07d67ca7e82dfc8fb31814d557bc9", "shasum": "" }, "require": { "php": ">=5.3" }, "require-dev": { "phpunit/phpunit": "~4.8.24" }, "bin": [ "bin/lessc" ], "type": "library", "autoload": { "psr-0": { "Less": "lib/" }, "classmap": [ "lessc.inc.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "Apache-2.0" ], "authors": [ { "name": "Matt Agar", "homepage": "https://github.com/agar" }, { "name": "Martin Jantošovič", "homepage": "https://github.com/Mordred" }, { "name": "Josh Schmidt", "homepage": "https://github.com/oyejorge" } ], "description": "PHP port of the Javascript version of LESS http://lesscss.org (Originally maintained by Josh Schmidt)", "homepage": "http://lessphp.gpeasy.com", "keywords": [ "css", "less", "less.js", "lesscss", "php", "stylesheet" ], "time": "2017-03-28T22:19:25+00:00" }, { "name": "paragonie/random_compat", "version": "v2.0.17", "source": { "type": "git", "url": "https://github.com/paragonie/random_compat.git", "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d", "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d", "shasum": "" }, "require": { "php": ">=5.2.0" }, "require-dev": { "phpunit/phpunit": "4.*|5.*" }, "suggest": { "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." }, "type": "library", "autoload": { "files": [ "lib/random.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Paragon Initiative Enterprises", "email": "security@paragonie.com", "homepage": "https://paragonie.com" } ], "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", "keywords": [ "csprng", "polyfill", "pseudorandom", "random" ], "time": "2018-07-04T16:31:37+00:00" }, { "name": "patchwork/utf8", "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/tchwork/utf8.git", "reference": "30ec6451aec7d2536f0af8fe535f70c764f2c47a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/tchwork/utf8/zipball/30ec6451aec7d2536f0af8fe535f70c764f2c47a", "reference": "30ec6451aec7d2536f0af8fe535f70c764f2c47a", "shasum": "" }, "require": { "lib-pcre": ">=7.3", "php": ">=5.3.0" }, "suggest": { "ext-iconv": "Use iconv for best performance", "ext-intl": "Use Intl for best performance", "ext-mbstring": "Use Mbstring for best performance", "ext-wfio": "Use WFIO for UTF-8 filesystem access on Windows" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.3-dev" } }, "autoload": { "psr-4": { "Patchwork\\": "src/Patchwork/" }, "classmap": [ "src/Normalizer.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "(Apache-2.0 or GPL-2.0)" ], "authors": [ { "name": "Nicolas Grekas", "email": "p@tchwork.com" } ], "description": "Portable and performant UTF-8, Unicode and Grapheme Clusters for PHP", "homepage": "https://github.com/tchwork/utf8", "keywords": [ "grapheme", "i18n", "unicode", "utf-8", "utf8" ], "time": "2016-05-18T13:57:10+00:00" }, { "name": "php-http/client-common", "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/php-http/client-common.git", "reference": "9accb4a082eb06403747c0ffd444112eda41a0fd" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-http/client-common/zipball/9accb4a082eb06403747c0ffd444112eda41a0fd", "reference": "9accb4a082eb06403747c0ffd444112eda41a0fd", "shasum": "" }, "require": { "php": "^5.4 || ^7.0", "php-http/httplug": "^1.1", "php-http/message": "^1.6", "php-http/message-factory": "^1.0", "symfony/options-resolver": "^2.6 || ^3.0 || ^4.0" }, "require-dev": { "guzzlehttp/psr7": "^1.4", "phpspec/phpspec": "^2.5 || ^3.4 || ^4.2" }, "suggest": { "php-http/cache-plugin": "PSR-6 Cache plugin", "php-http/logger-plugin": "PSR-3 Logger plugin", "php-http/stopwatch-plugin": "Symfony Stopwatch plugin" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.7-dev" } }, "autoload": { "psr-4": { "Http\\Client\\Common\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Márk Sági-Kazár", "email": "mark.sagikazar@gmail.com" } ], "description": "Common HTTP Client implementations and tools for HTTPlug", "homepage": "http://httplug.io", "keywords": [ "client", "common", "http", "httplug" ], "time": "2017-11-30T11:06:59+00:00" }, { "name": "php-http/discovery", "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/php-http/discovery.git", "reference": "9a6cb24de552bfe1aa9d7d1569e2d49c5b169a33" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-http/discovery/zipball/9a6cb24de552bfe1aa9d7d1569e2d49c5b169a33", "reference": "9a6cb24de552bfe1aa9d7d1569e2d49c5b169a33", "shasum": "" }, "require": { "php": "^5.5 || ^7.0" }, "require-dev": { "henrikbjorn/phpspec-code-coverage": "^2.0.2", "php-http/httplug": "^1.0", "php-http/message-factory": "^1.0", "phpspec/phpspec": "^2.4", "puli/composer-plugin": "1.0.0-beta10" }, "suggest": { "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories", "puli/composer-plugin": "Sets up Puli which is recommended for Discovery to work. Check http://docs.php-http.org/en/latest/discovery.html for more details." }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.3-dev" } }, "autoload": { "psr-4": { "Http\\Discovery\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Márk Sági-Kazár", "email": "mark.sagikazar@gmail.com" } ], "description": "Finds installed HTTPlug implementations and PSR-7 message factories", "homepage": "http://php-http.org", "keywords": [ "adapter", "client", "discovery", "factory", "http", "message", "psr7" ], "time": "2018-02-06T10:55:24+00:00" }, { "name": "php-http/guzzle6-adapter", "version": "v1.1.1", "source": { "type": "git", "url": "https://github.com/php-http/guzzle6-adapter.git", "reference": "a56941f9dc6110409cfcddc91546ee97039277ab" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/a56941f9dc6110409cfcddc91546ee97039277ab", "reference": "a56941f9dc6110409cfcddc91546ee97039277ab", "shasum": "" }, "require": { "guzzlehttp/guzzle": "^6.0", "php": ">=5.5.0", "php-http/httplug": "^1.0" }, "provide": { "php-http/async-client-implementation": "1.0", "php-http/client-implementation": "1.0" }, "require-dev": { "ext-curl": "*", "php-http/adapter-integration-tests": "^0.4" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.2-dev" } }, "autoload": { "psr-4": { "Http\\Adapter\\Guzzle6\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Márk Sági-Kazár", "email": "mark.sagikazar@gmail.com" }, { "name": "David de Boer", "email": "david@ddeboer.nl" } ], "description": "Guzzle 6 HTTP Adapter", "homepage": "http://httplug.io", "keywords": [ "Guzzle", "http" ], "time": "2016-05-10T06:13:32+00:00" }, { "name": "php-http/httplug", "version": "v1.1.0", "source": { "type": "git", "url": "https://github.com/php-http/httplug.git", "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018", "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018", "shasum": "" }, "require": { "php": ">=5.4", "php-http/promise": "^1.0", "psr/http-message": "^1.0" }, "require-dev": { "henrikbjorn/phpspec-code-coverage": "^1.0", "phpspec/phpspec": "^2.4" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.1-dev" } }, "autoload": { "psr-4": { "Http\\Client\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Eric GELOEN", "email": "geloen.eric@gmail.com" }, { "name": "Márk Sági-Kazár", "email": "mark.sagikazar@gmail.com" } ], "description": "HTTPlug, the HTTP client abstraction for PHP", "homepage": "http://httplug.io", "keywords": [ "client", "http" ], "time": "2016-08-31T08:30:17+00:00" }, { "name": "php-http/message", "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/php-http/message.git", "reference": "741f2266a202d59c4ed75436671e1b8e6f475ea3" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-http/message/zipball/741f2266a202d59c4ed75436671e1b8e6f475ea3", "reference": "741f2266a202d59c4ed75436671e1b8e6f475ea3", "shasum": "" }, "require": { "clue/stream-filter": "^1.4", "php": "^5.4 || ^7.0", "php-http/message-factory": "^1.0.2", "psr/http-message": "^1.0" }, "provide": { "php-http/message-factory-implementation": "1.0" }, "require-dev": { "akeneo/phpspec-skip-example-extension": "^1.0", "coduo/phpspec-data-provider-extension": "^1.0", "ext-zlib": "*", "guzzlehttp/psr7": "^1.0", "henrikbjorn/phpspec-code-coverage": "^1.0", "phpspec/phpspec": "^2.4", "slim/slim": "^3.0", "zendframework/zend-diactoros": "^1.0" }, "suggest": { "ext-zlib": "Used with compressor/decompressor streams", "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories", "slim/slim": "Used with Slim Framework PSR-7 implementation", "zendframework/zend-diactoros": "Used with Diactoros Factories" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.6-dev" } }, "autoload": { "psr-4": { "Http\\Message\\": "src/" }, "files": [ "src/filters.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Márk Sági-Kazár", "email": "mark.sagikazar@gmail.com" } ], "description": "HTTP Message related tools", "homepage": "http://php-http.org", "keywords": [ "http", "message", "psr-7" ], "time": "2018-08-15T06:37:30+00:00" }, { "name": "php-http/message-factory", "version": "v1.0.2", "source": { "type": "git", "url": "https://github.com/php-http/message-factory.git", "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1", "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1", "shasum": "" }, "require": { "php": ">=5.4", "psr/http-message": "^1.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0-dev" } }, "autoload": { "psr-4": { "Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Márk Sági-Kazár", "email": "mark.sagikazar@gmail.com" } ], "description": "Factory interfaces for PSR-7 HTTP Message", "homepage": "http://php-http.org", "keywords": [ "factory", "http", "message", "stream", "uri" ], "time": "2015-12-19T14:08:53+00:00" }, { "name": "php-http/promise", "version": "v1.0.0", "source": { "type": "git", "url": "https://github.com/php-http/promise.git", "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980", "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980", "shasum": "" }, "require-dev": { "henrikbjorn/phpspec-code-coverage": "^1.0", "phpspec/phpspec": "^2.4" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.1-dev" } }, "autoload": { "psr-4": { "Http\\Promise\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Márk Sági-Kazár", "email": "mark.sagikazar@gmail.com" }, { "name": "Joel Wurtz", "email": "joel.wurtz@gmail.com" } ], "description": "Promise used for asynchronous HTTP requests", "homepage": "http://httplug.io", "keywords": [ "promise" ], "time": "2016-01-26T13:27:02+00:00" }, { "name": "phpspec/php-diff", "version": "v1.1.0", "source": { "type": "git", "url": "https://github.com/phpspec/php-diff.git", "reference": "0464787bfa7cd13576c5a1e318709768798bec6a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a", "reference": "0464787bfa7cd13576c5a1e318709768798bec6a", "shasum": "" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-0": { "Diff": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { "name": "Chris Boulton", "homepage": "http://github.com/chrisboulton" } ], "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).", "time": "2016-04-07T12:29:16+00:00" }, { "name": "phpunit/php-token-stream", "version": "1.4.12", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-token-stream.git", "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16", "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16", "shasum": "" }, "require": { "ext-tokenizer": "*", "php": ">=5.3.3" }, "require-dev": { "phpunit/phpunit": "~4.2" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.4-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": "2017-12-04T08:55:13+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/link", "version": "1.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/link.git", "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562", "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562", "shasum": "" }, "require": { "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { "Psr\\Link\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "PHP-FIG", "homepage": "http://www.php-fig.org/" } ], "description": "Common interfaces for HTTP links", "keywords": [ "http", "http-link", "link", "psr", "psr-13", "rest" ], "time": "2016-10-28T16:06:13+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": "psr/simple-cache", "version": "1.0.1", "source": { "type": "git", "url": "https://github.com/php-fig/simple-cache.git", "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", "shasum": "" }, "require": { "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { "Psr\\SimpleCache\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "PHP-FIG", "homepage": "http://www.php-fig.org/" } ], "description": "Common interfaces for simple caching", "keywords": [ "cache", "caching", "psr", "psr-16", "simple-cache" ], "time": "2017-10-23T01:57:42+00:00" }, { "name": "sensio/distribution-bundle", "version": "v5.0.22", "source": { "type": "git", "url": "https://github.com/sensiolabs/SensioDistributionBundle.git", "reference": "209b11f8cee5bf71986dd703e45e27d3ed7a6d15" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/209b11f8cee5bf71986dd703e45e27d3ed7a6d15", "reference": "209b11f8cee5bf71986dd703e45e27d3ed7a6d15", "shasum": "" }, "require": { "php": ">=5.3.9", "sensiolabs/security-checker": "~3.0|~4.0", "symfony/class-loader": "~2.3|~3.0", "symfony/config": "~2.3|~3.0", "symfony/dependency-injection": "~2.3|~3.0", "symfony/filesystem": "~2.3|~3.0", "symfony/http-kernel": "~2.3|~3.0", "symfony/process": "~2.3|~3.0" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "5.0.x-dev" } }, "autoload": { "psr-4": { "Sensio\\Bundle\\DistributionBundle\\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "Base bundle for Symfony Distributions", "keywords": [ "configuration", "distribution" ], "time": "2018-06-07T06:22:12+00:00" }, { "name": "sensio/framework-extra-bundle", "version": "v3.0.29", "source": { "type": "git", "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git", "reference": "bb907234df776b68922eb4b25bfa061683597b6a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/bb907234df776b68922eb4b25bfa061683597b6a", "reference": "bb907234df776b68922eb4b25bfa061683597b6a", "shasum": "" }, "require": { "doctrine/common": "~2.2", "symfony/dependency-injection": "~2.3|~3.0", "symfony/framework-bundle": "~2.3|~3.0|~4.0" }, "require-dev": { "doctrine/doctrine-bundle": "~1.5", "doctrine/orm": "~2.4,>=2.4.5", "symfony/asset": "~2.7|~3.0|~4.0", "symfony/browser-kit": "~2.3|~3.0|~4.0", "symfony/dom-crawler": "~2.3|~3.0|~4.0", "symfony/expression-language": "~2.4|~3.0|~4.0", "symfony/finder": "~2.3|~3.0|~4.0", "symfony/phpunit-bridge": "~3.2|~4.0", "symfony/psr-http-message-bridge": "^0.3|^1.0", "symfony/security-bundle": "~2.4|~3.0|~4.0", "symfony/templating": "~2.3|~3.0|~4.0", "symfony/translation": "~2.3|~3.0|~4.0", "symfony/twig-bundle": "~2.3|~3.0|~4.0", "symfony/yaml": "~2.3|~3.0|~4.0", "twig/twig": "~1.12|~2.0", "zendframework/zend-diactoros": "^1.3" }, "suggest": { "symfony/expression-language": "", "symfony/psr-http-message-bridge": "To use the PSR-7 converters", "symfony/security-bundle": "" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "3.0.x-dev" } }, "autoload": { "psr-4": { "Sensio\\Bundle\\FrameworkExtraBundle\\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "This bundle provides a way to configure your controllers with annotations", "keywords": [ "annotations", "controllers" ], "time": "2017-12-14T19:03:23+00:00" }, { "name": "sensiolabs/ansi-to-html", "version": "v1.1.3", "source": { "type": "git", "url": "https://github.com/sensiolabs/ansi-to-html.git", "reference": "8b5d787dca714bd98dd770c078d76528320a8286" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/sensiolabs/ansi-to-html/zipball/8b5d787dca714bd98dd770c078d76528320a8286", "reference": "8b5d787dca714bd98dd770c078d76528320a8286", "shasum": "" }, "require": { "php": ">=5.3.0" }, "suggest": { "twig/twig": "Provides nice templating features" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.1-dev" } }, "autoload": { "psr-0": { "SensioLabs\\AnsiConverter": "." } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "A library to convert a text with ANSI codes to HTML", "time": "2017-05-02T00:53:29+00:00" }, { "name": "sensiolabs/security-checker", "version": "v4.1.8", "source": { "type": "git", "url": "https://github.com/sensiolabs/security-checker.git", "reference": "dc270d5fec418cc6ac983671dba5d80ffaffb142" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/dc270d5fec418cc6ac983671dba5d80ffaffb142", "reference": "dc270d5fec418cc6ac983671dba5d80ffaffb142", "shasum": "" }, "require": { "composer/ca-bundle": "^1.0", "symfony/console": "~2.7|~3.0|~4.0" }, "bin": [ "security-checker" ], "type": "library", "extra": { "branch-alias": { "dev-master": "4.1-dev" } }, "autoload": { "psr-0": { "SensioLabs\\Security": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien.potencier@gmail.com" } ], "description": "A security checker for your composer.lock", "time": "2018-02-28T22:10:01+00:00" }, { "name": "simplepie/simplepie", "version": "1.5.2", "source": { "type": "git", "url": "https://github.com/simplepie/simplepie.git", "reference": "0e8fe72132dad765d25db4cabc69a91139af1263" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/simplepie/simplepie/zipball/0e8fe72132dad765d25db4cabc69a91139af1263", "reference": "0e8fe72132dad765d25db4cabc69a91139af1263", "shasum": "" }, "require": { "ext-pcre": "*", "ext-xml": "*", "ext-xmlreader": "*", "php": ">=5.6.0" }, "require-dev": { "phpunit/phpunit": "~5.4.3 || ~6.5" }, "suggest": { "ext-curl": "", "ext-iconv": "", "ext-intl": "", "ext-mbstring": "", "mf2/mf2": "Microformat module that allows for parsing HTML for microformats" }, "type": "library", "autoload": { "psr-0": { "SimplePie": "library" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { "name": "Ryan Parman", "homepage": "http://ryanparman.com/", "role": "Creator, alumnus developer" }, { "name": "Geoffrey Sneddon", "homepage": "http://gsnedders.com/", "role": "Alumnus developer" }, { "name": "Ryan McCue", "email": "me@ryanmccue.info", "homepage": "http://ryanmccue.info/", "role": "Developer" } ], "description": "A simple Atom/RSS parsing library for PHP", "homepage": "http://simplepie.org/", "keywords": [ "atom", "feeds", "rss" ], "time": "2018-08-02T05:43:58+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/monolog-bundle", "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/symfony/monolog-bundle.git", "reference": "8204f3cd7c1bd6a6e2955c0a34475243a7bd9802" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/8204f3cd7c1bd6a6e2955c0a34475243a7bd9802", "reference": "8204f3cd7c1bd6a6e2955c0a34475243a7bd9802", "shasum": "" }, "require": { "monolog/monolog": "~1.22", "php": ">=5.6", "symfony/config": "~2.7|~3.3|~4.0", "symfony/dependency-injection": "~2.7|~3.4.10|^4.0.10", "symfony/http-kernel": "~2.7|~3.3|~4.0", "symfony/monolog-bridge": "~2.7|~3.3|~4.0" }, "require-dev": { "symfony/console": "~2.7|~3.3|~4.0", "symfony/phpunit-bridge": "^3.3|^4.0", "symfony/yaml": "~2.7|~3.3|~4.0" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "3.x-dev" } }, "autoload": { "psr-4": { "Symfony\\Bundle\\MonologBundle\\": "" }, "exclude-from-classmap": [ "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Symfony Community", "homepage": "http://symfony.com/contributors" }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "Symfony MonologBundle", "homepage": "http://symfony.com", "keywords": [ "log", "logging" ], "time": "2018-06-04T05:55:43+00:00" }, { "name": "symfony/polyfill-apcu", "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-apcu.git", "reference": "19e1b73bf255265ad0b568f81766ae2a3266d8d2" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/19e1b73bf255265ad0b568f81766ae2a3266d8d2", "reference": "19e1b73bf255265ad0b568f81766ae2a3266d8d2", "shasum": "" }, "require": { "php": ">=5.3.3" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.9-dev" } }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Apcu\\": "" }, "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 apcu_* functions to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "apcu", "compatibility", "polyfill", "portable", "shim" ], "time": "2018-08-06T14:22:27+00:00" }, { "name": "symfony/polyfill-ctype", "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", "reference": "e3d826245268269cd66f8326bd8bc066687b4a19" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19", "reference": "e3d826245268269cd66f8326bd8bc066687b4a19", "shasum": "" }, "require": { "php": ">=5.3.3" }, "suggest": { "ext-ctype": "For best performance" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.9-dev" } }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Ctype\\": "" }, "files": [ "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" }, { "name": "Gert de Pagter", "email": "BackEndTea@gmail.com" } ], "description": "Symfony polyfill for ctype functions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "ctype", "polyfill", "portable" ], "time": "2018-08-06T14:22:27+00:00" }, { "name": "symfony/polyfill-intl-icu", "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", "reference": "f22a90256d577c7ef7efad8df1f0201663d57644" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/f22a90256d577c7ef7efad8df1f0201663d57644", "reference": "f22a90256d577c7ef7efad8df1f0201663d57644", "shasum": "" }, "require": { "php": ">=5.3.3", "symfony/intl": "~2.3|~3.0|~4.0" }, "suggest": { "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.9-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": "2018-08-06T14:22:27+00:00" }, { "name": "symfony/polyfill-mbstring", "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8", "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8", "shasum": "" }, "require": { "php": ">=5.3.3" }, "suggest": { "ext-mbstring": "For best performance" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.9-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": "2018-08-06T14:22:27+00:00" }, { "name": "symfony/polyfill-php56", "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php56.git", "reference": "7b4fc009172cc0196535b0328bd1226284a28000" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/7b4fc009172cc0196535b0328bd1226284a28000", "reference": "7b4fc009172cc0196535b0328bd1226284a28000", "shasum": "" }, "require": { "php": ">=5.3.3", "symfony/polyfill-util": "~1.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.9-dev" } }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Php56\\": "" }, "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 5.6+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "time": "2018-08-06T14:22:27+00:00" }, { "name": "symfony/polyfill-php70", "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php70.git", "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/1e24b0c4a56d55aaf368763a06c6d1c7d3194934", "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934", "shasum": "" }, "require": { "paragonie/random_compat": "~1.0|~2.0|~9.99", "php": ">=5.3.3" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.9-dev" } }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Php70\\": "" }, "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.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", "polyfill", "portable", "shim" ], "time": "2018-08-06T14:22:27+00:00" }, { "name": "symfony/polyfill-util", "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-util.git", "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8e15d04ba3440984d23e7964b2ee1d25c8de1581", "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581", "shasum": "" }, "require": { "php": ">=5.3.3" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.9-dev" } }, "autoload": { "psr-4": { "Symfony\\Polyfill\\Util\\": "" } }, "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 utilities for portability of PHP codes", "homepage": "https://symfony.com", "keywords": [ "compat", "compatibility", "polyfill", "shim" ], "time": "2018-08-06T14:22:27+00:00" }, { "name": "symfony/swiftmailer-bundle", "version": "v2.6.7", "source": { "type": "git", "url": "https://github.com/symfony/swiftmailer-bundle.git", "reference": "c4808f5169efc05567be983909d00f00521c53ec" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/c4808f5169efc05567be983909d00f00521c53ec", "reference": "c4808f5169efc05567be983909d00f00521c53ec", "shasum": "" }, "require": { "php": ">=5.3.2", "swiftmailer/swiftmailer": "~4.2|~5.0", "symfony/config": "~2.7|~3.0", "symfony/dependency-injection": "~2.7|~3.0", "symfony/http-kernel": "~2.7|~3.0" }, "require-dev": { "symfony/console": "~2.7|~3.0", "symfony/framework-bundle": "~2.7|~3.0", "symfony/phpunit-bridge": "~3.3@dev", "symfony/yaml": "~2.7|~3.0" }, "suggest": { "psr/log": "Allows logging" }, "type": "symfony-bundle", "extra": { "branch-alias": { "dev-master": "2.6-dev" } }, "autoload": { "psr-4": { "Symfony\\Bundle\\SwiftmailerBundle\\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Symfony Community", "homepage": "http://symfony.com/contributors" }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], "description": "Symfony SwiftmailerBundle", "homepage": "http://symfony.com", "time": "2017-10-19T01:06:41+00:00" }, { "name": "symfony/symfony", "version": "v3.4.15", "source": { "type": "git", "url": "https://github.com/symfony/symfony.git", "reference": "5bb5c2d4b0d5cf10672015b68519a199e6ac27c1" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/symfony/zipball/5bb5c2d4b0d5cf10672015b68519a199e6ac27c1", "reference": "5bb5c2d4b0d5cf10672015b68519a199e6ac27c1", "shasum": "" }, "require": { "doctrine/common": "~2.4", "ext-xml": "*", "fig/link-util": "^1.0", "php": "^5.5.9|>=7.0.8", "psr/cache": "~1.0", "psr/container": "^1.0", "psr/link": "^1.0", "psr/log": "~1.0", "psr/simple-cache": "^1.0", "symfony/polyfill-apcu": "~1.1", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-intl-icu": "~1.0", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php56": "~1.0", "symfony/polyfill-php70": "~1.6", "twig/twig": "^1.35|^2.4.4" }, "conflict": { "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2", "phpdocumentor/type-resolver": "<0.3.0", "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" }, "provide": { "psr/cache-implementation": "1.0", "psr/container-implementation": "1.0", "psr/log-implementation": "1.0", "psr/simple-cache-implementation": "1.0" }, "replace": { "symfony/asset": "self.version", "symfony/browser-kit": "self.version", "symfony/cache": "self.version", "symfony/class-loader": "self.version", "symfony/config": "self.version", "symfony/console": "self.version", "symfony/css-selector": "self.version", "symfony/debug": "self.version", "symfony/debug-bundle": "self.version", "symfony/dependency-injection": "self.version", "symfony/doctrine-bridge": "self.version", "symfony/dom-crawler": "self.version", "symfony/dotenv": "self.version", "symfony/event-dispatcher": "self.version", "symfony/expression-language": "self.version", "symfony/filesystem": "self.version", "symfony/finder": "self.version", "symfony/form": "self.version", "symfony/framework-bundle": "self.version", "symfony/http-foundation": "self.version", "symfony/http-kernel": "self.version", "symfony/inflector": "self.version", "symfony/intl": "self.version", "symfony/ldap": "self.version", "symfony/lock": "self.version", "symfony/monolog-bridge": "self.version", "symfony/options-resolver": "self.version", "symfony/process": "self.version", "symfony/property-access": "self.version", "symfony/property-info": "self.version", "symfony/proxy-manager-bridge": "self.version", "symfony/routing": "self.version", "symfony/security": "self.version", "symfony/security-bundle": "self.version", "symfony/security-core": "self.version", "symfony/security-csrf": "self.version", "symfony/security-guard": "self.version", "symfony/security-http": "self.version", "symfony/serializer": "self.version", "symfony/stopwatch": "self.version", "symfony/templating": "self.version", "symfony/translation": "self.version", "symfony/twig-bridge": "self.version", "symfony/twig-bundle": "self.version", "symfony/validator": "self.version", "symfony/var-dumper": "self.version", "symfony/web-link": "self.version", "symfony/web-profiler-bundle": "self.version", "symfony/web-server-bundle": "self.version", "symfony/workflow": "self.version", "symfony/yaml": "self.version" }, "require-dev": { "cache/integration-tests": "dev-master", "doctrine/annotations": "~1.0", "doctrine/cache": "~1.6", "doctrine/data-fixtures": "1.0.*", "doctrine/dbal": "~2.4", "doctrine/doctrine-bundle": "~1.4", "doctrine/orm": "~2.4,>=2.4.5", "egulias/email-validator": "~1.2,>=1.2.8|~2.0", "monolog/monolog": "~1.11", "ocramius/proxy-manager": "~0.4|~1.0|~2.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0", "predis/predis": "~1.0", "symfony/phpunit-bridge": "~3.4|~4.0", "symfony/security-acl": "~2.8|~3.0" }, "type": "library", "extra": { "branch-alias": { "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/", "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/", "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/", "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/", "Symfony\\Bundle\\": "src/Symfony/Bundle/", "Symfony\\Component\\": "src/Symfony/Component/" }, "classmap": [ "src/Symfony/Component/Intl/Resources/stubs" ], "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": "The Symfony PHP framework", "homepage": "https://symfony.com", "keywords": [ "framework" ], "time": "2018-08-28T06:06:28+00:00" }, { "name": "tecnickcom/tcpdf", "version": "6.2.17", "source": { "type": "git", "url": "https://github.com/tecnickcom/TCPDF.git", "reference": "64fc19439863e1b1314487a72a74d9bfd0b55a53" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/64fc19439863e1b1314487a72a74d9bfd0b55a53", "reference": "64fc19439863e1b1314487a72a74d9bfd0b55a53", "shasum": "" }, "require": { "php": ">=5.3.0" }, "type": "library", "autoload": { "classmap": [ "config", "include", "tcpdf.php", "tcpdf_parser.php", "tcpdf_import.php", "tcpdf_barcodes_1d.php", "tcpdf_barcodes_2d.php", "include/tcpdf_colors.php", "include/tcpdf_filters.php", "include/tcpdf_font_data.php", "include/tcpdf_fonts.php", "include/tcpdf_images.php", "include/tcpdf_static.php", "include/barcodes/datamatrix.php", "include/barcodes/pdf417.php", "include/barcodes/qrcode.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0" ], "authors": [ { "name": "Nicola Asuni", "email": "info@tecnick.com", "role": "lead" } ], "description": "TCPDF is a PHP class for generating PDF documents and barcodes.", "homepage": "http://www.tcpdf.org/", "keywords": [ "PDFD32000-2008", "TCPDF", "barcodes", "datamatrix", "pdf", "pdf417", "qrcode" ], "time": "2018-02-24T11:48:20+00:00" }, { "name": "terminal42/contao-conditionalselectmenu", "version": "3.0.4", "source": { "type": "git", "url": "https://github.com/terminal42/contao-conditionalselectmenu.git", "reference": "bd1fcbfb230bec59b29b0e3d2f98c1ffbbefdb07" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/terminal42/contao-conditionalselectmenu/zipball/bd1fcbfb230bec59b29b0e3d2f98c1ffbbefdb07", "reference": "bd1fcbfb230bec59b29b0e3d2f98c1ffbbefdb07", "shasum": "" }, "require": { "contao-community-alliance/composer-plugin": "~2.4 || ~3.0", "contao/core-bundle": "~3.2 || ~4.1", "php": ">=5.3.2" }, "replace": { "contao-legacy/conditionalselectmenu": "self.version" }, "type": "contao-module", "extra": { "branch-alias": { "dev-master": "3.0.x-dev", "dev-develop": "3.0.x-dev" }, "contao": { "sources": { "": "system/modules/conditionalselectmenu" } } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0+" ], "authors": [ { "name": "terminal42 gmbh", "homepage": "http://terminal42.ch" } ], "description": "conditional select menu extension for Contao Open Source CMS", "keywords": [ "conditional", "contao", "form", "select" ], "time": "2017-12-06T09:12:01+00:00" }, { "name": "terminal42/contao-tablelookupwizard", "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/terminal42/contao-tablelookupwizard.git", "reference": "2a1f563448c28ac4ef22730e69acb8ac13395d50" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/terminal42/contao-tablelookupwizard/zipball/2a1f563448c28ac4ef22730e69acb8ac13395d50", "reference": "2a1f563448c28ac4ef22730e69acb8ac13395d50", "shasum": "" }, "require": { "codefog/contao-haste": "^4.16", "contao-community-alliance/composer-plugin": "~2.0 || 3.*", "contao/core-bundle": "~3.2 || ^4.1", "php": "^5.4 || ^7.0" }, "replace": { "contao-legacy/tablelookupwizard": "self.version" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.10", "leofeyer/optimize-native-functions-fixer": "^1.0" }, "type": "contao-module", "extra": { "contao": { "sources": { "": "system/modules/tablelookupwizard" } } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "terminal42 gmbh", "homepage": "https://www.terminal42.ch" } ], "description": "Contao widget to select records from a foreign table. Useful if you have a large set of records.", "keywords": [ "contao", "tablelookupwizard", "widget" ], "time": "2018-02-13T13:53:15+00:00" }, { "name": "terminal42/dc_multilingual", "version": "2.1.7", "source": { "type": "git", "url": "https://github.com/terminal42/contao-DC_Multilingual.git", "reference": "99428506e83720f86f5184b49feaa25208fc0ede" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/terminal42/contao-DC_Multilingual/zipball/99428506e83720f86f5184b49feaa25208fc0ede", "reference": "99428506e83720f86f5184b49feaa25208fc0ede", "shasum": "" }, "require": { "contao-community-alliance/composer-plugin": "~2.4 || ~3.0", "contao/core-bundle": "~3.3 || ~4.1", "php": ">=5.3.2" }, "replace": { "contao-legacy/dc_multilingual": "self.version" }, "type": "contao-module", "extra": { "contao": { "sources": { "": "system/modules/dc_multilingual" } } }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0+" ], "authors": [ { "name": "terminal42 gmbh", "homepage": "http://www.terminal42.ch" }, { "name": "Codefog", "homepage": "http://codefog.pl" } ], "description": "DC_Multilingual extension for Contao Open Source CMS", "keywords": [ "contao", "driver", "multilingual" ], "time": "2017-03-07T18:14:15+00:00" }, { "name": "terminal42/dcawizard", "version": "2.4.4", "source": { "type": "git", "url": "https://github.com/terminal42/contao-dcawizard.git", "reference": "8df42452ed27144eb11233f0da11544e539a7baa" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/terminal42/contao-dcawizard/zipball/8df42452ed27144eb11233f0da11544e539a7baa", "reference": "8df42452ed27144eb11233f0da11544e539a7baa", "shasum": "" }, "require": { "codefog/contao-haste": "4.*", "contao-community-alliance/composer-plugin": "~2.4 || ~3.0", "contao/core-bundle": "~3.2 || ~4.1", "php": "^5.3.2 || ^7.0" }, "replace": { "contao-legacy/dcawizard": "self.version" }, "type": "contao-module", "extra": { "contao": { "sources": { "": "system/modules/dcawizard" } } }, "autoload": { "classmap": [ "widgets" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0+" ], "authors": [ { "name": "terminal42 gmbh", "homepage": "http://terminal42.ch" } ], "description": "dcaWizard extension for Contao Open Source CMS", "keywords": [ "contao", "dca", "dcawizard", "wizard" ], "time": "2018-05-29T11:25:09+00:00" }, { "name": "terminal42/header-replay-bundle", "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/terminal42/header-replay-bundle.git", "reference": "e05a0d26c52609f3f08948ed5c1f5475febfd2b7" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/terminal42/header-replay-bundle/zipball/e05a0d26c52609f3f08948ed5c1f5475febfd2b7", "reference": "e05a0d26c52609f3f08948ed5c1f5475febfd2b7", "shasum": "" }, "require": { "friendsofsymfony/http-cache": "^2.1", "friendsofsymfony/http-cache-bundle": "^2.1", "php": "^5.6 | ^7.0", "symfony/options-resolver": "^3.3 | ^4.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.1", "leofeyer/optimize-native-functions-fixer": "^1.1", "php-coveralls/php-coveralls": "^2.1", "php-http/guzzle6-adapter": "^1.1", "phpunit/phpunit": "^5.7" }, "type": "symfony-bundle", "autoload": { "psr-4": { "Terminal42\\HeaderReplay\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Yanick Witschi", "email": "yanick.witschi@terminal42.ch" } ], "description": "Send preflight requests for user context headers and replay them for reverse proxy support.", "time": "2018-06-25T08:10:01+00:00" }, { "name": "terminal42/notification_center", "version": "1.4.5", "source": { "type": "git", "url": "https://github.com/terminal42/contao-notification_center.git", "reference": "73e91d82f9153ccff3cfeb3ebf7734a1b0a2bb7c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/terminal42/contao-notification_center/zipball/73e91d82f9153ccff3cfeb3ebf7734a1b0a2bb7c", "reference": "73e91d82f9153ccff3cfeb3ebf7734a1b0a2bb7c", "shasum": "" }, "require": { "codefog/contao-haste": "^4.14.1", "contao-community-alliance/composer-plugin": "~2.4 || ~3.0", "contao/core-bundle": "~3.2 || ~4.1", "php": ">=5.4", "terminal42/dcawizard": "2.*" }, "replace": { "contao-legacy/notification_center": "self.version" }, "require-dev": { "cyberspectrum/contao-toolbox": "^0.7.2" }, "type": "contao-module", "extra": { "branch-alias": { "dev-develop": "1.4.x-dev" }, "contao": { "sources": { "": "system/modules/notification_center" }, "transifex": { "project": "notification_center", "prefix": "master-notification_center-", "languages_cto": "languages", "languages_tx": ".tx" } } }, "autoload": { "psr-0": { "NotificationCenter\\": [ "library/" ] }, "classmap": [ "classes/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-3.0-or-later" ], "authors": [ { "name": "terminal42 gmbh", "homepage": "http://terminal42.ch" } ], "description": "Notification Center extension for Contao Open Source CMS", "keywords": [ "center", "contao", "notification" ], "time": "2018-06-04T10:32:25+00:00" }, { "name": "true/punycode", "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/true/php-punycode.git", "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/true/php-punycode/zipball/a4d0c11a36dd7f4e7cd7096076cab6d3378a071e", "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e", "shasum": "" }, "require": { "php": ">=5.3.0", "symfony/polyfill-mbstring": "^1.3" }, "require-dev": { "phpunit/phpunit": "~4.7", "squizlabs/php_codesniffer": "~2.0" }, "type": "library", "autoload": { "psr-4": { "TrueBV\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Renan Gonçalves", "email": "renan.saddam@gmail.com" } ], "description": "A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA)", "homepage": "https://github.com/true/php-punycode", "keywords": [ "idna", "punycode" ], "time": "2016-11-16T10:37:54+00:00" }, { "name": "twig/twig", "version": "v1.35.4", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a", "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a", "shasum": "" }, "require": { "php": ">=5.3.3", "symfony/polyfill-ctype": "^1.8" }, "require-dev": { "psr/container": "^1.0", "symfony/debug": "^2.7", "symfony/phpunit-bridge": "^3.3" }, "type": "library", "extra": { "branch-alias": { "dev-master": "1.35-dev" } }, "autoload": { "psr-0": { "Twig_": "lib/" }, "psr-4": { "Twig\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com", "homepage": "http://fabien.potencier.org", "role": "Lead Developer" }, { "name": "Armin Ronacher", "email": "armin.ronacher@active-4.com", "role": "Project Founder" }, { "name": "Twig Team", "homepage": "https://twig.symfony.com/contributors", "role": "Contributors" } ], "description": "Twig, the flexible, fast, and secure template language for PHP", "homepage": "https://twig.symfony.com", "keywords": [ "templating" ], "time": "2018-07-13T07:12:17+00:00" }, { "name": "ua-parser/uap-php", "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/ua-parser/uap-php.git", "reference": "c8b31e5b8215a0c6dab4dd304050526a1907b17c" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/c8b31e5b8215a0c6dab4dd304050526a1907b17c", "reference": "c8b31e5b8215a0c6dab4dd304050526a1907b17c", "shasum": "" }, "require": { "php": ">=5.3.0", "symfony/console": "^2.0 || ^3.0 || ^4.0", "symfony/filesystem": "^2.0 || ^3.0 || ^4.0", "symfony/finder": "^2.0 || ^3.0 || ^4.0", "symfony/yaml": "^2.0 || ^3.0 || ^4.0" }, "require-dev": { "phpunit/phpunit": "^4.0 || ^5.0" }, "bin": [ "bin/uaparser" ], "type": "library", "autoload": { "psr-4": { "UAParser\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Lars Strojny", "email": "lars@strojny.net" }, { "name": "Dave Olsen", "email": "dmolsen@gmail.com" } ], "description": "A multi-language port of Browserscope's user agent parser.", "time": "2017-12-13T11:03:50+00:00" }, { "name": "webmozart/assert", "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", "reference": "0df1908962e7a3071564e857d86874dad1ef204a" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", "reference": "0df1908962e7a3071564e857d86874dad1ef204a", "shasum": "" }, "require": { "php": "^5.3.3 || ^7.0" }, "require-dev": { "phpunit/phpunit": "^4.6", "sebastian/version": "^1.0.1" }, "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": "2018-01-29T19:49:41+00:00" }, { "name": "webmozart/path-util", "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/webmozart/path-util.git", "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" }, "dist": { "type": "zip", "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", "shasum": "" }, "require": { "php": ">=5.3.3", "webmozart/assert": "~1.0" }, "require-dev": { "phpunit/phpunit": "^4.6", "sebastian/version": "^1.0.1" }, "type": "library", "extra": { "branch-alias": { "dev-master": "2.3-dev" } }, "autoload": { "psr-4": { "Webmozart\\PathUtil\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { "name": "Bernhard Schussek", "email": "bschussek@gmail.com" } ], "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", "time": "2015-12-17T08:42:14+00:00" } ], "packages-dev": [], "aliases": [], "minimum-stability": "stable", "stability-flags": [], "prefer-stable": false, "prefer-lowest": false, "platform": { "php": "^5.6 || ^7.0" }, "platform-dev": [] } ```
dmolineus commented 6 years ago

Ich konnte das Problem in einer Installation auch nachvollziehen. Hier liegt es an einer Erweiterung, ctscto35, die selbst symfony/yaml mitbringt. Da die Erweiterung manuell installiert ist, bitte checkt doch mal in euren Installationen, ob unter system/modules diese auch existiert. Scheint eine Erweiterung von einem Theme-Hersteller zu sein.

@akroii Bei dir ist es ctscore, das auch das gleiche Problem hat.

Klingt also nach einem Problem des Theme-Herstellers. Daher sollte deren Support das Problem lösen. Vielleicht kann @es-IT weiterhelfen, der als Autor in den Modulen genannt wird.

fritzmg commented 6 years ago

@akroii bitte wieder die composer.lock aus dem Ticket entfernen 😁

aschempp commented 6 years ago

Or better hide it with a collapsible block 😉 https://github.com/dear-github/dear-github/issues/166#issuecomment-236342209

eS-IT commented 6 years ago

@dmolineus Danke für den Hinweis. Wir sind dran.

ausi commented 6 years ago

Ich denke das Ticket kann geschlossen werden. Der Fehler liegt an der doppelten Installation der Yaml-Komponente unter system/modules/ctscore/vendor/symfony/yaml und vendor/symfony/symfony und hängt somit nicht mit dem core-bundle zusammen.

eS-IT commented 6 years ago

Die doppelten Symfony-Komponenten sind bei uns entfernt. Hatte wohl auch nichts mit Contao zu tun. Leider ist der Fehler bei uns nicht reproduzierbar, so dass eine abschließenden Beurteilung schwer ist.

fritzmg commented 6 years ago

Ich denke der Fehler ist nicht eindeutig reproduzierbar, weil man nicht vorhersehen kann, was vom Autoloader zuerst geladen wird.