Ergebnis 1 bis 18 von 18

Thema: Fehler bei Update auf 4.11

  1. #1
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard Fehler bei Update auf 4.11

    Hallo,

    wenn ich auf der Kommandozeile mit "composer update" von der 4.10.7 auf die 4.11 updaten möchte, bekomme ich folgende Fehlermeldung im Terminal:

    Code:
    In ParameterBag.php line 98:
    
      You have requested a non-existent parameter "kernel.root_dir". Did you mean
       one of these: "kernel.project_dir", "kernel.build_dir", "kernel.cache_dir"
      , "kernel.logs_dir"?
    Das ist meine composer.json:
    Code:
    {
        "name": "contao/managed-edition",
        "type": "project",
        "description": "Contao Open Source CMS",
        "license": "LGPL-3.0-or-later",
        "authors": [
            {
                "name": "Leo Feyer",
                "homepage": "https://github.com/leofeyer"
            }
        ],
        "require": {
            "php": "^7.2",
            "contao/calendar-bundle": "^4.9",
            "contao/comments-bundle": "^4.9",
            "contao/conflicts": "@dev",
            "contao/faq-bundle": "^4.9",
            "contao/listing-bundle": "^4.9",
            "contao/manager-bundle": "4.11.*",
            "contao/news-bundle": "^4.9",
            "contao/newsletter-bundle": "^4.9",
            "do-while/contao-backupdb-bundle": "^1.3",
            "omosde/contao-om-backend": "^1.3",
            "madeyourday/contao-rocksolid-custom-elements": "^2.2",
            "codefog/contao-cookiebar": "^2.1",
            "codefog/contao-news_categories": "^3.1",
            "georgpreissl/facelift": "^1.0",
            "madeyourday/contao-rocksolid-icon-picker": "^2.0",
            "terminal42/notification_center": "^1.5",
            "delahaye/dlh_googlemaps": "^2.4",
            "erdmannfreunde/contao-grid-bundle": "^1.0",
            "codefog/contao-widget_tree_picker": "^2.4",
            "erdmannfreunde/onepage-navigation": "^1.1"
        },
        "conflict": {
            "contao-components/installer": "<1.3",
            "contao/core-bundle": "<4.4.8"
        },
        "extra": {
            "branch-alias": {
                "dev-4.4": "4.4.x-dev"
            },
            "contao-component-dir": "assets"
        },
        "scripts": {
            "post-install-cmd": [
                "Contao\\ManagerBundle\\Composer\\ScriptHandler::initializeApplication"
            ],
            "post-update-cmd": [
                "Contao\\ManagerBundle\\Composer\\ScriptHandler::initializeApplication"
            ]
        },
        "autoload": {
            "psr-4": {
                "App\\": "src/"
            }
        },
        "config": {
            "platform": {
                "php": "7.3.24"
            }
        }
    }
    ... hat jemand von euch eine Idee woran das liegen kann?

    Danke!

  2. #2
    Community-Moderator
    Wandelndes Contao-Lexikon
    Avatar von Spooky
    Registriert seit
    12.04.2012.
    Ort
    Scotland
    Beiträge
    37.191
    Partner-ID
    10107

    Standard

    Das liegt an einer Erweiterung, die nicht mit Symfony 5 kompatibel ist. Führe mal composer install -vvv aus.
    » sponsor me via GitHub or Revolut

  3. #3
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard

    Mit "composer install -vvv" bekomme ich leider die gleiche Fehlermeldung.

    Hier ein Screenshot der Fehlermeldung, falls das bei der Problemsuche hilft:
    Bildschirmfoto 2021-03-15 um 17.17.25.png

  4. #4
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard

    Und das hier ist ein Screenshot der Fehlermeldung die ich bei "composer update" bekomme:

    Bildschirmfoto 2021-03-15 um 17.21.42.png

    ... da steht ja folgende Anweisung:
    Code:
    Please edit your root composer.json and set "post-update-cmd" to "@php vendor/bin/contao-setup --ansi" instead of using "ScriptHandler::initializeApplication()".
    ... heißt das ich muss meine composer.json auf folgendes umändern:
    Code:
    ...
        "scripts": {
            "post-install-cmd": [
                "Contao\\ManagerBundle\\Composer\\ScriptHandler::initializeApplication"
            ],
            "post-update-cmd": [
                "@php vendor/bin/contao-setup --ansi"
            ]
        },
    ...
    ... und dann nochmal "composer update" ausführen?

  5. #5
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard

    Habs jetzt so probiert:
    Code:
        "scripts": {
            "post-install-cmd": [
                "@php vendor/bin/contao-setup --ansi"
            ],
            "post-update-cmd": [
                "@php vendor/bin/contao-setup --ansi"
            ]
        },
    ... wieder der gleiche Fehler:
    Bildschirmfoto 2021-03-15 um 17.37.07.png

    ... ich bin ratlos

  6. #6
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard

    Backend ist jetzt natürlich nicht erreichbar.
    Wie kann ich wieder downgraden?

    Einfach das:
    Code:
    "contao/manager-bundle": "4.11.*",
    ... durch das:
    Code:
    "contao/manager-bundle": "4.10.*",
    ... ersetzen?

  7. #7
    Community-Moderator
    Wandelndes Contao-Lexikon
    Avatar von Spooky
    Registriert seit
    12.04.2012.
    Ort
    Scotland
    Beiträge
    37.191
    Partner-ID
    10107

    Standard

    Zitat Zitat von thesweetg Beitrag anzeigen
    Mit "composer install -vvv" bekomme ich leider die gleiche Fehlermeldung.
    Mit -vvv solltest du eigentlich einen genauen Stack Trace bekommen, damit du siehst, wo der Fehler auftritt.



    Zitat Zitat von thesweetg Beitrag anzeigen
    ... heißt das ich muss meine composer.json auf folgendes umändern:
    Code:
    ...
        "scripts": {
            "post-install-cmd": [
                "Contao\\ManagerBundle\\Composer\\ScriptHandler::initializeApplication"
            ],
            "post-update-cmd": [
                "@php vendor/bin/contao-setup --ansi"
            ]
        },
    ...
    ... und dann nochmal "composer update" ausführen?
    Nein, wenn dann so:
    Code:
    ...
        "scripts": {
            "post-install-cmd": [
                "@php vendor/bin/contao-setup --ansi"
            ],
            "post-update-cmd": [
                "@php vendor/bin/contao-setup --ansi"
            ]
        },
    ...
    » sponsor me via GitHub or Revolut

  8. #8
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard

    Ich hab jetzt eine composer.json von einer komplett jungfräulichen 4.11er Installation verwendet.
    Da ist "composer update" dann erfolgreich durchgelaufen.

    Hab dann jedes zusätzliche Bundle per "composer require ..." nachinstalliert.

    Hat bei allen geklappt – bis auf die beiden hier:
    do-while/contao-backupdb-bundle
    omosde/contao-om-backend


    Hier die Fehler die da kommen:
    Code:
    Your requirements could not be resolved to an installable set of packages.
    
      Problem 1
        - do-while/contao-backupdb-bundle[1.4.0, ..., 1.4.2] require symfony/routing ^3.0 || ^4.0 -> found symfony/routing[v3.0.0, ..., v3.4.47, v4.0.0, ..., v4.4.20] but the package is fixed to v5.2.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
        - Root composer.json requires do-while/contao-backupdb-bundle ^1.4 -> satisfiable by do-while/contao-backupdb-bundle[1.4.0, 1.4.1, 1.4.2].
    
    Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
    
    Installation failed, reverting ./composer.json and ./composer.lock to their original content.
    Code:
    Your requirements could not be resolved to an installable set of packages.
    
      Problem 1
        - omosde/contao-om-backend[1.6.0, ..., 1.6.11] require wa72/htmlpagedom ^1.3 -> satisfiable by wa72/htmlpagedom[v1.3.0, ..., v1.4.2].
        - wa72/htmlpagedom v1.3.0 requires symfony/dom-crawler ^2.3 <2.8 | ^2.8.3 | ^3.0.1 -> found symfony/dom-crawler[v2.3.0, ..., v2.8.52, v3.0.1, ..., v3.4.47] but the package is fixed to v5.2.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
        - wa72/htmlpagedom v1.3.1 requires symfony/dom-crawler ^2.3 <2.8 | ^2.8.3 | ^3.0.1 | ^4 -> found symfony/dom-crawler[v2.3.0, ..., v2.8.52, v3.0.1, ..., v3.4.47, v4.0.0, ..., v4.4.20] but the package is fixed to v5.2.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
        - wa72/htmlpagedom[v1.3.2, ..., v1.4.2] require symfony/dom-crawler ^2.3 <2.8 | ^2.8.3 | ^3.0.1 | ^4 <4.3 -> found symfony/dom-crawler[v2.3.0, ..., v2.8.52, v3.0.1, ..., v3.4.47, v4.0.0, ..., v4.2.12] but the package is fixed to v5.2.4 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
        - Root composer.json requires omosde/contao-om-backend ^1.6 -> satisfiable by omosde/contao-om-backend[1.6.0, ..., 1.6.11].
    
    Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
    
    Installation failed, reverting ./composer.json and ./composer.lock to their original content.
    ... heißt das man kann diese beiden Bundles mit Contao 4.11 nicht verwenden?

  9. #9
    Community-Moderator
    Wandelndes Contao-Lexikon
    Avatar von Spooky
    Registriert seit
    12.04.2012.
    Ort
    Scotland
    Beiträge
    37.191
    Partner-ID
    10107

    Standard

    Doch, du musst die Pakete hinzufügen und dann eine vollständige Paketaktualisierung machen.
    » sponsor me via GitHub or Revolut

  10. #10
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard

    Es liegt offenbar an "omosde/contao-om-backend".
    Egal ob ich dieses Bundle selbst in der composer.json eintrage oder mit "require" installieren möchte, es kommt immer die Fehlermeldung.
    ... egal, kann einstweilen ohne das Bundle leben.

    Hab nun aber ein anderes Problem:
    Die lokale 4.11er Version läuft nun.
    Wenn ich jedoch die ...
    - composer.json und composer.lock per FTP in die Remote-Version hochlade
    - und dann per SSH ein "composer install" probiere
    ... bekomme ich diesen Wulst an Fehler:
    Bildschirmfoto 2021-03-15 um 18.39.22.png

    ... was bedeutet das nun wieder?

    Bisher hat diese Methode immer sehr gut funktioniert.

  11. #11
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard

    ... seltsam:
    Ein "composer install" mit dem Contao-Manager (d.h. ein Klick auf den Button "Abhängigkeiten installieren") funktioniert.
    Ein "composer install" per SSH führt zur obigen Fehlermeldung.

  12. #12
    Community-Moderator
    Wandelndes Contao-Lexikon
    Avatar von Spooky
    Registriert seit
    12.04.2012.
    Ort
    Scotland
    Beiträge
    37.191
    Partner-ID
    10107

    Standard

    Zitat Zitat von thesweetg Beitrag anzeigen
    Es liegt offenbar an "omosde/contao-om-backend".
    Dann gleich hier melden: https://github.com/OMOSde/contao-om-backend/issues

    Ich glaube der Fehler wurde auch schon mal auf Slack gemeldet - aber es als Ticket festzuhalten schadet auf jeden Fall nicht.
    Geändert von Spooky (15.03.2021 um 18:36 Uhr)
    » sponsor me via GitHub or Revolut

  13. #13
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard

    Alles klar, werde ich machen.
    Danke Spooky.

    Hast du ev. einen Verdacht was die oben angesprochene Fehlermeldungsirgendwasorgie nach dem "composer install" bedeutet?
    D.h. das hier:
    Code:
      ^2.4.4 || ^3.0"},"suggest":{"doctrine\/orm":"To enable support for the ORM entities (^2.5)","doctrine\/phpcr-bundle":"To enabl
      e support for the PHPCR ODM documents","doctrine\/phpcr-odm":"To enable support for the PHPCR ODM documents (^1.4)"},"time":"2
      021-03-09T10:42:09+00:00","type":"symfony-bundle","extra":{"branch-alias":{"dev-master":"2.x-dev"}},"installation-source":"dis
      t","autoload":{"psr-4":{"Symfony\\Cmf\\Bundle\\RoutingBundle\\":"src\/"}},"notification-url":"https:\/\/packagist.org\/downloa
      ds\/","license":["MIT"],"authors":[{"name":"Symfony CMF Community","homepage":"https:\/\/github.com\/symfony-cmf\/RoutingBundl
      e\/contributors"}],"description":"Symfony RoutingBundle","homepage":"http:\/\/cmf.symfony.com","keywords":["database","routing
      "],"support":{"issues":"https:\/\/github.com\/symfony-cmf\/routing-bundle\/issues","source":"https:\/\/github.com\/symfony-cmf
      \/routing-bundle\/tree\/2.5.0"},"install-path":"..\/symfony-cmf\/routing-bundle"},{"name":"symfony\/asset","version":"v5.2.4",
      "version_normalized":"5.2.4.0","source":{"type":"git","url":"https:\/\/github.com\/symfony\/asset.git","reference":"54a42aa50f
      9359d1184bf7e954521b45ca3d5828"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/repos\/symfony\/asset\/zipball\/54a42aa
      50f9359d1184bf7e954521b45ca3d5828","reference":"54a42aa50f9359d1184bf7e954521b45ca3d5828","shasum":""},"require":{"php":">=7.2
      .5"},"require-dev":{"symfony\/http-client":"^4.4|^5.0","symfony\/http-foundation":"^4.4|^5.0","symfony\/http-kernel":"^4.4|^5.
      0"},"suggest":{"symfony\/http-foundation":""},"time":"2021-01-27T10:01:46+00:00","type":"library","installation-source":"dist"
      ,"autoload":{"psr-4":{" ...
    Ist da ev. bei Mittwald was falsch konfiguriert.
    Denn das ist meine erste 4.11er Seite bei Mittwald.

    ... aber warum gehts dann mit dem Manager?

  14. #14
    Community-Moderator
    Wandelndes Contao-Lexikon
    Avatar von Spooky
    Registriert seit
    12.04.2012.
    Ort
    Scotland
    Beiträge
    37.191
    Partner-ID
    10107

    Standard

    Poste die gesamte Konsolenausgabe.
    » sponsor me via GitHub or Revolut

  15. #15
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard

    Code:
      fabien@symfony.com"},{"name":"Symfony Community","homepage":"https:\/\/symf
      ony.com\/contributors"}],"description":"Provides an improved replacement fo
      r the array_replace PHP function","homepage":"https:\/\/symfony.com","keywo
      rds":["config","configuration","options"],"support":{"source":"https:\/\/gi
      thub.com\/symfony\/options-resolver\/tree\/v5.2.4"},"funding":[{"url":"http
      s:\/\/symfony.com\/sponsor","type":"custom"},{"url":"https:\/\/github.com\/
      fabpot","type":"github"},{"url":"https:\/\/tidelift.com\/funding\/github\/p
      ackagist\/symfony\/symfony","type":"tidelift"}],"install-path":"..\/symfony
      \/options-resolver"},{"name":"symfony\/polyfill-ctype","version":"v1.22.1",
      "version_normalized":"1.22.1.0","source":{"type":"git","url":"https:\/\/git
      hub.com\/symfony\/polyfill-ctype.git","reference":"c6c942b1ac76c82448322025
      e084cadc56048b4e"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/re
      pos\/symfony\/polyfill-ctype\/zipball\/c6c942b1ac76c82448322025e084cadc5604
      8b4e","reference":"c6c942b1ac76c82448322025e084cadc56048b4e","shasum":""},"
      require":{"php":">=7.1"},"suggest":{"ext-ctype":"For best performance"},"ti
      me":"2021-01-07T16:49:33+00:00","type":"library","extra":{"branch-alias":{"
      dev-main":"1.22-dev"},"thanks":{"name":"symfony\/polyfill","url":"https:\/\
      /github.com\/symfony\/polyfill"}},"installation-source":"dist","autoload":{
      "psr-4":{"Symfony\\Polyfill\\Ctype\\":""},"files":["bootstrap.php"]},"notif
      ication-url":"https:\/\/packagist.org\/downloads\/","license":["MIT"],"auth
      ors":[{"name":"Gert de Pagter","email":"BackEndTea@gmail.com"},{"name":"Sym
      fony Community","homepage":"https:\/\/symfony.com\/contributors"}],"descrip
      tion":"Symfony polyfill for ctype functions","homepage":"https:\/\/symfony.
      com","keywords":["compatibility","ctype","polyfill","portable"],"support":{
      "source":"https:\/\/github.com\/symfony\/polyfill-ctype\/tree\/v1.22.1"},"f
      unding":[{"url":"https:\/\/symfony.com\/sponsor","type":"custom"},{"url":"h
      ttps:\/\/github.com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.co
      m\/funding\/github\/packagist\/symfony\/symfony","type":"tidelift"}],"insta
      ll-path":"..\/symfony\/polyfill-ctype"},{"name":"symfony\/polyfill-intl-gra
      pheme","version":"v1.22.1","version_normalized":"1.22.1.0","source":{"type"
      :"git","url":"https:\/\/github.com\/symfony\/polyfill-intl-grapheme.git","r
      eference":"5601e09b69f26c1828b13b6bb87cb07cddba3170"},"dist":{"type":"zip",
      "url":"https:\/\/api.github.com\/repos\/symfony\/polyfill-intl-grapheme\/zi
      pball\/5601e09b69f26c1828b13b6bb87cb07cddba3170","reference":"5601e09b69f26
      c1828b13b6bb87cb07cddba3170","shasum":""},"require":{"php":">=7.1"},"sugges
      t":{"ext-intl":"For best performance"},"time":"2021-01-22T09:19:47+00:00","
      type":"library","extra":{"branch-alias":{"dev-main":"1.22-dev"},"thanks":{"
      name":"symfony\/polyfill","url":"https:\/\/github.com\/symfony\/polyfill"}}
      ,"installation-source":"dist","autoload":{"psr-4":{"Symfony\\Polyfill\\Intl
      \\Grapheme\\":""},"files":["bootstrap.php"]},"notification-url":"https:\/\/
      packagist.org\/downloads\/","license":["MIT"],"authors":[{"name":"Nicolas G
      rekas","email":"p@tchwork.com"},{"name":"Symfony Community","homepage":"htt
      ps:\/\/symfony.com\/contributors"}],"description":"Symfony polyfill for int
      l's grapheme_* functions","homepage":"https:\/\/symfony.com","keywords":["c
      ompatibility","grapheme","intl","polyfill","portable","shim"],"support":{"s
      ource":"https:\/\/github.com\/symfony\/polyfill-intl-grapheme\/tree\/v1.22.
      1"},"funding":[{"url":"https:\/\/symfony.com\/sponsor","type":"custom"},{"u
      rl":"https:\/\/github.com\/fabpot","type":"github"},{"url":"https:\/\/tidel
      ift.com\/funding\/github\/packagist\/symfony\/symfony","type":"tidelift"}],
      "install-path":"..\/symfony\/polyfill-intl-grapheme"},{"name":"symfony\/pol
      yfill-intl-idn","version":"v1.22.1","version_normalized":"1.22.1.0","source
      ":{"type":"git","url":"https:\/\/github.com\/symfony\/polyfill-intl-idn.git
      ","reference":"2d63434d922daf7da8dd863e7907e67ee3031483"},"dist":{"type":"z
      ip","url":"https:\/\/api.github.com\/repos\/symfony\/polyfill-intl-idn\/zip
      ball\/2d63434d922daf7da8dd863e7907e67ee3031483","reference":"2d63434d922daf
      7da8dd863e7907e67ee3031483","shasum":""},"require":{"php":">=7.1","symfony\
      /polyfill-intl-normalizer":"^1.10","symfony\/polyfill-php72":"^1.10"},"sugg
      est":{"ext-intl":"For best performance"},"time":"2021-01-22T09:19:47+00:00"
      ,"type":"library","extra":{"branch-alias":{"dev-main":"1.22-dev"},"thanks":
      {"name":"symfony\/polyfill","url":"https:\/\/github.com\/symfony\/polyfill"
      }},"installation-source":"dist","autoload":{"psr-4":{"Symfony\\Polyfill\\In
      tl\\Idn\\":""},"files":["bootstrap.php"]},"notification-url":"https:\/\/pac
      kagist.org\/downloads\/","license":["MIT"],"authors":[{"name":"Laurent Bass
      in","email":"laurent@bassin.info"},{"name":"Trevor Rowbotham","email":"trev
      or.rowbotham@pm.me"},{"name":"Symfony Community","homepage":"https:\/\/symf
      ony.com\/contributors"}],"description":"Symfony polyfill for intl's idn_to_
      ascii and idn_to_utf8 functions","homepage":"https:\/\/symfony.com","keywor
      ds":["compatibility","idn","intl","polyfill","portable","shim"],"support":{
      "source":"https:\/\/github.com\/symfony\/polyfill-intl-idn\/tree\/v1.22.1"}
      ,"funding":[{"url":"https:\/\/symfony.com\/sponsor","type":"custom"},{"url"
      :"https:\/\/github.com\/fabpot","type":"github"},{"url":"https:\/\/tidelift
      .com\/funding\/github\/packagist\/symfony\/symfony","type":"tidelift"}],"in
      stall-path":"..\/symfony\/polyfill-intl-idn"},{"name":"symfony\/polyfill-in
      tl-normalizer","version":"v1.22.1","version_normalized":"1.22.1.0","source"
      :{"type":"git","url":"https:\/\/github.com\/symfony\/polyfill-intl-normaliz
      er.git","reference":"43a0283138253ed1d48d352ab6d0bdb3f809f248"},"dist":{"ty
      pe":"zip","url":"https:\/\/api.github.com\/repos\/symfony\/polyfill-intl-no
      rmalizer\/zipball\/43a0283138253ed1d48d352ab6d0bdb3f809f248","reference":"4
      3a0283138253ed1d48d352ab6d0bdb3f809f248","shasum":""},"require":{"php":">=7
      .1"},"suggest":{"ext-intl":"For best performance"},"time":"2021-01-22T09:19
      :47+00:00","type":"library","extra":{"branch-alias":{"dev-main":"1.22-dev"}
      ,"thanks":{"name":"symfony\/polyfill","url":"https:\/\/github.com\/symfony\
      /polyfill"}},"installation-source":"dist","autoload":{"psr-4":{"Symfony\\Po
      lyfill\\Intl\\Normalizer\\":""},"files":["bootstrap.php"],"classmap":["Reso
      urces\/stubs"]},"notification-url":"https:\/\/packagist.org\/downloads\/","
      license":["MIT"],"authors":[{"name":"Nicolas Grekas","email":"p@tchwork.com
      "},{"name":"Symfony Community","homepage":"https:\/\/symfony.com\/contribut
      ors"}],"description":"Symfony polyfill for intl's Normalizer class and rela
      ted functions","homepage":"https:\/\/symfony.com","keywords":["compatibilit
      y","intl","normalizer","polyfill","portable","shim"],"support":{"source":"h
      ttps:\/\/github.com\/symfony\/polyfill-intl-normalizer\/tree\/v1.22.1"},"fu
      nding":[{"url":"https:\/\/symfony.com\/sponsor","type":"custom"},{"url":"ht
      tps:\/\/github.com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.com
      \/funding\/github\/packagist\/symfony\/symfony","type":"tidelift"}],"instal
      l-path":"..\/symfony\/polyfill-intl-normalizer"},{"name":"symfony\/polyfill
      -mbstring","version":"v1.22.1","version_normalized":"1.22.1.0","source":{"t
      ype":"git","url":"https:\/\/github.com\/symfony\/polyfill-mbstring.git","re
      ference":"5232de97ee3b75b0360528dae24e73db49566ab1"},"dist":{"type":"zip","
      url":"https:\/\/api.github.com\/repos\/symfony\/polyfill-mbstring\/zipball\
      /5232de97ee3b75b0360528dae24e73db49566ab1","reference":"5232de97ee3b75b0360
      528dae24e73db49566ab1","shasum":""},"require":{"php":">=7.1"},"suggest":{"e
      xt-mbstring":"For best performance"},"time":"2021-01-22T09:19:47+00:00","ty
      pe":"library","extra":{"branch-alias":{"dev-main":"1.22-dev"},"thanks":{"na
      me":"symfony\/polyfill","url":"https:\/\/github.com\/symfony\/polyfill"}},"
      installation-source":"dist","autoload":{"psr-4":{"Symfony\\Polyfill\\Mbstri
      ng\\":""},"files":["bootstrap.php"]},"notification-url":"https:\/\/packagis
      t.org\/downloads\/","license":["MIT"],"authors":[{"name":"Nicolas Grekas","
      email":"p@tchwork.com"},{"name":"Symfony Community","homepage":"https:\/\/s
      ymfony.com\/contributors"}],"description":"Symfony polyfill for the Mbstrin
      g extension","homepage":"https:\/\/symfony.com","keywords":["compatibility"
      ,"mbstring","polyfill","portable","shim"],"support":{"source":"https:\/\/gi
      thub.com\/symfony\/polyfill-mbstring\/tree\/v1.22.1"},"funding":[{"url":"ht
      tps:\/\/symfony.com\/sponsor","type":"custom"},{"url":"https:\/\/github.com
      \/fabpot","type":"github"},{"url":"https:\/\/tidelift.com\/funding\/github\
      /packagist\/symfony\/symfony","type":"tidelift"}],"install-path":"..\/symfo
      ny\/polyfill-mbstring"},{"name":"symfony\/polyfill-php72","version":"v1.22.
      1","version_normalized":"1.22.1.0","source":{"type":"git","url":"https:\/\/
      github.com\/symfony\/polyfill-php72.git","reference":"cc6e6f9b39fe8075b3dab
      fbaf5b5f645ae1340c9"},"dist":{"type":"zip","url":"https:\/\/api.github.com\
      /repos\/symfony\/polyfill-php72\/zipball\/cc6e6f9b39fe8075b3dabfbaf5b5f645a
      e1340c9","reference":"cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9","shasum":""
      },"require":{"php":">=7.1"},"time":"2021-01-07T16:49:33+00:00","type":"libr
      ary","extra":{"branch-alias":{"dev-main":"1.22-dev"},"thanks":{"name":"symf
      ony\/polyfill","url":"https:\/\/github.com\/symfony\/polyfill"}},"installat
      ion-source":"dist","autoload":{"psr-4":{"Symfony\\Polyfill\\Php72\\":""},"f
      iles":["bootstrap.php"]},"notification-url":"https:\/\/packagist.org\/downl
      oads\/","license":["MIT"],"authors":[{"name":"Nicolas Grekas","email":"p@tc
      hwork.com"},{"name":"Symfony Community","homepage":"https:\/\/symfony.com\/
      contributors"}],"description":"Symfony polyfill backporting some PHP 7.2+ f
      eatures to lower PHP versions","homepage":"https:\/\/symfony.com","keywords
      ":["compatibility","polyfill","portable","shim"],"support":{"source":"https
      :\/\/github.com\/symfony\/polyfill-php72\/tree\/v1.22.1"},"funding":[{"url"
      :"https:\/\/symfony.com\/sponsor","type":"custom"},{"url":"https:\/\/github
      .com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.com\/funding\/git
      hub\/packagist\/symfony\/symfony","type":"tidelift"}],"install-path":"..\/s
      ymfony\/polyfill-php72"},{"name":"symfony\/polyfill-php73","version":"v1.22
      .1","version_normalized":"1.22.1.0","source":{"type":"git","url":"https:\/\
      /github.com\/symfony\/polyfill-php73.git","reference":"a678b42e92f86eca04b7
      fa4c0f6f19d097fb69e2"},"dist":{"type":"zip","url":"https:\/\/api.github.com
      \/repos\/symfony\/polyfill-php73\/zipball\/a678b42e92f86eca04b7fa4c0f6f19d0
      97fb69e2","reference":"a678b42e92f86eca04b7fa4c0f6f19d097fb69e2","shasum":"
      "},"require":{"php":">=7.1"},"time":"2021-01-07T16:49:33+00:00","type":"lib
      rary","extra":{"branch-alias":{"dev-main":"1.22-dev"},"thanks":{"name":"sym
      fony\/polyfill","url":"https:\/\/github.com\/symfony\/polyfill"}},"installa
      tion-source":"dist","autoload":{"psr-4":{"Symfony\\Polyfill\\Php73\\":""},"
      files":["bootstrap.php"],"classmap":["Resources\/stubs"]},"notification-url
      ":"https:\/\/packagist.org\/downloads\/","license":["MIT"],"authors":[{"nam
      e":"Nicolas Grekas","email":"p@tchwork.com"},{"name":"Symfony Community","h
      omepage":"https:\/\/symfony.com\/contributors"}],"description":"Symfony pol
      yfill backporting some PHP 7.3+ features to lower PHP versions","homepage":
      "https:\/\/symfony.com","keywords":["compatibility","polyfill","portable","
      shim"],"support":{"source":"https:\/\/github.com\/symfony\/polyfill-php73\/
      tree\/v1.22.1"},"funding":[{"url":"https:\/\/symfony.com\/sponsor","type":"
      custom"},{"url":"https:\/\/github.com\/fabpot","type":"github"},{"url":"htt
      ps:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/symfony","type":"
      tidelift"}],"install-path":"..\/symfony\/polyfill-php73"},{"name":"symfony\
      /polyfill-php80","version":"v1.22.1","version_normalized":"1.22.1.0","sourc
      e":{"type":"git","url":"https:\/\/github.com\/symfony\/polyfill-php80.git",
      "reference":"dc3063ba22c2a1fd2f45ed856374d79114998f91"},"dist":{"type":"zip
      ","url":"https:\/\/api.github.com\/repos\/symfony\/polyfill-php80\/zipball\
      /dc3063ba22c2a1fd2f45ed856374d79114998f91","reference":"dc3063ba22c2a1fd2f4
      5ed856374d79114998f91","shasum":""},"require":{"php":">=7.1"},"time":"2021-
      01-07T16:49:33+00:00","type":"library","extra":{"branch-alias":{"dev-main":
      "1.22-dev"},"thanks":{"name":"symfony\/polyfill","url":"https:\/\/github.co
      m\/symfony\/polyfill"}},"installation-source":"dist","autoload":{"psr-4":{"
      Symfony\\Polyfill\\Php80\\":""},"files":["bootstrap.php"],"classmap":["Reso
      urces\/stubs"]},"notification-url":"https:\/\/packagist.org\/downloads\/","
      license":["MIT"],"authors":[{"name":"Ion Bazan","email":"ion.bazan@gmail.co
      m"},{"name":"Nicolas Grekas","email":"p@tchwork.com"},{"name":"Symfony Comm
      unity","homepage":"https:\/\/symfony.com\/contributors"}],"description":"Sy
      mfony polyfill backporting some PHP 8.0+ features to lower PHP versions","h
      omepage":"https:\/\/symfony.com","keywords":["compatibility","polyfill","po
      rtable","shim"],"support":{"source":"https:\/\/github.com\/symfony\/polyfil
      l-php80\/tree\/v1.22.1"},"funding":[{"url":"https:\/\/symfony.com\/sponsor"
      ,"type":"custom"},{"url":"https:\/\/github.com\/fabpot","type":"github"},{"
      url":"https:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/symfony"
      ,"type":"tidelift"}],"install-path":"..\/symfony\/polyfill-php80"},{"name":
      "symfony\/process","version":"v5.2.4","version_normalized":"5.2.4.0","sourc
      e":{"type":"git","url":"https:\/\/github.com\/symfony\/process.git","refere
      nce":"313a38f09c77fbcdc1d223e57d368cea76a2fd2f"},"dist":{"type":"zip","url"
      :"https:\/\/api.github.com\/repos\/symfony\/process\/zipball\/313a38f09c77f
      bcdc1d223e57d368cea76a2fd2f","reference":"313a38f09c77fbcdc1d223e57d368cea7
      6a2fd2f","shasum":""},"require":{"php":">=7.2.5","symfony\/polyfill-php80":
      "^1.15"},"time":"2021-01-27T10:15:41+00:00","type":"library","installation-
      source":"dist","autoload":{"psr-4":{"Symfony\\Component\\Process\\":""},"ex
      clude-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":"Executes commands in sub-p
      rocesses","homepage":"https:\/\/symfony.com","support":{"source":"https:\/\
      /github.com\/symfony\/process\/tree\/v5.2.4"},"funding":[{"url":"https:\/\/
      symfony.com\/sponsor","type":"custom"},{"url":"https:\/\/github.com\/fabpot
      ","type":"github"},{"url":"https:\/\/tidelift.com\/funding\/github\/packagi
      st\/symfony\/symfony","type":"tidelift"}],"install-path":"..\/symfony\/proc
      ess"},{"name":"symfony\/property-access","version":"v5.2.4","version_normal
      ized":"5.2.4.0","source":{"type":"git","url":"https:\/\/github.com\/symfony
      \/property-access.git","reference":"3af8ed262bd3217512a13b023981fe68f36ad5f
      3"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/repos\/symfony\/p
      roperty-access\/zipball\/3af8ed262bd3217512a13b023981fe68f36ad5f3","referen
      ce":"3af8ed262bd3217512a13b023981fe68f36ad5f3","shasum":""},"require":{"php
      ":">=7.2.5","symfony\/deprecation-contracts":"^2.1","symfony\/polyfill-php8
      0":"^1.15","symfony\/property-info":"^5.2"},"require-dev":{"symfony\/cache"
      :"^4.4|^5.0"},"suggest":{"psr\/cache-implementation":"To cache access metho
      ds."},"time":"2021-01-27T10:15:41+00:00","type":"library","installation-sou
      rce":"dist","autoload":{"psr-4":{"Symfony\\Component\\PropertyAccess\\":""}
      ,"exclude-from-classmap":["\/Tests\/"]},"notification-url":"https:\/\/packa
      gist.org\/downloads\/","license":["MIT"],"authors":[{"name":"Fabien Potenci
      er","email":"fabien@symfony.com"},{"name":"Symfony Community","homepage":"h
      ttps:\/\/symfony.com\/contributors"}],"description":"Provides functions to
      read and write from\/to an object or array using a simple string notation",
      "homepage":"https:\/\/symfony.com","keywords":["access","array","extraction
      ","index","injection","object","property","property path","reflection"],"su
      pport":{"source":"https:\/\/github.com\/symfony\/property-access\/tree\/v5.
      2.4"},"funding":[{"url":"https:\/\/symfony.com\/sponsor","type":"custom"},{
      "url":"https:\/\/github.com\/fabpot","type":"github"},{"url":"https:\/\/tid
      elift.com\/funding\/github\/packagist\/symfony\/symfony","type":"tidelift"}
      ],"install-path":"..\/symfony\/property-access"},{"name":"symfony\/property
      -info","version":"v5.2.4","version_normalized":"5.2.4.0","source":{"type":"
      git","url":"https:\/\/github.com\/symfony\/property-info.git","reference":"
      7185bbc74e6f49c3f1b5936b4d9e4ca133921189"},"dist":{"type":"zip","url":"http
      s:\/\/api.github.com\/repos\/symfony\/property-info\/zipball\/7185bbc74e6f4
      9c3f1b5936b4d9e4ca133921189","reference":"7185bbc74e6f49c3f1b5936b4d9e4ca13
      3921189","shasum":""},"require":{"php":">=7.2.5","symfony\/deprecation-cont
      racts":"^2.1","symfony\/polyfill-php80":"^1.15","symfony\/string":"^5.1"},"
      conflict":{"phpdocumentor\/reflection-docblock":"<3.2.2","phpdocumentor\/ty
      pe-resolver":"<1.4.0","symfony\/dependency-injection":"<4.4"},"require-dev"
      :{"doctrine\/annotations":"^1.10.4","phpdocumentor\/reflection-docblock":"^
      3.0|^4.0|^5.0","symfony\/cache":"^4.4|^5.0","symfony\/dependency-injection"
      :"^4.4|^5.0","symfony\/serializer":"^4.4|^5.0"},"suggest":{"phpdocumentor\/
      reflection-docblock":"To use the PHPDoc","psr\/cache-implementation":"To ca
      che results","symfony\/doctrine-bridge":"To use Doctrine metadata","symfony
      \/serializer":"To use Serializer metadata"},"time":"2021-02-17T15:24:54+00:
      00","type":"library","installation-source":"dist","autoload":{"psr-4":{"Sym
      fony\\Component\\PropertyInfo\\":""},"exclude-from-classmap":["\/Tests\/"]}
      ,"notification-url":"https:\/\/packagist.org\/downloads\/","license":["MIT"
      ],"authors":[{"name":"K\u00e9vin Dunglas","email":"dunglas@gmail.com"},{"na
      me":"Symfony Community","homepage":"https:\/\/symfony.com\/contributors"}],
      "description":"Extracts information about PHP class' properties using metad
      ata of popular sources","homepage":"https:\/\/symfony.com","keywords":["doc
      trine","phpdoc","property","symfony","type","validator"],"support":{"source
      ":"https:\/\/github.com\/symfony\/property-info\/tree\/v5.2.4"},"funding":[
      {"url":"https:\/\/symfony.com\/sponsor","type":"custom"},{"url":"https:\/\/
      github.com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.com\/fundin
      g\/github\/packagist\/symfony\/symfony","type":"tidelift"}],"install-path":
      "..\/symfony\/property-info"},{"name":"symfony\/proxy-manager-bridge","vers
      ion":"v5.2.1","version_normalized":"5.2.1.0","source":{"type":"git","url":"
      https:\/\/github.com\/symfony\/proxy-manager-bridge.git","reference":"fba05
      1ee1cb00d1d40672ee2da842ba23c572576"},"dist":{"type":"zip","url":"https:\/\
      /api.github.com\/repos\/symfony\/proxy-manager-bridge\/zipball\/fba051ee1cb
      00d1d40672ee2da842ba23c572576","reference":"fba051ee1cb00d1d40672ee2da842ba
      23c572576","shasum":""},"require":{"composer\/package-versions-deprecated":
      "^1.8","ocramius\/proxy-manager":"~2.1","php":">=7.2.5","symfony\/dependenc
      y-injection":"^5.0"},"conflict":{"zendframework\/zend-eventmanager":"2.6.0"
      },"require-dev":{"symfony\/config":"^4.4|^5.0"},"time":"2020-11-12T22:25:33
      +00:00","type":"symfony-bridge","installation-source":"dist","autoload":{"p
      sr-4":{"Symfony\\Bridge\\ProxyManager\\":""},"exclude-from-classmap":["\/Te
      sts\/"]},"notification-url":"https:\/\/packagist.org\/downloads\/","license
      ":["MIT"],"authors":[{"name":"Fabien Potencier","email":"fabien@symfony.com
      "},{"name":"Symfony Community","homepage":"https:\/\/symfony.com\/contribut
      ors"}],"description":"Symfony ProxyManager Bridge","homepage":"https:\/\/sy
      mfony.com","support":{"source":"https:\/\/github.com\/symfony\/proxy-manage
      r-bridge\/tree\/v5.2.1"},"funding":[{"url":"https:\/\/symfony.com\/sponsor"
      ,"type":"custom"},{"url":"https:\/\/github.com\/fabpot","type":"github"},{"
      url":"https:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/symfony"
      ,"type":"tidelift"}],"install-path":"..\/symfony\/proxy-manager-bridge"},{"
      name":"symfony\/routing","version":"v4.4.20","version_normalized":"4.4.20.0
      ","source":{"type":"git","url":"https:\/\/github.com\/symfony\/routing.git"
      ,"reference":"69919991c845b34626664ddc9b3aef9d09d2a5df"},"dist":{"type":"zi
      p","url":"https:\/\/api.github.com\/repos\/symfony\/routing\/zipball\/69919
      991c845b34626664ddc9b3aef9d09d2a5df","reference":"69919991c845b34626664ddc9
      b3aef9d09d2a5df","shasum":""},"require":{"php":">=7.1.3"},"conflict":{"symf
      ony\/config":"<4.2","symfony\/dependency-injection":"<3.4","symfony\/yaml":
      "<3.4"},"require-dev":{"doctrine\/annotations":"^1.10.4","psr\/log":"~1.0",
      "symfony\/config":"^4.2|^5.0","symfony\/dependency-injection":"^3.4|^4.0|^5
      .0","symfony\/expression-language":"^3.4|^4.0|^5.0","symfony\/http-foundati
      on":"^3.4|^4.0|^5.0","symfony\/yaml":"^3.4|^4.0|^5.0"},"suggest":{"doctrine
      \/annotations":"For using the annotation loader","symfony\/config":"For usi
      ng the all-in-one router or any loader","symfony\/expression-language":"For
       using expression matching","symfony\/http-foundation":"For using a Symfony
       Request object","symfony\/yaml":"For using the YAML loader"},"time":"2021-
      02-22T15:37:04+00:00","type":"library","installation-source":"dist","autolo
      ad":{"psr-4":{"Symfony\\Component\\Routing\\":""},"exclude-from-classmap":[
      "\/Tests\/"]},"notification-url":"https:\/\/packagist.org\/downloads\/","li
      cense":["MIT"],"authors":[{"name":"Fabien Potencier","email":"fabien@symfon
      y.com"},{"name":"Symfony Community","homepage":"https:\/\/symfony.com\/cont
      ributors"}],"description":"Maps an HTTP request to a set of configuration v
      ariables","homepage":"https:\/\/symfony.com","keywords":["router","routing"
      ,"uri","url"],"support":{"source":"https:\/\/github.com\/symfony\/routing\/
      tree\/v4.4.20"},"funding":[{"url":"https:\/\/symfony.com\/sponsor","type":"
      custom"},{"url":"https:\/\/github.com\/fabpot","type":"github"},{"url":"htt
      ps:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/symfony","type":"
      tidelift"}],"install-path":"..\/symfony\/routing"},{"name":"symfony\/securi
      ty-bundle","version":"v4.4.20","version_normalized":"4.4.20.0","source":{"t
      ype":"git","url":"https:\/\/github.com\/symfony\/security-bundle.git","refe
      rence":"55a84ceb5f68e2dc836708e51f1ce1e5f7cecb7b"},"dist":{"type":"zip","ur
      l":"https:\/\/api.github.com\/repos\/symfony\/security-bundle\/zipball\/55a
      84ceb5f68e2dc836708e51f1ce1e5f7cecb7b","reference":"55a84ceb5f68e2dc836708e
      51f1ce1e5f7cecb7b","shasum":""},"require":{"ext-xml":"*","php":">=7.1.3","s
      ymfony\/config":"^4.2|^5.0","symfony\/dependency-injection":"^4.4|^5.0","sy
      mfony\/http-kernel":"^4.4","symfony\/security-core":"^4.4","symfony\/securi
      ty-csrf":"^4.2|^5.0","symfony\/security-guard":"^4.2|^5.0","symfony\/securi
      ty-http":"^4.4.5"},"conflict":{"symfony\/browser-kit":"<4.2","symfony\/cons
      ole":"<3.4","symfony\/framework-bundle":"<4.4","symfony\/ldap":"<4.4","symf
      ony\/twig-bundle":"<4.4"},"require-dev":{"doctrine\/doctrine-bundle":"^1.5|
      ^2.0","symfony\/asset":"^3.4|^4.0|^5.0","symfony\/browser-kit":"^4.2|^5.0",
      "symfony\/console":"^3.4|^4.0|^5.0","symfony\/css-selector":"^3.4|^4.0|^5.0
      ","symfony\/dom-crawler":"^3.4|^4.0|^5.0","symfony\/expression-language":"^
      3.4|^4.0|^5.0","symfony\/form":"^3.4|^4.0|^5.0","symfony\/framework-bundle"
      :"^4.4|^5.0","symfony\/process":"^3.4|^4.0|^5.0","symfony\/serializer":"^4.
      4|^5.0","symfony\/translation":"^3.4|^4.0|^5.0","symfony\/twig-bridge":"^3.
      4|^4.0|^5.0","symfony\/twig-bundle":"^4.4|^5.0","symfony\/validator":"^3.4|
      ^4.0|^5.0","symfony\/yaml":"^3.4|^4.0|^5.0","twig\/twig":"^1.43|^2.13|^3.0.
      4"},"time":"2021-02-04T11:13:36+00:00","type":"symfony-bundle","installatio
      n-source":"dist","autoload":{"psr-4":{"Symfony\\Bundle\\SecurityBundle\\":"
      "},"exclude-from-classmap":["\/Tests\/"]},"notification-url":"https:\/\/pac
      kagist.org\/downloads\/","license":["MIT"],"authors":[{"name":"Fabien Poten
      cier","email":"fabien@symfony.com"},{"name":"Symfony Community","homepage":
      "https:\/\/symfony.com\/contributors"}],"description":"Provides a tight int
      egration of the Security component into the Symfony full-stack framework","
      homepage":"https:\/\/symfony.com","support":{"source":"https:\/\/github.com
      \/symfony\/security-bundle\/tree\/v4.4.20"},"funding":[{"url":"https:\/\/sy
      mfony.com\/sponsor","type":"custom"},{"url":"https:\/\/github.com\/fabpot",
      "type":"github"},{"url":"https:\/\/tidelift.com\/funding\/github\/packagist
      \/symfony\/symfony","type":"tidelift"}],"install-path":"..\/symfony\/securi
      ty-bundle"},{"name":"symfony\/security-core","version":"v4.4.20","version_n
      ormalized":"4.4.20.0","source":{"type":"git","url":"https:\/\/github.com\/s
      ymfony\/security-core.git","reference":"e185d3918539a9a7c794c20baa18f5e0333
      a826d"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/repos\/symfon
      y\/security-core\/zipball\/e185d3918539a9a7c794c20baa18f5e0333a826d","refer
      ence":"e185d3918539a9a7c794c20baa18f5e0333a826d","shasum":""},"require":{"p
      hp":">=7.1.3","symfony\/event-dispatcher-contracts":"^1.1|^2","symfony\/ser
      vice-contracts":"^1.1.6|^2"},"conflict":{"symfony\/event-dispatcher":"<4.3|
      >=5","symfony\/ldap":"<4.4","symfony\/security-guard":"<4.3"},"require-dev"
      :{"psr\/container":"^1.0","psr\/log":"~1.0","symfony\/event-dispatcher":"^4
      .3","symfony\/expression-language":"^3.4|^4.0|^5.0","symfony\/http-foundati
      on":"^3.4|^4.0|^5.0","symfony\/ldap":"^4.4|^5.0","symfony\/translation":"^4
      .4|^5.0","symfony\/validator":"^3.4.31|^4.3.4|^5.0"},"suggest":{"psr\/conta
      iner-implementation":"To instantiate the Security class","symfony\/event-di
      spatcher":"","symfony\/expression-language":"For using the expression voter
      ","symfony\/http-foundation":"","symfony\/ldap":"For using LDAP integration
      ","symfony\/validator":"For using the user password constraint"},"time":"20
      21-03-03T16:55:00+00:00","type":"library","installation-source":"dist","aut
      oload":{"psr-4":{"Symfony\\Component\\Security\\Core\\":""},"exclude-from-c
      lassmap":["\/Tests\/"]},"notification-url":"https:\/\/packagist.org\/downlo
      ads\/","license":["MIT"],"authors":[{"name":"Fabien Potencier","email":"fab
      ien@symfony.com"},{"name":"Symfony Community","homepage":"https:\/\/symfony
      .com\/contributors"}],"description":"Symfony Security Component - Core Libr
      ary","homepage":"https:\/\/symfony.com","support":{"source":"https:\/\/gith
      ub.com\/symfony\/security-core\/tree\/v4.4.20"},"funding":[{"url":"https:\/
      \/symfony.com\/sponsor","type":"custom"},{"url":"https:\/\/github.com\/fabp
      ot","type":"github"},{"url":"https:\/\/tidelift.com\/funding\/github\/packa
      gist\/symfony\/symfony","type":"tidelift"}],"install-path":"..\/symfony\/se
      curity-core"},{"name":"symfony\/security-csrf","version":"v5.2.4","version_
      normalized":"5.2.4.0","source":{"type":"git","url":"https:\/\/github.com\/s
      ymfony\/security-csrf.git","reference":"e22ef49d5d3773014942f3dfe301b168a4a
      833dc"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/repos\/symfon
      y\/security-csrf\/zipball\/e22ef49d5d3773014942f3dfe301b168a4a833dc","refer
      ence":"e22ef49d5d3773014942f3dfe301b168a4a833dc","shasum":""},"require":{"p
      hp":">=7.2.5","symfony\/security-core":"^4.4|^5.0"},"conflict":{"symfony\/h
      ttp-foundation":"<4.4"},"require-dev":{"symfony\/http-foundation":"^4.4|^5.
      0"},"suggest":{"symfony\/http-foundation":"For using the class SessionToken
      Storage."},"time":"2021-01-27T10:01:46+00:00","type":"library","installatio
      n-source":"dist","autoload":{"psr-4":{"Symfony\\Component\\Security\\Csrf\\
      ":""},"exclude-from-classmap":["\/Tests\/"]},"notification-url":"https:\/\/
      packagist.org\/downloads\/","license":["MIT"],"authors":[{"name":"Fabien Po
      tencier","email":"fabien@symfony.com"},{"name":"Symfony Community","homepag
      e":"https:\/\/symfony.com\/contributors"}],"description":"Symfony Security
      Component - CSRF Library","homepage":"https:\/\/symfony.com","support":{"so
      urce":"https:\/\/github.com\/symfony\/security-csrf\/tree\/v5.2.4"},"fundin
      g":[{"url":"https:\/\/symfony.com\/sponsor","type":"custom"},{"url":"https:
      \/\/github.com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.com\/fu
      nding\/github\/packagist\/symfony\/symfony","type":"tidelift"}],"install-pa
      th":"..\/symfony\/security-csrf"},{"name":"symfony\/security-guard","versio
      n":"v4.4.20","version_normalized":"4.4.20.0","source":{"type":"git","url":"
      https:\/\/github.com\/symfony\/security-guard.git","reference":"20f522ada1e
      efb7c2f90cb83dcc76abb160c782f"},"dist":{"type":"zip","url":"https:\/\/api.g
      ithub.com\/repos\/symfony\/security-guard\/zipball\/20f522ada1eefb7c2f90cb8
      3dcc76abb160c782f","reference":"20f522ada1eefb7c2f90cb83dcc76abb160c782f","
      shasum":""},"require":{"php":">=7.1.3","symfony\/security-core":"^3.4.22|^4
      .2.3|^5.0","symfony\/security-http":"^4.4.1"},"require-dev":{"psr\/log":"~1
      .0"},"time":"2021-01-27T09:09:26+00:00","type":"library","installation-sour
      ce":"dist","autoload":{"psr-4":{"Symfony\\Component\\Security\\Guard\\":""}
      ,"exclude-from-classmap":["\/Tests\/"]},"notification-url":"https:\/\/packa
      gist.org\/downloads\/","license":["MIT"],"authors":[{"name":"Fabien Potenci
      er","email":"fabien@symfony.com"},{"name":"Symfony Community","homepage":"h
      ttps:\/\/symfony.com\/contributors"}],"description":"Symfony Security Compo
      nent - Guard","homepage":"https:\/\/symfony.com","support":{"source":"https
      :\/\/github.com\/symfony\/security-guard\/tree\/v4.4.20"},"funding":[{"url"
      :"https:\/\/symfony.com\/sponsor","type":"custom"},{"url":"https:\/\/github
      .com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.com\/funding\/git
      hub\/packagist\/symfony\/symfony","type":"tidelift"}],"install-path":"..\/s
      ymfony\/security-guard"},{"name":"symfony\/security-http","version":"v4.4.2
      0","version_normalized":"4.4.20.0","source":{"type":"git","url":"https:\/\/
      github.com\/symfony\/security-http.git","reference":"1a69306ec4185de37df235
      0cf3d6a529b14b21f0"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/
      repos\/symfony\/security-http\/zipball\/1a69306ec4185de37df2350cf3d6a529b14
      b21f0","reference":"1a69306ec4185de37df2350cf3d6a529b14b21f0","shasum":""},
      "require":{"php":">=7.1.3","symfony\/http-foundation":"^3.4.40|^4.4.7|^5.0.
      7","symfony\/http-kernel":"^4.4","symfony\/property-access":"^3.4|^4.0|^5.0
      ","symfony\/security-core":"^4.4.8"},"conflict":{"symfony\/event-dispatcher
      ":">=5","symfony\/security-csrf":"<3.4.11|~4.0,<4.0.11"},"require-dev":{"ps
      r\/log":"~1.0","symfony\/routing":"^3.4|^4.0|^5.0","symfony\/security-csrf"
      :"^3.4.11|^4.0.11|^5.0"},"suggest":{"symfony\/routing":"For using the HttpU
      tils class to create sub-requests, redirect the user, and match URLs","symf
      ony\/security-csrf":"For using tokens to protect authentication\/logout att
      empts"},"time":"2021-02-14T12:29:41+00:00","type":"library","installation-s
      ource":"dist","autoload":{"psr-4":{"Symfony\\Component\\Security\\Http\\":"
      "},"exclude-from-classmap":["\/Tests\/"]},"notification-url":"https:\/\/pac
      kagist.org\/downloads\/","license":["MIT"],"authors":[{"name":"Fabien Poten
      cier","email":"fabien@symfony.com"},{"name":"Symfony Community","homepage":
      "https:\/\/symfony.com\/contributors"}],"description":"Symfony Security Com
      ponent - HTTP Integration","homepage":"https:\/\/symfony.com","support":{"s
      ource":"https:\/\/github.com\/symfony\/security-http\/tree\/v4.4.20"},"fund
      ing":[{"url":"https:\/\/symfony.com\/sponsor","type":"custom"},{"url":"http
      s:\/\/github.com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.com\/
      funding\/github\/packagist\/symfony\/symfony","type":"tidelift"}],"install-
      path":"..\/symfony\/security-http"},{"name":"symfony\/service-contracts","v
      ersion":"v2.2.0","version_normalized":"2.2.0.0","source":{"type":"git","url
      ":"https:\/\/github.com\/symfony\/service-contracts.git","reference":"d15da
      7ba4957ffb8f1747218be9e1a121fd298a1"},"dist":{"type":"zip","url":"https:\/\
      /api.github.com\/repos\/symfony\/service-contracts\/zipball\/d15da7ba4957ff
      b8f1747218be9e1a121fd298a1","reference":"d15da7ba4957ffb8f1747218be9e1a121f
      d298a1","shasum":""},"require":{"php":">=7.2.5","psr\/container":"^1.0"},"s
      uggest":{"symfony\/service-implementation":""},"time":"2020-09-07T11:33:47+
      00:00","type":"library","extra":{"branch-alias":{"dev-master":"2.2-dev"},"t
      hanks":{"name":"symfony\/contracts","url":"https:\/\/github.com\/symfony\/c
      ontracts"}},"installation-source":"dist","autoload":{"psr-4":{"Symfony\\Con
      tracts\\Service\\":""}},"notification-url":"https:\/\/packagist.org\/downlo
      ads\/","license":["MIT"],"authors":[{"name":"Nicolas Grekas","email":"p@tch
      work.com"},{"name":"Symfony Community","homepage":"https:\/\/symfony.com\/c
      ontributors"}],"description":"Generic abstractions related to writing servi
      ces","homepage":"https:\/\/symfony.com","keywords":["abstractions","contrac
      ts","decoupling","interfaces","interoperability","standards"],"support":{"s
      ource":"https:\/\/github.com\/symfony\/service-contracts\/tree\/master"},"f
      unding":[{"url":"https:\/\/symfony.com\/sponsor","type":"custom"},{"url":"h
      ttps:\/\/github.com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.co
      m\/funding\/github\/packagist\/symfony\/symfony","type":"tidelift"}],"insta
      ll-path":"..\/symfony\/service-contracts"},{"name":"symfony\/stopwatch","ve
      rsion":"v5.2.4","version_normalized":"5.2.4.0","source":{"type":"git","url"
      :"https:\/\/github.com\/symfony\/stopwatch.git","reference":"b12274acfab9d9
      850c52583d136a24398cdf1a0c"},"dist":{"type":"zip","url":"https:\/\/api.gith
      ub.com\/repos\/symfony\/stopwatch\/zipball\/b12274acfab9d9850c52583d136a243
      98cdf1a0c","reference":"b12274acfab9d9850c52583d136a24398cdf1a0c","shasum":
      ""},"require":{"php":">=7.2.5","symfony\/service-contracts":"^1.0|^2"},"tim
      e":"2021-01-27T10:15:41+00:00","type":"library","installation-source":"dist
      ","autoload":{"psr-4":{"Symfony\\Component\\Stopwatch\\":""},"exclude-from-
      classmap":["\/Tests\/"]},"notification-url":"https:\/\/packagist.org\/downl
      oads\/","license":["MIT"],"authors":[{"name":"Fabien Potencier","email":"fa
      bien@symfony.com"},{"name":"Symfony Community","homepage":"https:\/\/symfon
      y.com\/contributors"}],"description":"Provides a way to profile code","home
      page":"https:\/\/symfony.com","support":{"source":"https:\/\/github.com\/sy
      mfony\/stopwatch\/tree\/v5.2.4"},"funding":[{"url":"https:\/\/symfony.com\/
      sponsor","type":"custom"},{"url":"https:\/\/github.com\/fabpot","type":"git
      hub"},{"url":"https:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/
      symfony","type":"tidelift"}],"install-path":"..\/symfony\/stopwatch"},{"nam
      e":"symfony\/string","version":"v5.2.4","version_normalized":"5.2.4.0","sou
      rce":{"type":"git","url":"https:\/\/github.com\/symfony\/string.git","refer
      ence":"4e78d7d47061fa183639927ec40d607973699609"},"dist":{"type":"zip","url
      ":"https:\/\/api.github.com\/repos\/symfony\/string\/zipball\/4e78d7d47061f
      a183639927ec40d607973699609","reference":"4e78d7d47061fa183639927ec40d60797
      3699609","shasum":""},"require":{"php":">=7.2.5","symfony\/polyfill-ctype":
      "~1.8","symfony\/polyfill-intl-grapheme":"~1.0","symfony\/polyfill-intl-nor
      malizer":"~1.0","symfony\/polyfill-mbstring":"~1.0","symfony\/polyfill-php8
      0":"~1.15"},"require-dev":{"symfony\/error-handler":"^4.4|^5.0","symfony\/h
      ttp-client":"^4.4|^5.0","symfony\/translation-contracts":"^1.1|^2","symfony
      \/var-exporter":"^4.4|^5.0"},"time":"2021-02-16T10:20:28+00:00","type":"lib
      rary","installation-source":"dist","autoload":{"psr-4":{"Symfony\\Component
      \\String\\":""},"files":["Resources\/functions.php"],"exclude-from-classmap
      ":["\/Tests\/"]},"notification-url":"https:\/\/packagist.org\/downloads\/",
      "license":["MIT"],"authors":[{"name":"Nicolas Grekas","email":"p@tchwork.co
      m"},{"name":"Symfony Community","homepage":"https:\/\/symfony.com\/contribu
      tors"}],"description":"Provides an object-oriented API to strings and deals
       with bytes, UTF-8 code points and grapheme clusters in a unified way","hom
      epage":"https:\/\/symfony.com","keywords":["grapheme","i18n","string","unic
      ode","utf-8","utf8"],"support":{"source":"https:\/\/github.com\/symfony\/st
      ring\/tree\/v5.2.4"},"funding":[{"url":"https:\/\/symfony.com\/sponsor","ty
      pe":"custom"},{"url":"https:\/\/github.com\/fabpot","type":"github"},{"url"
      :"https:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/symfony","ty
      pe":"tidelift"}],"install-path":"..\/symfony\/string"},{"name":"symfony\/tr
      anslation","version":"v4.4.20","version_normalized":"4.4.20.0","source":{"t
      ype":"git","url":"https:\/\/github.com\/symfony\/translation.git","referenc
      e":"2271b6d577018a7dea75a9162a08ac84f8234deb"},"dist":{"type":"zip","url":"
      https:\/\/api.github.com\/repos\/symfony\/translation\/zipball\/2271b6d5770
      18a7dea75a9162a08ac84f8234deb","reference":"2271b6d577018a7dea75a9162a08ac8
      4f8234deb","shasum":""},"require":{"php":">=7.1.3","symfony\/polyfill-mbstr
      ing":"~1.0","symfony\/translation-contracts":"^1.1.6|^2"},"conflict":{"symf
      ony\/config":"<3.4","symfony\/dependency-injection":"<3.4","symfony\/http-k
      ernel":"<4.4","symfony\/yaml":"<3.4"},"provide":{"symfony\/translation-impl
      ementation":"1.0|2.0"},"require-dev":{"psr\/log":"~1.0","symfony\/config":"
      ^3.4|^4.0|^5.0","symfony\/console":"^3.4|^4.0|^5.0","symfony\/dependency-in
      jection":"^3.4|^4.0|^5.0","symfony\/finder":"~2.8|~3.0|~4.0|^5.0","symfony\
      /http-kernel":"^4.4","symfony\/intl":"^3.4|^4.0|^5.0","symfony\/service-con
      tracts":"^1.1.2|^2","symfony\/yaml":"^3.4|^4.0|^5.0"},"suggest":{"psr\/log-
      implementation":"To use logging capability in translator","symfony\/config"
      :"","symfony\/yaml":""},"time":"2021-02-26T13:53:48+00:00","type":"library"
      ,"installation-source":"dist","autoload":{"psr-4":{"Symfony\\Component\\Tra
      nslation\\":""},"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":"Provide
      s tools to internationalize your application","homepage":"https:\/\/symfony
      .com","support":{"source":"https:\/\/github.com\/symfony\/translation\/tree
      \/v4.4.20"},"funding":[{"url":"https:\/\/symfony.com\/sponsor","type":"cust
      om"},{"url":"https:\/\/github.com\/fabpot","type":"github"},{"url":"https:\
      /\/tidelift.com\/funding\/github\/packagist\/symfony\/symfony","type":"tide
      lift"}],"install-path":"..\/symfony\/translation"},{"name":"symfony\/transl
      ation-contracts","version":"v2.3.0","version_normalized":"2.3.0.0","source"
      :{"type":"git","url":"https:\/\/github.com\/symfony\/translation-contracts.
      git","reference":"e2eaa60b558f26a4b0354e1bbb25636efaaad105"},"dist":{"type"
      :"zip","url":"https:\/\/api.github.com\/repos\/symfony\/translation-contrac
      ts\/zipball\/e2eaa60b558f26a4b0354e1bbb25636efaaad105","reference":"e2eaa60
      b558f26a4b0354e1bbb25636efaaad105","shasum":""},"require":{"php":">=7.2.5"}
      ,"suggest":{"symfony\/translation-implementation":""},"time":"2020-09-28T13
      :05:58+00:00","type":"library","extra":{"branch-alias":{"dev-master":"2.3-d
      ev"},"thanks":{"name":"symfony\/contracts","url":"https:\/\/github.com\/sym
      fony\/contracts"}},"installation-source":"dist","autoload":{"psr-4":{"Symfo
      ny\\Contracts\\Translation\\":""}},"notification-url":"https:\/\/packagist.
      org\/downloads\/","license":["MIT"],"authors":[{"name":"Nicolas Grekas","em
      ail":"p@tchwork.com"},{"name":"Symfony Community","homepage":"https:\/\/sym
      fony.com\/contributors"}],"description":"Generic abstractions related to tr
      anslation","homepage":"https:\/\/symfony.com","keywords":["abstractions","c
      ontracts","decoupling","interfaces","interoperability","standards"],"suppor
      t":{"source":"https:\/\/github.com\/symfony\/translation-contracts\/tree\/v
      2.3.0"},"funding":[{"url":"https:\/\/symfony.com\/sponsor","type":"custom"}
      ,{"url":"https:\/\/github.com\/fabpot","type":"github"},{"url":"https:\/\/t
      idelift.com\/funding\/github\/packagist\/symfony\/symfony","type":"tidelift
      "}],"install-path":"..\/symfony\/translation-contracts"},{"name":"symfony\/
      twig-bridge","version":"v4.4.20","version_normalized":"4.4.20.0","source":{
      "type":"git","url":"https:\/\/github.com\/symfony\/twig-bridge.git","refere
      nce":"e18a7f7b7062ef9ff92b9286955c5c8f9ce1f4e9"},"dist":{"type":"zip","url"
      :"https:\/\/api.github.com\/repos\/symfony\/twig-bridge\/zipball\/e18a7f7b7
      062ef9ff92b9286955c5c8f9ce1f4e9","reference":"e18a7f7b7062ef9ff92b9286955c5
      c8f9ce1f4e9","shasum":""},"require":{"php":">=7.1.3","symfony\/translation-
      contracts":"^1.1|^2","twig\/twig":"^1.43|^2.13|^3.0.4"},"conflict":{"symfon
      y\/console":"<3.4","symfony\/form":"<4.4","symfony\/http-foundation":"<4.3"
      ,"symfony\/translation":"<4.2","symfony\/workflow":"<4.3"},"require-dev":{"
      egulias\/email-validator":"^2.1.10","symfony\/asset":"^3.4|^4.0|^5.0","symf
      ony\/console":"^3.4|^4.0|^5.0","symfony\/dependency-injection":"^3.4|^4.0|^
      5.0","symfony\/error-handler":"^4.4|^5.0","symfony\/expression-language":"^
      3.4|^4.0|^5.0","symfony\/finder":"^3.4|^4.0|^5.0","symfony\/form":"^4.4.17"
      ,"symfony\/http-foundation":"^4.3|^5.0","symfony\/http-kernel":"^4.4","symf
      ony\/intl":"^4.4|^5.0","symfony\/mime":"^4.3|^5.0","symfony\/polyfill-intl-
      icu":"~1.0","symfony\/routing":"^3.4|^4.0|^5.0","symfony\/security-acl":"^2
      .8|^3.0","symfony\/security-core":"^3.0|^4.0|^5.0","symfony\/security-csrf"
      :"^3.4|^4.0|^5.0","symfony\/security-http":"^3.4|^4.0|^5.0","symfony\/stopw
      atch":"^3.4|^4.0|^5.0","symfony\/templating":"^3.4|^4.0|^5.0","symfony\/tra
      nslation":"^4.2.1|^5.0","symfony\/web-link":"^4.4|^5.0","symfony\/workflow"
      :"^4.3|^5.0","symfony\/yaml":"^3.4|^4.0|^5.0","twig\/cssinliner-extra":"^2.
      12","twig\/inky-extra":"^2.12","twig\/markdown-extra":"^2.12"},"suggest":{"
      symfony\/asset":"For using the AssetExtension","symfony\/expression-languag
      e":"For using the ExpressionExtension","symfony\/finder":"","symfony\/form"
      :"For using the FormExtension","symfony\/http-kernel":"For using the HttpKe
      rnelExtension","symfony\/routing":"For using the RoutingExtension","symfony
      \/security-core":"For using the SecurityExtension","symfony\/security-csrf"
      :"For using the CsrfExtension","symfony\/security-http":"For using the Logo
      utUrlExtension","symfony\/stopwatch":"For using the StopwatchExtension","sy
      mfony\/templating":"For using the TwigEngine","symfony\/translation":"For u
      sing the TranslationExtension","symfony\/var-dumper":"For using the DumpExt
      ension","symfony\/web-link":"For using the WebLinkExtension","symfony\/yaml
      ":"For using the YamlExtension"},"time":"2021-02-25T11:27:58+00:00","type":
      "symfony-bridge","installation-source":"dist","autoload":{"psr-4":{"Symfony
      \\Bridge\\Twig\\":""},"exclude-from-classmap":["\/Tests\/"]},"notification-
      url":"https:\/\/packagist.org\/downloads\/","license":["MIT"],"authors":[{"
      name":"Fabien Potencier","email":"fabien@symfony.com"},{"name":"Symfony Com
      munity","homepage":"https:\/\/symfony.com\/contributors"}],"description":"P
      rovides integration for Twig with various Symfony components","homepage":"h
      ttps:\/\/symfony.com","support":{"source":"https:\/\/github.com\/symfony\/t
      wig-bridge\/tree\/v4.4.20"},"funding":[{"url":"https:\/\/symfony.com\/spons
      or","type":"custom"},{"url":"https:\/\/github.com\/fabpot","type":"github"}
      ,{"url":"https:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/symfo
      ny","type":"tidelift"}],"install-path":"..\/symfony\/twig-bridge"},{"name":
      "symfony\/twig-bundle","version":"v4.4.20","version_normalized":"4.4.20.0",
      "source":{"type":"git","url":"https:\/\/github.com\/symfony\/twig-bundle.gi
      t","reference":"7cee73b45e3bd963a0ab4184f1041dcdc85b6e86"},"dist":{"type":"
      zip","url":"https:\/\/api.github.com\/repos\/symfony\/twig-bundle\/zipball\
      /7cee73b45e3bd963a0ab4184f1041dcdc85b6e86","reference":"7cee73b45e3bd963a0a
      b4184f1041dcdc85b6e86","shasum":""},"require":{"php":">=7.1.3","symfony\/ht
      tp-foundation":"^4.3|^5.0","symfony\/http-kernel":"^4.4","symfony\/polyfill
      -ctype":"~1.8","symfony\/twig-bridge":"^4.4|^5.0","twig\/twig":"^1.43|^2.13
      |^3.0.4"},"conflict":{"symfony\/dependency-injection":"<4.1","symfony\/fram
      ework-bundle":"<4.4","symfony\/translation":"<4.2"},"require-dev":{"doctrin
      e\/annotations":"^1.10.4","doctrine\/cache":"~1.0","symfony\/asset":"^3.4|^
      4.0|^5.0","symfony\/dependency-injection":"^4.2.5|^5.0","symfony\/expressio
      n-language":"^3.4|^4.0|^5.0","symfony\/finder":"^3.4|^4.0|^5.0","symfony\/f
      orm":"^3.4|^4.0|^5.0","symfony\/framework-bundle":"^4.4|^5.0","symfony\/rou
      ting":"^3.4|^4.0|^5.0","symfony\/stopwatch":"^3.4|^4.0|^5.0","symfony\/temp
      lating":"^3.4|^4.0|^5.0","symfony\/translation":"^4.2|^5.0","symfony\/web-l
      ink":"^3.4|^4.0|^5.0","symfony\/yaml":"^3.4|^4.0|^5.0"},"time":"2021-01-27T
      09:09:26+00:00","type":"symfony-bundle","installation-source":"dist","autol
      oad":{"psr-4":{"Symfony\\Bundle\\TwigBundle\\":""},"exclude-from-classmap":
      ["\/Tests\/"]},"notification-url":"https:\/\/packagist.org\/downloads\/","l
      icense":["MIT"],"authors":[{"name":"Fabien Potencier","email":"fabien@symfo
      ny.com"},{"name":"Symfony Community","homepage":"https:\/\/symfony.com\/con
      tributors"}],"description":"Provides a tight integration of Twig into the S
      ymfony full-stack framework","homepage":"https:\/\/symfony.com","support":{
      "source":"https:\/\/github.com\/symfony\/twig-bundle\/tree\/v4.4.20"},"fund
      ing":[{"url":"https:\/\/symfony.com\/sponsor","type":"custom"},{"url":"http
      s:\/\/github.com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.com\/
      funding\/github\/packagist\/symfony\/symfony","type":"tidelift"}],"install-
      path":"..\/symfony\/twig-bundle"},{"name":"symfony\/var-dumper","version":"
      v5.2.5","version_normalized":"5.2.5.0","source":{"type":"git","url":"https:
      \/\/github.com\/symfony\/var-dumper.git","reference":"002ab5a36702adf0c9a11
      e6d8836623253e9045e"},"dist":{"type":"zip","url":"https:\/\/api.github.com\
      /repos\/symfony\/var-dumper\/zipball\/002ab5a36702adf0c9a11e6d8836623253e90
      45e","reference":"002ab5a36702adf0c9a11e6d8836623253e9045e","shasum":""},"r
      equire":{"php":">=7.2.5","symfony\/polyfill-mbstring":"~1.0","symfony\/poly
      fill-php80":"^1.15"},"conflict":{"phpunit\/phpunit":"<5.4.3","symfony\/cons
      ole":"<4.4"},"require-dev":{"ext-iconv":"*","symfony\/console":"^4.4|^5.0",
      "symfony\/process":"^4.4|^5.0","twig\/twig":"^2.13|^3.0.4"},"suggest":{"ext
      -iconv":"To convert non-UTF-8 strings to UTF-8 (or symfony\/polyfill-iconv
      in case ext-iconv cannot be used).","ext-intl":"To show region name in time
       zone dump","symfony\/console":"To use the ServerDumpCommand and\/or the bi
      n\/var-dump-server script"},"time":"2021-03-06T07:59:01+00:00","bin":["Reso
      urces\/bin\/var-dump-server"],"type":"library","installation-source":"dist"
      ,"autoload":{"files":["Resources\/functions\/dump.php"],"psr-4":{"Symfony\\
      Component\\VarDumper\\":""},"exclude-from-classmap":["\/Tests\/"]},"notific
      ation-url":"https:\/\/packagist.org\/downloads\/","license":["MIT"],"author
      s":[{"name":"Nicolas Grekas","email":"p@tchwork.com"},{"name":"Symfony Comm
      unity","homepage":"https:\/\/symfony.com\/contributors"}],"description":"Pr
      ovides mechanisms for walking through any arbitrary PHP variable","homepage
      ":"https:\/\/symfony.com","keywords":["debug","dump"],"support":{"source":"
      https:\/\/github.com\/symfony\/var-dumper\/tree\/v5.2.5"},"funding":[{"url"
      :"https:\/\/symfony.com\/sponsor","type":"custom"},{"url":"https:\/\/github
      .com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.com\/funding\/git
      hub\/packagist\/symfony\/symfony","type":"tidelift"}],"install-path":"..\/s
      ymfony\/var-dumper"},{"name":"symfony\/var-exporter","version":"v5.2.4","ve
      rsion_normalized":"5.2.4.0","source":{"type":"git","url":"https:\/\/github.
      com\/symfony\/var-exporter.git","reference":"5aed4875ab514c8cb9b6ff4772baa2
      5fa4c10307"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/repos\/s
      ymfony\/var-exporter\/zipball\/5aed4875ab514c8cb9b6ff4772baa25fa4c10307","r
      eference":"5aed4875ab514c8cb9b6ff4772baa25fa4c10307","shasum":""},"require"
      :{"php":">=7.2.5","symfony\/polyfill-php80":"^1.15"},"require-dev":{"symfon
      y\/var-dumper":"^4.4.9|^5.0.9"},"time":"2021-01-27T10:01:46+00:00","type":"
      library","installation-source":"dist","autoload":{"psr-4":{"Symfony\\Compon
      ent\\VarExporter\\":""},"exclude-from-classmap":["\/Tests\/"]},"notificatio
      n-url":"https:\/\/packagist.org\/downloads\/","license":["MIT"],"authors":[
      {"name":"Nicolas Grekas","email":"p@tchwork.com"},{"name":"Symfony Communit
      y","homepage":"https:\/\/symfony.com\/contributors"}],"description":"Allows
       exporting any serializable PHP data structure to plain PHP code","homepage
      ":"https:\/\/symfony.com","keywords":["clone","construct","export","hydrate
      ","instantiate","serialize"],"support":{"source":"https:\/\/github.com\/sym
      fony\/var-exporter\/tree\/v5.2.4"},"funding":[{"url":"https:\/\/symfony.com
      \/sponsor","type":"custom"},{"url":"https:\/\/github.com\/fabpot","type":"g
      ithub"},{"url":"https:\/\/tidelift.com\/funding\/github\/packagist\/symfony
      \/symfony","type":"tidelift"}],"install-path":"..\/symfony\/var-exporter"},
      {"name":"symfony\/web-profiler-bundle","version":"v4.4.20","version_normali
      zed":"4.4.20.0","source":{"type":"git","url":"https:\/\/github.com\/symfony
      \/web-profiler-bundle.git","reference":"2a5eeaa950e5702738437c6c8f442eca46f
      fc0c5"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/repos\/symfon
      y\/web-profiler-bundle\/zipball\/2a5eeaa950e5702738437c6c8f442eca46ffc0c5",
      "reference":"2a5eeaa950e5702738437c6c8f442eca46ffc0c5","shasum":""},"requir
      e":{"php":">=7.1.3","symfony\/config":"^4.2|^5.0","symfony\/framework-bundl
      e":"^4.4|^5.0","symfony\/http-kernel":"^4.4","symfony\/routing":"^4.3|^5.0"
      ,"symfony\/twig-bundle":"^4.2|^5.0","twig\/twig":"^1.43|^2.13|^3.0.4"},"con
      flict":{"symfony\/form":"<4.3","symfony\/messenger":"<4.2"},"require-dev":{
      "symfony\/browser-kit":"^4.3|^5.0","symfony\/console":"^4.3|^5.0","symfony\
      /css-selector":"^3.4|^4.0|^5.0","symfony\/dependency-injection":"^3.4|^4.0|
      ^5.0","symfony\/stopwatch":"^3.4|^4.0|^5.0"},"time":"2021-01-28T19:07:50+00
      :00","type":"symfony-bundle","installation-source":"dist","autoload":{"psr-
      4":{"Symfony\\Bundle\\WebProfilerBundle\\":""},"exclude-from-classmap":["\/
      Tests\/"]},"notification-url":"https:\/\/packagist.org\/downloads\/","licen
      se":["MIT"],"authors":[{"name":"Fabien Potencier","email":"fabien@symfony.c
      om"},{"name":"Symfony Community","homepage":"https:\/\/symfony.com\/contrib
      utors"}],"description":"Provides a development tool that gives detailed inf
      ormation about the execution of any request","homepage":"https:\/\/symfony.
      com","support":{"source":"https:\/\/github.com\/symfony\/web-profiler-bundl
      e\/tree\/v4.4.20"},"funding":[{"url":"https:\/\/symfony.com\/sponsor","type
      ":"custom"},{"url":"https:\/\/github.com\/fabpot","type":"github"},{"url":"
      https:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/symfony","type
      ":"tidelift"}],"install-path":"..\/symfony\/web-profiler-bundle"},{"name":"
      symfony\/yaml","version":"v5.2.5","version_normalized":"5.2.5.0","source":{
      "type":"git","url":"https:\/\/github.com\/symfony\/yaml.git","reference":"2
      98a08ddda623485208506fcee08817807a251dd"},"dist":{"type":"zip","url":"https
      :\/\/api.github.com\/repos\/symfony\/yaml\/zipball\/298a08ddda623485208506f
      cee08817807a251dd","reference":"298a08ddda623485208506fcee08817807a251dd","
      shasum":""},"require":{"php":">=7.2.5","symfony\/deprecation-contracts":"^2
      .1","symfony\/polyfill-ctype":"~1.8"},"conflict":{"symfony\/console":"<4.4"
      },"require-dev":{"symfony\/console":"^4.4|^5.0"},"suggest":{"symfony\/conso
      le":"For validating YAML files using the lint command"},"time":"2021-03-06T
      07:59:01+00:00","bin":["Resources\/bin\/yaml-lint"],"type":"library","insta
      llation-source":"dist","autoload":{"psr-4":{"Symfony\\Component\\Yaml\\":""
      },"exclude-from-classmap":["\/Tests\/"]},"notification-url":"https:\/\/pack
      agist.org\/downloads\/","license":["MIT"],"authors":[{"name":"Fabien Potenc
      ier","email":"fabien@symfony.com"},{"name":"Symfony Community","homepage":"
      https:\/\/symfony.com\/contributors"}],"description":"Loads and dumps YAML
      files","homepage":"https:\/\/symfony.com","support":{"source":"https:\/\/gi
      thub.com\/symfony\/yaml\/tree\/v5.2.5"},"funding":[{"url":"https:\/\/symfon
      y.com\/sponsor","type":"custom"},{"url":"https:\/\/github.com\/fabpot","typ
      e":"github"},{"url":"https:\/\/tidelift.com\/funding\/github\/packagist\/sy
      mfony\/symfony","type":"tidelift"}],"install-path":"..\/symfony\/yaml"},{"n
      ame":"terminal42\/dcawizard","version":"2.4.7","version_normalized":"2.4.7.
      0","source":{"type":"git","url":"https:\/\/github.com\/terminal42\/contao-d
      cawizard.git","reference":"5ddabcafa42ec53476718c7cc6e8fd501674a3e1"},"dist
      ":{"type":"zip","url":"https:\/\/api.github.com\/repos\/terminal42\/contao-
      dcawizard\/zipball\/5ddabcafa42ec53476718c7cc6e8fd501674a3e1","reference":"
      5ddabcafa42ec53476718c7cc6e8fd501674a3e1","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"},"time":"2019-06-03T08:50:36+0
      0:00","type":"contao-module","extra":{"contao":{"sources":{"":"system\/modu
      les\/dcawizard"}}},"installation-source":"dist","autoload":{"classmap":["wi
      dgets"]},"notification-url":"https:\/\/packagist.org\/downloads\/","license
      ":["LGPL-3.0+"],"authors":[{"name":"terminal42 gmbh","homepage":"http:\/\/t
      erminal42.ch"}],"description":"dcaWizard extension for Contao Open Source C
      MS","keywords":["contao","dca","dcawizard","wizard"],"support":{"issues":"h
      ttps:\/\/github.com\/terminal42\/contao-dcawizard\/issues","source":"https:
      \/\/github.com\/terminal42\/contao-dcawizard\/tree\/master"},"install-path"
      :"..\/terminal42\/dcawizard"},{"name":"terminal42\/escargot","version":"1.0
      .4","version_normalized":"1.0.4.0","source":{"type":"git","url":"https:\/\/
      github.com\/terminal42\/escargot.git","reference":"faad8af1d62835cbe7f33530
      eb42b7609849f143"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/re
      pos\/terminal42\/escargot\/zipball\/faad8af1d62835cbe7f33530eb42b7609849f14
      3","reference":"faad8af1d62835cbe7f33530eb42b7609849f143","shasum":""},"req
      uire":{"ext-simplexml":"*","nyholm\/psr7":"^1.1","php":"^7.2 | ^8.0","psr\/
      http-message":"^1.0","psr\/log":"^1.1","symfony\/dom-crawler":"^4.4 | ^5.0"
      ,"symfony\/event-dispatcher":"^4.4 | ^5.0","symfony\/http-client":"^4.4 | ^
      5.0","webignition\/robots-txt-file":"^3.0"},"require-dev":{"doctrine\/dbal"
      :"^2.10","symfony\/finder":"^4.4 | ^5.0","symfony\/phpunit-bridge":"^5.1.8"
      },"time":"2021-03-15T12:05:34+00:00","type":"library","installation-source"
      :"dist","autoload":{"psr-4":{"Terminal42\\Escargot\\":"src\/"}},"notificati
      on-url":"https:\/\/packagist.org\/downloads\/","license":["MIT"],"authors":
      [{"name":"Yanick Witschi","homepage":"https:\/\/github.com\/toflar","role":
      "Developer"}],"description":"A web crawler or spider library based on Symfo
      ny components","homepage":"https:\/\/www.terminal42.ch","keywords":["crawl"
      ,"escargot","index","search","spider"],"support":{"issues":"https:\/\/githu
      b.com\/terminal42\/escargot\/issues","source":"https:\/\/github.com\/termin
      al42\/escargot"},"install-path":"..\/terminal42\/escargot"},{"name":"termin
      al42\/notification_center","version":"1.5.18","version_normalized":"1.5.18.
      0","source":{"type":"git","url":"https:\/\/github.com\/terminal42\/contao-n
      otification_center.git","reference":"6a7a9c94a533e9a64976aa031ce10e97a9efc0
      2d"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/repos\/terminal4
      2\/contao-notification_center\/zipball\/6a7a9c94a533e9a64976aa031ce10e97a9e
      fc02d","reference":"6a7a9c94a533e9a64976aa031ce10e97a9efc02d","shasum":""},
      "require":{"codefog\/contao-haste":"^4.14.1","contao-community-alliance\/co
      mposer-plugin":"~2.4 || ~3.0","contao\/core-bundle":"~3.2 || ~4.1","php":">
      =5.4","terminal42\/dcawizard":"2.*"},"conflict":{"contao\/core-bundle":"4.5
      .0","contao\/newsletter-bundle":"<3.5 || >= 5.0"},"replace":{"contao-legacy
      \/notification_center":"self.version"},"require-dev":{"contao\/newsletter-b
      undle":"~3.5 || ~4.1"},"suggest":{"contao\/newsletter-bundle":"Send notific
      ations using the newsletter bundle of Contao"},"time":"2020-11-02T15:05:18+
      00:00","type":"contao-module","extra":{"branch-alias":{"dev-develop":"1.4.x
      -dev"},"contao":{"sources":{"":"system\/modules\/notification_center"}}},"i
      nstallation-source":"dist","autoload":{"psr-0":{"NotificationCenter\\":["li
      brary\/"]},"classmap":["classes\/"]},"notification-url":"https:\/\/packagis
      t.org\/downloads\/","license":["LGPL-3.0-or-later"],"authors":[{"name":"ter
      minal42 gmbh","homepage":"http:\/\/terminal42.ch"}],"description":"Notifica
      tion Center extension for Contao Open Source CMS","keywords":["center","con
      tao","notification"],"support":{"issues":"https:\/\/github.com\/terminal42\
      /contao-notification_center\/issues","source":"https:\/\/github.com\/termin
      al42\/contao-notification_center"},"install-path":"..\/terminal42\/notifica
      tion_center"},{"name":"terminal42\/service-annotation-bundle","version":"1.
      1.3","version_normalized":"1.1.3.0","source":{"type":"git","url":"https:\/\
      /github.com\/terminal42\/service-annotation-bundle.git","reference":"6676fe
      aff9ae1efcb261b463d82f42d2fe1fc67a"},"dist":{"type":"zip","url":"https:\/\/
      api.github.com\/repos\/terminal42\/service-annotation-bundle\/zipball\/6676
      feaff9ae1efcb261b463d82f42d2fe1fc67a","reference":"6676feaff9ae1efcb261b463
      d82f42d2fe1fc67a","shasum":""},"require":{"doctrine\/annotations":"^1.6","p
      hp":"^7.1 || ^8.0","symfony\/dependency-injection":"^4.0 || ^5.0","symfony\
      /http-kernel":"^4.0 || ^5.0"},"require-dev":{"contao\/easy-coding-standard"
      :"^3.0"},"time":"2020-11-25T18:59:25+00:00","type":"symfony-bundle","instal
      lation-source":"dist","autoload":{"psr-4":{"Terminal42\\ServiceAnnotationBu
      ndle\\":"src\/"}},"notification-url":"https:\/\/packagist.org\/downloads\/"
      ,"license":["MIT"],"authors":[{"name":"terminal42 gmbh","homepage":"https:\
      /\/www.terminal42.ch\/"}],"description":"Add service tags from class annota
      tions","support":{"issues":"https:\/\/github.com\/terminal42\/service-annot
      ation-bundle\/issues","source":"https:\/\/github.com\/terminal42\/service-a
      nnotation-bundle"},"funding":[{"url":"https:\/\/github.com\/sponsors\/termi
      nal42","type":"github"},{"url":"https:\/\/ko-fi.com\/terminal42","type":"ot
      her"}],"install-path":"..\/terminal42\/service-annotation-bundle"},{"name":
      "thecodingmachine\/safe","version":"v1.3.3","version_normalized":"1.3.3.0",
      "source":{"type":"git","url":"https:\/\/github.com\/thecodingmachine\/safe.
      git","reference":"a8ab0876305a4cdaef31b2350fcb9811b5608dbc"},"dist":{"type"
      :"zip","url":"https:\/\/api.github.com\/repos\/thecodingmachine\/safe\/zipb
      all\/a8ab0876305a4cdaef31b2350fcb9811b5608dbc","reference":"a8ab0876305a4cd
      aef31b2350fcb9811b5608dbc","shasum":""},"require":{"php":">=7.2"},"require-
      dev":{"phpstan\/phpstan":"^0.12","squizlabs\/php_codesniffer":"^3.2","theco
      dingmachine\/phpstan-strict-rules":"^0.12"},"time":"2020-10-28T17:51:34+00:
      00","type":"library","extra":{"branch-alias":{"dev-master":"0.1-dev"}},"ins
      tallation-source":"dist","autoload":{"psr-4":{"Safe\\":["lib\/","deprecated
      \/","generated\/"]},"files":["deprecated\/apc.php","deprecated\/libevent.ph
      p","deprecated\/mssql.php","deprecated\/stats.php","lib\/special_cases.php"
      ,"generated\/apache.php","generated\/apcu.php","generated\/array.php","gene
      rated\/bzip2.php","generated\/calendar.php","generated\/classobj.php","gene
      rated\/com.php","generated\/cubrid.php","generated\/curl.php","generated\/d
      atetime.php","generated\/dir.php","generated\/eio.php","generated\/errorfun
      c.php","generated\/exec.php","generated\/fileinfo.php","generated\/filesyst
      em.php","generated\/filter.php","generated\/fpm.php","generated\/ftp.php","
      generated\/funchand.php","generated\/gmp.php","generated\/gnupg.php","gener
      ated\/hash.php","generated\/ibase.php","generated\/ibmDb2.php","generated\/
      iconv.php","generated\/image.php","generated\/imap.php","generated\/info.ph
      p","generated\/ingres-ii.php","generated\/inotify.php","generated\/json.php
      ","generated\/ldap.php","generated\/libxml.php","generated\/lzf.php","gener
      ated\/mailparse.php","generated\/mbstring.php","generated\/misc.php","gener
      ated\/msql.php","generated\/mysql.php","generated\/mysqli.php","generated\/
      mysqlndMs.php","generated\/mysqlndQc.php","generated\/network.php","generat
      ed\/oci8.php","generated\/opcache.php","generated\/openssl.php","generated\
      /outcontrol.php","generated\/password.php","generated\/pcntl.php","generate
      d\/pcre.php","generated\/pdf.php","generated\/pgsql.php","generated\/posix.
      php","generated\/ps.php","generated\/pspell.php","generated\/readline.php",
      "generated\/rpminfo.php","generated\/rrd.php","generated\/sem.php","generat
      ed\/session.php","generated\/shmop.php","generated\/simplexml.php","generat
      ed\/sockets.php","generated\/sodium.php","generated\/solr.php","generated\/
      spl.php","generated\/sqlsrv.php","generated\/ssdeep.php","generated\/ssh2.p
      hp","generated\/stream.php","generated\/strings.php","generated\/swoole.php
      ","generated\/uodbc.php","generated\/uopz.php","generated\/url.php","genera
      ted\/var.php","generated\/xdiff.php","generated\/xml.php","generated\/xmlrp
      c.php","generated\/yaml.php","generated\/yaz.php","generated\/zip.php","gen
      erated\/zlib.php"]},"notification-url":"https:\/\/packagist.org\/downloads\
      /","license":["MIT"],"description":"PHP core functions that throw exception
      s instead of returning FALSE on error","support":{"issues":"https:\/\/githu
      b.com\/thecodingmachine\/safe\/issues","source":"https:\/\/github.com\/thec
      odingmachine\/safe\/tree\/v1.3.3"},"install-path":"..\/thecodingmachine\/sa
      fe"},{"name":"toflar\/psr6-symfony-http-cache-store","version":"3.0.1","ver
      sion_normalized":"3.0.1.0","source":{"type":"git","url":"https:\/\/github.c
      om\/Toflar\/psr6-symfony-http-cache-store.git","reference":"0a6dd0da8dcce37
      efd3f3ac12e6f435dcd8fe244"},"dist":{"type":"zip","url":"https:\/\/api.githu
      b.com\/repos\/Toflar\/psr6-symfony-http-cache-store\/zipball\/0a6dd0da8dcce
      37efd3f3ac12e6f435dcd8fe244","reference":"0a6dd0da8dcce37efd3f3ac12e6f435dc
      d8fe244","shasum":""},"require":{"php":"^7.2 | ^8.0","symfony\/cache":"^4.4
       | ^5.0","symfony\/http-foundation":"^4.4 | ^5.0","symfony\/http-kernel":"^
      4.4 | ^5.0","symfony\/lock":"^4.4 | ^5.0","symfony\/options-resolver":"^4.4
       | ^5.0"},"require-dev":{"symfony\/phpunit-bridge":"^5.0"},"time":"2020-11-
      23T21:38:47+00:00","type":"library","installation-source":"dist","autoload"
      :{"psr-4":{"Toflar\\Psr6HttpCacheStore\\":"src"}},"notification-url":"https
      :\/\/packagist.org\/downloads\/","license":["MIT"],"authors":[{"name":"Yani
      ck Witschi","email":"yanick.witschi@terminal42.ch"}],"description":"An alte
      rnative store implementation for Symfony's HttpCache reverse proxy that sup
      ports auto-pruning of expired entries and cache invalidation by tags.","sup
      port":{"issues":"https:\/\/github.com\/Toflar\/psr6-symfony-http-cache-stor
      e\/issues","source":"https:\/\/github.com\/Toflar\/psr6-symfony-http-cache-
      store\/tree\/3.0.1"},"install-path":"..\/toflar\/psr6-symfony-http-cache-st
      ore"},{"name":"true\/punycode","version":"v2.1.1","version_normalized":"2.1
      .1.0","source":{"type":"git","url":"https:\/\/github.com\/true\/php-punycod
      e.git","reference":"a4d0c11a36dd7f4e7cd7096076cab6d3378a071e"},"dist":{"typ
      e":"zip","url":"https:\/\/api.github.com\/repos\/true\/php-punycode\/zipbal
      l\/a4d0c11a36dd7f4e7cd7096076cab6d3378a071e","reference":"a4d0c11a36dd7f4e7
      cd7096076cab6d3378a071e","shasum":""},"require":{"php":">=5.3.0","symfony\/
      polyfill-mbstring":"^1.3"},"require-dev":{"phpunit\/phpunit":"~4.7","squizl
      abs\/php_codesniffer":"~2.0"},"time":"2016-11-16T10:37:54+00:00","type":"li
      brary","installation-source":"dist","autoload":{"psr-4":{"TrueBV\\":"src\/"
      }},"notification-url":"https:\/\/packagist.org\/downloads\/","license":["MI
      T"],"authors":[{"name":"Renan Gon\u00e7alves","email":"renan.saddam@gmail.c
      om"}],"description":"A Bootstring encoding of Unicode for Internationalized
       Domain Names in Applications (IDNA)","homepage":"https:\/\/github.com\/tru
      e\/php-punycode","keywords":["idna","punycode"],"support":{"issues":"https:
      \/\/github.com\/true\/php-punycode\/issues","source":"https:\/\/github.com\
      /true\/php-punycode\/tree\/master"},"install-path":"..\/true\/punycode"},{"
      name":"twig\/twig","version":"v2.14.4","version_normalized":"2.14.4.0","sou
      rce":{"type":"git","url":"https:\/\/github.com\/twigphp\/Twig.git","referen
      ce":"0b4ba691fb99ec7952d25deb36c0a83061b93bbf"},"dist":{"type":"zip","url":
      "https:\/\/api.github.com\/repos\/twigphp\/Twig\/zipball\/0b4ba691fb99ec795
      2d25deb36c0a83061b93bbf","reference":"0b4ba691fb99ec7952d25deb36c0a83061b93
      bbf","shasum":""},"require":{"php":">=7.2.5","symfony\/polyfill-ctype":"^1.
      8","symfony\/polyfill-mbstring":"^1.3"},"require-dev":{"psr\/container":"^1
      .0","symfony\/phpunit-bridge":"^4.4.9|^5.0.9"},"time":"2021-03-10T10:05:55+
      00:00","type":"library","extra":{"branch-alias":{"dev-master":"2.14-dev"}},
      "installation-source":"dist","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":"Le
      ad Developer"},{"name":"Twig Team","role":"Contributors"},{"name":"Armin Ro
      nacher","email":"armin.ronacher@active-4.com","role":"Project Founder"}],"d
      escription":"Twig, the flexible, fast, and secure template language for PHP
      ","homepage":"https:\/\/twig.symfony.com","keywords":["templating"],"suppor
      t":{"issues":"https:\/\/github.com\/twigphp\/Twig\/issues","source":"https:
      \/\/github.com\/twigphp\/Twig\/tree\/v2.14.4"},"funding":[{"url":"https:\/\
      /github.com\/fabpot","type":"github"},{"url":"https:\/\/tidelift.com\/fundi
      ng\/github\/packagist\/twig\/twig","type":"tidelift"}],"install-path":"..\/
      twig\/twig"},{"name":"ua-parser\/uap-php","version":"v3.9.14","version_norm
      alized":"3.9.14.0","source":{"type":"git","url":"https:\/\/github.com\/ua-p
      arser\/uap-php.git","reference":"b796c5ea5df588e65aeb4e2c6cce3811dec4fed6"}
      ,"dist":{"type":"zip","url":"https:\/\/api.github.com\/repos\/ua-parser\/ua
      p-php\/zipball\/b796c5ea5df588e65aeb4e2c6cce3811dec4fed6","reference":"b796
      c5ea5df588e65aeb4e2c6cce3811dec4fed6","shasum":""},"require":{"composer\/ca
      -bundle":"^1.1","php":"^7.2 || ^8.0"},"require-dev":{"phpstan\/phpstan":"^0
      .12.33","phpunit\/phpunit":"^8 || ^9","symfony\/console":"^3.4 || ^4.2 || ^
      4.3 || ^5.0","symfony\/filesystem":"^3.4 || ^4.2 ||  ^4.3 || ^5.0","symfony
      \/finder":"^3.4 || ^4.2 || ^4.3 || ^5.0","symfony\/yaml":"^3.4 || ^4.2 || ^
      4.3 || ^5.0","vimeo\/psalm":"^3.12"},"suggest":{"symfony\/console":"Require
      d for CLI usage - ^3.4 || ^4.3 || ^5.0","symfony\/filesystem":"Required for
       CLI usage - ^3.4 || ^4.3 || ^5.0","symfony\/finder":"Required for CLI usag
      e - ^3.4 || ^4.3 || ^5.0","symfony\/yaml":"Required for CLI usage - ^3.4 ||
       ^4.3 || ^5.0"},"time":"2020-10-02T23:36:20+00:00","bin":["bin\/uaparser"],
      "type":"library","installation-source":"dist","autoload":{"psr-4":{"UAParse
      r\\":"src"}},"notification-url":"https:\/\/packagist.org\/downloads\/","lic
      ense":["MIT"],"authors":[{"name":"Dave Olsen","email":"dmolsen@gmail.com"},
      {"name":"Lars Strojny","email":"lars@strojny.net"}],"description":"A multi-
      language port of Browserscope's user agent parser.","support":{"issues":"ht
      tps:\/\/github.com\/ua-parser\/uap-php\/issues","source":"https:\/\/github.
      com\/ua-parser\/uap-php\/tree\/v3.9.14"},"install-path":"..\/ua-parser\/uap
      -php"},{"name":"webignition\/disallowed-character-terminated-string","versi
      on":"2.0","version_normalized":"2.0.0.0","source":{"type":"git","url":"http
      s:\/\/github.com\/webignition\/disallowed-character-terminated-string.git",
      "reference":"1c35b8bacbb2e76837c0aa8538dc2468a1f10e6e"},"dist":{"type":"zip
      ","url":"https:\/\/api.github.com\/repos\/webignition\/disallowed-character
      -terminated-string\/zipball\/1c35b8bacbb2e76837c0aa8538dc2468a1f10e6e","ref
      erence":"1c35b8bacbb2e76837c0aa8538dc2468a1f10e6e","shasum":""},"require":{
      "php":">=7.2"},"require-dev":{"phpstan\/phpstan":"^0.12.3","phpunit\/phpuni
      t":"~8.0","squizlabs\/php_codesniffer":"^3.5"},"time":"2019-12-20T15:52:44+
      00:00","type":"library","installation-source":"dist","autoload":{"psr-4":{"
      webignition\\DisallowedCharacterTerminatedString\\":"src"}},"notification-u
      rl":"https:\/\/packagist.org\/downloads\/","license":["MIT"],"authors":[{"n
      ame":"Jon Cram","email":"webignition@gmail.com"}],"description":"A string t
      erminated by one or more disallowed characters","homepage":"https:\/\/githu
      b.com\/webignition\/disallowed-character-terminated-string","keywords":["st
      ring","terminated"],"support":{"issues":"https:\/\/github.com\/webignition\
      /disallowed-character-terminated-string\/issues","source":"https:\/\/github
      .com\/webignition\/disallowed-character-terminated-string\/tree\/master"},"
      install-path":"..\/webignition\/disallowed-character-terminated-string"},{"
      name":"webignition\/robots-txt-file","version":"3.0","version_normalized":"
      3.0.0.0","source":{"type":"git","url":"https:\/\/github.com\/webignition\/r
      obots-txt-file.git","reference":"51bd7b1045348d94177cf6b21415385bf0923fa6"}
      ,"dist":{"type":"zip","url":"https:\/\/api.github.com\/repos\/webignition\/
      robots-txt-file\/zipball\/51bd7b1045348d94177cf6b21415385bf0923fa6","refere
      nce":"51bd7b1045348d94177cf6b21415385bf0923fa6","shasum":""},"require":{"ex
      t-json":"*","ext-mbstring":"*","php":">=7.2.0","webignition\/disallowed-cha
      racter-terminated-string":">=2,<3"},"require-dev":{"phpstan\/phpstan":"^0.1
      2.3","phpunit\/phpunit":"^8.0","squizlabs\/php_codesniffer":"^3.5"},"time":
      "2019-12-20T17:50:44+00:00","type":"library","installation-source":"dist","
      autoload":{"psr-4":{"webignition\\RobotsTxt\\":"src\/","webignition\\Robots
      Txt\\Tests\\":"tests\/"}},"notification-url":"https:\/\/packagist.org\/down
      loads\/","license":["MIT"],"authors":[{"name":"Jon Cram","email":"webigniti
      on@gmail.com"}],"description":"Models a robots.txt file","homepage":"https:
      \/\/github.com\/webignition\/robots-txt-file","keywords":["parser","robots.
      txt"],"support":{"issues":"https:\/\/github.com\/webignition\/robots-txt-fi
      le\/issues","source":"https:\/\/github.com\/webignition\/robots-txt-file\/t
      ree\/3.0"},"install-path":"..\/webignition\/robots-txt-file"},{"name":"webm
      ozart\/assert","version":"1.10.0","version_normalized":"1.10.0.0","source":
      {"type":"git","url":"https:\/\/github.com\/webmozarts\/assert.git","referen
      ce":"6964c76c7804814a842473e0c8fd15bab0f18e25"},"dist":{"type":"zip","url":
      "https:\/\/api.github.com\/repos\/webmozarts\/assert\/zipball\/6964c76c7804
      814a842473e0c8fd15bab0f18e25","reference":"6964c76c7804814a842473e0c8fd15ba
      b0f18e25","shasum":""},"require":{"php":"^7.2 || ^8.0","symfony\/polyfill-c
      type":"^1.8"},"conflict":{"phpstan\/phpstan":"<0.12.20","vimeo\/psalm":"<4.
      6.1 || 4.6.2"},"require-dev":{"phpunit\/phpunit":"^8.5.13"},"time":"2021-03
      -09T10:59:23+00:00","type":"library","extra":{"branch-alias":{"dev-master":
      "1.10-dev"}},"installation-source":"dist","autoload":{"psr-4":{"Webmozart\\
      Assert\\":"src\/"}},"notification-url":"https:\/\/packagist.org\/downloads\
      /","license":["MIT"],"authors":[{"name":"Bernhard Schussek","email":"bschus
      sek@gmail.com"}],"description":"Assertions to validate method input\/output
       with nice error messages.","keywords":["assert","check","validate"],"suppo
      rt":{"issues":"https:\/\/github.com\/webmozarts\/assert\/issues","source":"
      https:\/\/github.com\/webmozarts\/assert\/tree\/1.10.0"},"install-path":"..
      \/webmozart\/assert"},{"name":"webmozart\/path-util","version":"2.3.0","ver
      sion_normalized":"2.3.0.0","source":{"type":"git","url":"https:\/\/github.c
      om\/webmozart\/path-util.git","reference":"d939f7edc24c9a1bb9c0dee5cb05d8e8
      59490725"},"dist":{"type":"zip","url":"https:\/\/api.github.com\/repos\/web
      mozart\/path-util\/zipball\/d939f7edc24c9a1bb9c0dee5cb05d8e859490725","refe
      rence":"d939f7edc24c9a1bb9c0dee5cb05d8e859490725","shasum":""},"require":{"
      php":">=5.3.3","webmozart\/assert":"~1.0"},"require-dev":{"phpunit\/phpunit
      ":"^4.6","sebastian\/version":"^1.0.1"},"time":"2015-12-17T08:42:14+00:00",
      "type":"library","extra":{"branch-alias":{"dev-master":"2.3-dev"}},"install
      ation-source":"dist","autoload":{"psr-4":{"Webmozart\\PathUtil\\":"src\/"}}
      ,"notification-url":"https:\/\/packagist.org\/downloads\/","license":["MIT"
      ],"authors":[{"name":"Bernhard Schussek","email":"bschussek@gmail.com"}],"d
      escription":"A robust cross-platform utility for normalizing, comparing and
       modifying file paths.","support":{"issues":"https:\/\/github.com\/webmozar
      t\/path-util\/issues","source":"https:\/\/github.com\/webmozart\/path-util\
      /tree\/2.3.0"},"install-path":"..\/webmozart\/path-util"},{"name":"wikimedi
      a\/less.php","version":"1.8.2","version_normalized":"1.8.2.0","source":{"ty
      pe":"git","url":"https:\/\/github.com\/wikimedia\/less.php.git","reference"
      :"e238ad228d74b6ffd38209c799b34e9826909266"},"dist":{"type":"zip","url":"ht
      tps:\/\/api.github.com\/repos\/wikimedia\/less.php\/zipball\/e238ad228d74b6
      ffd38209c799b34e9826909266","reference":"e238ad228d74b6ffd38209c799b34e9826
      909266","shasum":""},"require":{"php":">=7.2.9"},"require-dev":{"phpunit\/p
      hpunit":"7.5.14"},"time":"2019-11-06T18:30:11+00:00","bin":["bin\/lessc"],"
      type":"library","installation-source":"dist","autoload":{"psr-0":{"Less":"l
      ib\/"},"classmap":["lessc.inc.php"]},"notification-url":"https:\/\/packagis
      t.org\/downloads\/","license":["Apache-2.0"],"authors":[{"name":"Josh Schmi
      dt","homepage":"https:\/\/github.com\/oyejorge"},{"name":"Matt Agar","homep
      age":"https:\/\/github.com\/agar"},{"name":"Martin Janto\u0161ovi\u010d","h
      omepage":"https:\/\/github.com\/Mordred"}],"description":"PHP port of the J
      avascript version of LESS http:\/\/lesscss.org (Originally maintained by Jo
      sh Schmidt)","keywords":["css","less","less.js","lesscss","php","stylesheet
      "],"support":{"source":"https:\/\/github.com\/wikimedia\/less.php\/tree\/1.
      8.2"},"install-path":"..\/wikimedia\/less.php"},{"name":"zendframework\/zen
      d-code","version":"3.4.1","version_normalized":"3.4.1.0","source":{"type":"
      git","url":"https:\/\/github.com\/zendframework\/zend-code.git","reference"
      :"268040548f92c2bfcba164421c1add2ba43abaaa"},"dist":{"type":"zip","url":"ht
      tps:\/\/api.github.com\/repos\/zendframework\/zend-code\/zipball\/268040548
      f92c2bfcba164421c1add2ba43abaaa","reference":"268040548f92c2bfcba164421c1ad
      d2ba43abaaa","shasum":""},"require":{"php":"^7.1","zendframework\/zend-even
      tmanager":"^2.6 || ^3.0"},"conflict":{"phpspec\/prophecy":"<1.9.0"},"requir
      e-dev":{"doctrine\/annotations":"^1.7","ext-phar":"*","phpunit\/phpunit":"^
      7.5.16 || ^8.4","zendframework\/zend-coding-standard":"^1.0","zendframework
      \/zend-stdlib":"^2.7 || ^3.0"},"suggest":{"doctrine\/annotations":"Doctrine
      \\Common\\Annotations >=1.0 for annotation features","zendframework\/zend-s
      tdlib":"Zend\\Stdlib component"},"time":"2019-12-10T19:21:15+00:00","type":
      "library","extra":{"branch-alias":{"dev-master":"3.4.x-dev","dev-develop":"
      3.5.x-dev","dev-dev-4.0":"4.0.x-dev"}},"installation-source":"dist","autolo
      ad":{"psr-4":{"Zend\\Code\\":"src\/"}},"notification-url":"https:\/\/packag
      ist.org\/downloads\/","license":["BSD-3-Clause"],"description":"Extensions
      to the PHP Reflection API, static code scanning, and code generation","keyw
      ords":["ZendFramework","code","zf"],"support":{"chat":"https:\/\/zendframew
      ork-slack.herokuapp.com","docs":"https:\/\/docs.zendframework.com\/zend-cod
      e\/","forum":"https:\/\/discourse.zendframework.com\/c\/questions\/componen
      ts","issues":"https:\/\/github.com\/zendframework\/zend-code\/issues","rss"
      :"https:\/\/github.com\/zendframework\/zend-code\/releases.atom","source":"
      https:\/\/github.com\/zendframework\/zend-code"},"abandoned":"laminas\/lami
      nas-code","install-path":"..\/zendframework\/zend-code"},{"name":"zendframe
      work\/zend-eventmanager","version":"3.2.1","version_normalized":"3.2.1.0","
      source":{"type":"git","url":"https:\/\/github.com\/zendframework\/zend-even
      tmanager.git","reference":"a5e2583a211f73604691586b8406ff7296a946dd"},"dist
      ":{"type":"zip","url":"https:\/\/api.github.com\/repos\/zendframework\/zend
      -eventmanager\/zipball\/a5e2583a211f73604691586b8406ff7296a946dd","referenc
      e":"a5e2583a211f73604691586b8406ff7296a946dd","shasum":""},"require":{"php"
      :"^5.6 || ^7.0"},"require-dev":{"athletic\/athletic":"^0.1","container-inte
      rop\/container-interop":"^1.1.0","phpunit\/phpunit":"^5.7.27 || ^6.5.8 || ^
      7.1.2","zendframework\/zend-coding-standard":"~1.0.0","zendframework\/zend-
      stdlib":"^2.7.3 || ^3.0"},"suggest":{"container-interop\/container-interop"
      :"^1.1.0, to use the lazy listeners feature","zendframework\/zend-stdlib":"
      ^2.7.3 || ^3.0, to use the FilterChain feature"},"time":"2018-04-25T15:33:3
      4+00:00","type":"library","extra":{"branch-alias":{"dev-master":"3.2-dev","
      dev-develop":"3.3-dev"}},"installation-source":"dist","autoload":{"psr-4":{
      "Zend\\EventManager\\":"src\/"}},"notification-url":"https:\/\/packagist.or
      g\/downloads\/","license":["BSD-3-Clause"],"description":"Trigger and liste
      n to events within a PHP application","homepage":"https:\/\/github.com\/zen
      dframework\/zend-eventmanager","keywords":["event","eventmanager","events",
      "zf2"],"support":{"issues":"https:\/\/github.com\/zendframework\/zend-event
      manager\/issues","source":"https:\/\/github.com\/zendframework\/zend-eventm
      anager\/tree\/master"},"abandoned":"laminas\/laminas-eventmanager","install
      -path":"..\/zendframework\/zend-eventmanager"}]).

  16. #16
    Community-Moderator
    Wandelndes Contao-Lexikon
    Avatar von Spooky
    Registriert seit
    12.04.2012.
    Ort
    Scotland
    Beiträge
    37.191
    Partner-ID
    10107

    Standard

    Da fehlt der Anfang. Oder geht die Ausgabe nicht so weit zurück? Welche Composer Version verwendest du?
    » sponsor me via GitHub or Revolut

  17. #17
    Contao-Fan
    Registriert seit
    29.06.2016.
    Beiträge
    549

    Standard

    Zitat Zitat von Spooky Beitrag anzeigen
    Welche Composer Version verwendest du?
    ... jaaaa, das wars!
    Da war die Version 1.8 installiert.
    (Seltsam dass so eine alte Version bei Mittwald standardmäßig installiert ist.)
    Konnte die Version 2.0.7 installieren.
    Nun läufts

    Vielen Dank!

  18. #18
    Community-Moderator
    Wandelndes Contao-Lexikon
    Avatar von Spooky
    Registriert seit
    12.04.2012.
    Ort
    Scotland
    Beiträge
    37.191
    Partner-ID
    10107

    Standard

    Zitat Zitat von thesweetg Beitrag anzeigen
    (Seltsam dass so eine alte Version bei Mittwald standardmäßig installiert ist.)
    Du solltest niemals den vorinstallierte Composer einer Shared Hosting Umgebung benutzen. Lade dir die composer.phar immer selbst runter.



    Zitat Zitat von thesweetg Beitrag anzeigen
    Konnte die Version 2.0.7 installieren.
    Die neueste Version wäre aber 2.0.11 https://getcomposer.org/download/
    » sponsor me via GitHub or Revolut

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •