From e0c189d51c0d8df6fb3540ee326478827ab91ce4 Mon Sep 17 00:00:00 2001 From: Karl Hepworth Date: Mon, 2 Mar 2020 19:51:25 +1100 Subject: [PATCH] Update satis for 1.0.0 (#11) (#12) * Improve the README. * Update config for govcms 1.0.0. * Satis config for govcms 1.0.0 * Update ahoy commands. # Conflicts: # .ahoy.yml # app/develop/index.html # app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json # app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json # app/include/all$fc25ebd33fa3f7cd766a17f9a6af31632bafdae2.json # app/index.html # app/master/include/all$0ed0140ca23dbee409553f6697c30939b8800cd6.json # app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json # app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json # app/master/index.html # app/master/packages.json # app/packages.json # app/whitelist/include/all$8a5c79065eb567d58f7fce0de7cd1b348705a38a.json # app/whitelist/index.html # app/whitelist/packages.json # satis-config/govcms-develop.json # satis-config/govcms-master.json # satis-config/govcms-stable.json # satis-config/govcms-whitelist.json Co-authored-by: Simon Hobbs --- .ahoy.yml | 19 +- README.md | 40 +- app/develop/index.html | 985 +- ...cd79a7903ab24c6c2d341361721187248df5.json} | 6271 +++++- app/index.html | 566 +- ...144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json} | 18120 ++++++++++------ app/master/index.html | 567 +- app/master/packages.json | 4 +- app/packages.json | 4 +- ...c79065eb567d58f7fce0de7cd1b348705a38a.json | 377 - ...dda598333cb33245820e4cf8ff824f616971c.json | 1272 ++ app/whitelist/index.html | 72 +- app/whitelist/packages.json | 4 +- satis-config/govcms-develop.json | 4 +- satis-config/govcms-master.json | 8 +- satis-config/govcms-stable.json | 11 +- satis-config/govcms-whitelist.json | 14 +- 17 files changed, 19074 insertions(+), 9264 deletions(-) rename app/{master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json => include/all$36dacd79a7903ab24c6c2d341361721187248df5.json} (79%) rename app/{include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json => master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json} (78%) delete mode 100644 app/whitelist/include/all$8a5c79065eb567d58f7fce0de7cd1b348705a38a.json create mode 100644 app/whitelist/include/all$a10dda598333cb33245820e4cf8ff824f616971c.json diff --git a/.ahoy.yml b/.ahoy.yml index dfb44c1..c03c808 100644 --- a/.ahoy.yml +++ b/.ahoy.yml @@ -3,7 +3,7 @@ usage: CLI utilities commands: satis: - usage: ahoy satis ARGS + usage: Execute composer/satis via docker. cmd: | docker run --rm --init -it \ --volume $(pwd):/build \ @@ -11,7 +11,7 @@ commands: composer/satis "$@" satis-build: - usage: ahoy satis packages.json build-dir + usage: Execute composer/satis passing in a json and a build dir. cmd: | docker run --rm --init -it \ --user $(id -u):$(id -g) \ @@ -22,7 +22,8 @@ commands: --volume $(pwd):/build \ composer/satis /build/branding/branding.sh "/build/$2" - build-all-production: + build: + usage: Build everything in /app cmd: | ahoy build-stable ahoy build-master @@ -30,21 +31,31 @@ commands: ahoy build-whitelist build-stable: + usage: Build satis.govcms.gov.au cmd: | ahoy satis-build satis-config/govcms-stable.json app build-master: + usage: Build satis.govcms.gov.au/master cmd: | ahoy satis-build satis-config/govcms-master.json app/master build-develop: + usage: Build satis.govcms.gov.au/develop cmd: | ahoy satis-build satis-config/govcms-develop.json app/develop build-whitelist: + usage: Build satis.govcms.gov.au/whitelist cmd: | ahoy satis-build satis-config/govcms-whitelist.json app/whitelist + verify: + usage: Locally run the same tests that would run in circle. + cmd: | + SATIS_BUILD=app ./.circleci/build-scaffolds-against-all.sh + server: + usage: Make satis available on localhost:4142 cmd: | - PHP -S localhost:4686 -t app + PHP -S localhost:4142 -t app diff --git a/README.md b/README.md index 8df342b..1d2404c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ # GovCMS Packagist -A packagist resource managed by GovCMS for use by Composer projects. This packagist -essentially only the packages required to build the GovCMS distribution. -All the modules available in this packagist have been reviewed and curated. +A packagist resource managed by GovCMS for use by Composer projects. This +packagist service only offers an essential set of packages required to build +the GovCMS distribution. All the modules available in this packagist have +been reviewed. [![CircleCI](https://circleci.com/gh/govCMS/satis.svg?style=svg)](https://circleci.com/gh/govCMS/satis) @@ -10,21 +11,35 @@ All the modules available in this packagist have been reviewed and curated. Currently, updating is manual but could be automated with new GovCMS releases. -1. When there is a new version of govcms/govcms8 or govcms/require-dev, the -Satis needs rebuilding. +1. Satis should be rebuilt when there is a new version of govcms8 +distribution, however there could other packages also triggering this need. -2. If it's a new version of the distribution, copy `satis-govcms-betaX.json` -to a new file. Review the file. +2. Check the version constrains in all the satis-config/govms-*.json files. +You may need to update the version of GovCMS. -3. Review the `ahoy build-production` command in `.ahoy.yml` and update file -references if needed. +3. Run `ahoy build`. -4. Run `ahoy build-production`. This will update the static satis files in /app +4. Run `ahoy verify` to duplicate tests that run in circle. -5. Commit changes, including /app +5. Commit changes, including /app which is the statis files that are hosted. -6. Git push. This will build GovCMS in Gitlab (see `.gitlab-ci.yml`). +6. Push or these changes to github.com/govcms/satis. This will trigger +quay.io to rebuild the image from the docker-compose.yml. +## Troubleshooting maintenance + +Building the Satis can result in a building a Satis server that you can't use +to build GovCMS. In a recent example the govcms-stable.json (and others) +required `"fabpot/goutte": "3.2.3"` in order to ensure this slightly older +version was available for a fully resolved govcms build. + +It will happen when trying to build GovCMS from the Satis which can be +tested with `ahoy verify`. + +1. Take a note of the composer error, the packages referred to. +2. Build a normal GovCMS and compared the same packages. +3. You should identify a package version that Satis didn't get. +4. And this package explicitly to `config/govcms-*.json`. ## Benefits @@ -164,7 +179,6 @@ composer to pick up sub-packages which are newer than what GovCMS distribution s rearchitect with [drupal-composer/drupal-project](https://github.com/drupal-composer/drupal-project) as your scaffold to get a more "custom vanilla" experience. - ## Technical This project is built on [composer/satis](https://github.com/composer/satis) using the diff --git a/app/develop/index.html b/app/develop/index.html index d0ac0f2..1cd8ee2 100644 --- a/app/develop/index.html +++ b/app/develop/index.html @@ -7,7 +7,7 @@ - govcms/satis-develop + govcms/satis-develop @@ -21,8 +21,8 @@

govcms/satis-develop

- -
Last updated:
+ +


Last updated:
@@ -228,8 +228,6 @@
Setting up this repository in your projects
Required by
@@ -343,176 +341,7 @@
Setting up this repository in your projects
Required by
-
- - - - -
- - -
-

Symfony2 BrowserKit driver for Mink framework

- -
-
-
- -
Keywords
-
- Mink - Symfony2 - browser - testing -
- -
Homepage
-
- http://mink.behat.org/ -
- -
License
-
MIT
- -
Authors
-
- Konstantin Kudryashov
- - -
Releases
-
- - 1.3.3
- - -
Required by
-
- -
-
-
-
- -
- - -
-

Mink extension for Behat

- -
-
-
- -
Keywords
-
- browser - gui - test - web -
- -
Homepage
-
- http://extensions.behat.org/mink -
- -
License
-
MIT
- -
Authors
-
- Christophe Coevoet, Konstantin Kudryashov
- - -
Releases
-
- - 2.3.1
- - -
Required by
-
- -
-
-
-
- -
- - -
-

Goutte driver for Mink framework

- -
-
-
- -
Keywords
-
- browser - goutte - headless - testing -
- -
Homepage
-
- http://mink.behat.org/ -
- -
License
-
MIT
- -
Authors
-
- Konstantin Kudryashov
- - -
Releases
-
- - v1.2.1
- - -
Required by
-
-
@@ -569,7 +398,6 @@
Setting up this repository in your projects
Required by
@@ -827,7 +655,7 @@
Setting up this repository in your projects
Releases
- 1.30.5
+ 1.31.0
Required by
@@ -1829,7 +1657,7 @@
Setting up this repository in your projects
Releases
- 0.1
+ v0.1.1
Required by
@@ -1928,7 +1756,6 @@
Setting up this repository in your projects
memcached php redis - riak xcache @@ -1948,7 +1775,7 @@
Setting up this repository in your projects
Releases
- 1.9.1
+ 1.10.0
Required by
@@ -2341,7 +2168,7 @@
Setting up this repository in your projects
Releases
- 1.2.0
+ 1.3.3
Required by
@@ -2720,7 +2547,7 @@
Setting up this repository in your projects
Releases
- 2.8.0, + 2.9.0, 2.6.0
@@ -2776,7 +2603,7 @@
Setting up this repository in your projects
Releases
- 2.8.0, + 2.9.0, 2.6.0
@@ -2845,57 +2672,6 @@
Setting up this repository in your projects
-
- - -
-

Coder is a library to review Drupal code.

- -
-
-
- -
Keywords
-
- code review - phpcs - standards -
- -
Homepage
-
- https://www.drupal.org/project/coder -
- -
License
-
GPL-2.0+
- - - -
Releases
-
- - 8.3.6
- - -
Required by
-
- -
-
-
-
-
@@ -3044,7 +2820,7 @@
Setting up this repository in your projects
Authors
- Tommy Lynge Jørgensen, Fabian Bircher
+ Tommy Lynge Jørgensen, Fabian Bircher, tlyngej
Support
@@ -3658,7 +3434,7 @@
Setting up this repository in your projects
Releases
- 8.7.10, + 8.8.1, 8.7.9
@@ -3733,7 +3509,6 @@
Setting up this repository in your projects
  • drupal/restui
  • drupal/robotstxt
  • drupal/scheduled_transitions
  • -
  • drupal/schema_metatag
  • drupal/search_api
  • drupal/search_api_attachments
  • drupal/search_api_solr
  • @@ -3755,105 +3530,6 @@
    Setting up this repository in your projects
    -
    - - -
    -

    Renders placeholder variables for HTML and plain-text display.

    - -
    -
    -
    - -
    Keywords
    -
    - drupal -
    - -
    Homepage
    -
    - https://www.drupal.org/project/drupal -
    - -
    License
    -
    GPL-2.0-or-later
    - - - -
    Releases
    -
    - - 8.7.10
    - - -
    Required by
    -
    - -
    -
    -
    -
    - -
    - - -
    -

    Mostly static utility classes for string, xss, array, image, and other commonly needed manipulations.

    - -
    -
    -
    - -
    Keywords
    -
    - drupal -
    - -
    Homepage
    -
    - https://www.drupal.org/project/drupal -
    - -
    License
    -
    GPL-2.0-or-later
    - - - -
    Releases
    -
    - - 8.7.10
    - - -
    Required by
    -
    - -
    -
    -
    -
    - -
    - - -
    -

    A collection of reusable Drupal drivers

    - -
    -
    -
    - -
    Keywords
    -
    - drupal - test - web -
    - -
    Homepage
    -
    - http://github.com/jhedstrom/DrupalDriver -
    - -
    License
    -
    GPL-2.0-or-later
    - -
    Authors
    -
    - Jonathan Hedstrom
    - - -
    Releases
    -
    - - v1.4.0
    - - -
    Required by
    -
    - -
    -
    -
    -
    - -
    - - -
    -

    Drupal extension for Behat

    - -
    -
    -
    - -
    Keywords
    -
    - drupal - test - web -
    - -
    Homepage
    -
    - http://drupal.org/project/drupalextension -
    - -
    License
    -
    GPL-2.0+
    - -
    Authors
    -
    - Jonathan Hedstrom, Melissa Anderson, Pieter Frenssen
    - - -
    Releases
    -
    - - v3.4.1
    - - -
    Required by
    -
    - -
    -
    -
    -
    -
    @@ -4409,6 +3977,7 @@
    Setting up this repository in your projects
    Releases
    + 1.8.0, 1.7.0
    @@ -4466,7 +4035,7 @@
    Setting up this repository in your projects
    Releases
    - 1.0.0
    + 1.3.0
    Required by
    @@ -4740,6 +4309,7 @@
    Setting up this repository in your projects
    Releases
    + 1.7.0, 1.6.0
    @@ -5440,7 +5010,7 @@
    Setting up this repository in your projects
    Authors
    - bojanz, dawehner, joachim, kaythay, rszrama, slashrsm, webflo
    + bojanz, dawehner, geek.merlin aka axel.rutz, joachim, kaythay, oknate, rszrama, slashrsm, webflo
    Support
    @@ -5874,7 +5444,7 @@
    Setting up this repository in your projects
    Authors
    - SeriousMatters, davy-r, redndahead
    + Berdir, SeriousMatters, davy-r, mbovan, redndahead
    Support
    @@ -5946,14 +5516,12 @@
    Setting up this repository in your projects
    Releases
    - 1.10.0, 1.9.0
    Required by
    @@ -6761,69 +6329,15 @@
    Setting up this repository in your projects
    Support
    -
    - -
    Releases
    -
    - - 1.2.0
    - - -
    Required by
    -
    - -
    - -
    -
    - -
    - - -
    -

    Allows users to schedule a revision to change state.

    - -
    -
    -
    - - -
    Homepage
    -
    - https://www.drupal.org/project/scheduled_transitions -
    - -
    License
    -
    GPL-2.0-or-later
    - -
    Authors
    -
    - dpi
    - -
    Support
    -
    -
    Releases
    - 1.0.0-rc1
    + 1.2.0
    Required by
    @@ -6837,58 +6351,53 @@
    Setting up this repository in your projects
    -
    - +
    -

    Metatag implementation of Schema.org structured data (JSON-LD)

    +

    Allows users to schedule a revision to change state.

    -
    Keywords
    -
    - Drupal -
    Homepage
    - https://www.drupal.org/project/schema_metatag + https://www.drupal.org/project/scheduled_transitions
    License
    -
    GPL-2.0+
    +
    GPL-2.0-or-later
    Authors
    - KarenS
    + dpi
    Support
    Releases
    - 1.4.0
    + 1.0.0-rc1
    Required by
    @@ -7926,12 +7435,6 @@
    Setting up this repository in your projects
    v3.2.3 -
    Required by
    -
    - -
    @@ -8005,7 +7508,7 @@
    Setting up this repository in your projects
    Support
    @@ -8013,7 +7516,7 @@
    Setting up this repository in your projects
    Releases
    - dev-develop
    + dev-develop @@ -8040,12 +7543,14 @@
    Setting up this repository in your projects
    +
    License
    +
    GPL-2.0-or-later
    Support
    @@ -8053,7 +7558,7 @@
    Setting up this repository in your projects
    Releases
    - dev-develop
    + dev-develop @@ -8237,7 +7742,7 @@
    Setting up this repository in your projects
    Releases
    - 6.4.1
    + 6.5.0
    Required by
    @@ -8355,6 +7860,63 @@
    Setting up this repository in your projects
    +
    + + +
    +

    Chosen is a JavaScript plugin that makes select boxes user-friendly. It is currently available in both jQuery and Prototype flavors.

    + +
    +
    +
    + +
    Keywords
    +
    + dropdown + form + input + multiselect + select + ui +
    + +
    Homepage
    +
    + https://harvesthq.github.io/chosen/ +
    + +
    License
    +
    MIT
    + +
    Authors
    +
    + Koen Punt, Patrick Filler, Christophe Coevoet, Ken Earley
    + + +
    Releases
    +
    + + v1.8.7
    + + +
    Required by
    +
    + +
    +
    +
    +
    +
    @@ -9153,7 +8715,7 @@
    Setting up this repository in your projects
    Releases
    - 1.9.3
    + 1.9.4
    Required by
    @@ -9215,6 +8777,53 @@
    Setting up this repository in your projects
    +
    + + +
    +

    A fast PHP7 implementation of PSR-7

    + +
    +
    +
    + +
    Keywords
    +
    + psr-17 + psr-7 +
    + +
    Homepage
    +
    + http://tnyholm.se +
    + +
    License
    +
    MIT
    + +
    Authors
    +
    + Tobias Nyholm, Martijn van der Ven
    + + +
    Releases
    +
    + + 1.2.1
    + + +
    +
    +
    +
    @@ -9301,8 +8910,7 @@
    Setting up this repository in your projects
    Releases
    - v9.99.99, - v2.0.18
    + v9.99.99
    Required by
    @@ -9310,7 +8918,6 @@
    Setting up this repository in your projects
    @@ -9346,7 +8953,7 @@
    Setting up this repository in your projects
    Releases
    - 2.5.2
    + 2.6.0
    Required by
    @@ -9399,7 +9006,7 @@
    Setting up this repository in your projects
    Releases
    - 1.4.8
    + 1.4.9
    Required by
    @@ -9437,13 +9044,13 @@
    Setting up this repository in your projects
    Authors
    - Greg Beaver, Andrei Zmievski, Stig Bakken
    + Andrei Zmievski, Stig Bakken, Greg Beaver
    Releases
    - v1.4.2
    + v1.4.3
    Required by
    @@ -9539,7 +9146,7 @@
    Setting up this repository in your projects
    Releases
    - v1.0.0
    + v1.0.1
    Required by
    @@ -9694,6 +9301,62 @@
    Setting up this repository in your projects
    +
    + + +
    +

    Factory interfaces for PSR-7 HTTP Message

    + +
    +
    +
    + +
    Keywords
    +
    + factory + http + message + stream + uri +
    + +
    Homepage
    +
    + http://php-http.org +
    + +
    License
    +
    MIT
    + +
    Authors
    +
    + Márk Sági-Kazár
    + + +
    Releases
    +
    + + v1.0.2
    + + +
    Required by
    +
    + +
    +
    +
    +
    +
    @@ -9939,7 +9602,7 @@
    Setting up this repository in your projects
    Releases
    - 1.9.0
    + 1.10.0
    Required by
    @@ -10389,6 +10052,62 @@
    Setting up this repository in your projects
    +
    + + +
    +

    Common interfaces for PSR-7 HTTP message factories

    + +
    +
    +
    + +
    Keywords
    +
    + factory + http + message + psr + psr-17 + psr-7 + request + response +
    + + +
    License
    +
    MIT
    + +
    Authors
    +
    + PHP-FIG
    + + +
    Releases
    +
    + + 1.0.1
    + + +
    Required by
    +
    + +
    +
    +
    +
    +
    @@ -10441,6 +10160,9 @@
    Setting up this repository in your projects
    @@ -10502,6 +10224,7 @@
    Setting up this repository in your projects
  • monolog/monolog
  • symfony-cmf/routing
  • symfony/debug
  • +
  • symfony/error-handler
  • symfony/http-kernel
  • @@ -10551,7 +10274,7 @@
    Setting up this repository in your projects
    Releases
    - v0.9.9
    + v0.9.12
    Required by
    @@ -11269,14 +10992,13 @@
    Setting up this repository in your projects
    Releases
    - 3.5.2
    + 3.5.3
    Required by
    @@ -11518,13 +11240,12 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8
    + v4.4.1
    Required by
    @@ -11567,7 +11288,7 @@
    Setting up this repository in your projects
    Releases
    - v3.4.35
    + v3.4.36
    Required by
    @@ -11616,15 +11337,14 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    @@ -11668,8 +11388,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.1, + v4.4.1, + v3.4.36
    Required by
    @@ -11728,8 +11449,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    @@ -11779,8 +11500,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    @@ -11788,6 +11509,7 @@
    Setting up this repository in your projects
    @@ -11830,8 +11552,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    @@ -11840,8 +11562,6 @@
    Setting up this repository in your projects
  • behat/behat
  • drupal/console-core
  • drupal/core
  • -
  • drupal/drupal-driver
  • -
  • drupal/drupal-extension
  • pdepend/pdepend
  • @@ -11884,14 +11604,14 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.1, + v4.4.1, + v3.4.36
    Required by
    +
    + + +
    +

    Symfony ErrorHandler Component

    + +
    +
    +
    + + +
    Homepage
    +
    + https://symfony.com +
    + +
    License
    +
    MIT
    + +
    Authors
    +
    + Fabien Potencier, Symfony Community
    + + +
    Releases
    +
    + + v4.4.1
    + + +
    Required by
    +
    + +
    +
    +
    +
    +
    @@ -11936,8 +11704,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    @@ -11948,7 +11716,6 @@
    Setting up this repository in your projects
  • consolidation/robo
  • drupal/console-core
  • drupal/core
  • -
  • drupal/drupal-extension
  • drush/drush
  • solarium/solarium
  • symfony/http-kernel
  • @@ -12050,8 +11817,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.1, + v4.4.1, + v3.4.36
    Required by
    @@ -12105,8 +11873,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    @@ -12160,8 +11928,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.1, + v4.4.1, + v3.4.36
    Required by
    @@ -12214,8 +11983,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    @@ -12271,7 +12040,7 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8
    + v5.0.1
    Required by
    @@ -12319,7 +12088,8 @@
    Setting up this repository in your projects
    Releases
    - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    @@ -12374,7 +12144,7 @@
    Setting up this repository in your projects
    Releases
    - v1.12.0
    + v1.13.1
    Required by
    @@ -12438,14 +12208,13 @@
    Setting up this repository in your projects
    Releases
    - v1.12.0
    + v1.13.1
    Required by
    @@ -12496,7 +12265,7 @@
    Setting up this repository in your projects
    Releases
    - v1.12.0
    + v1.13.1
    Required by
    @@ -12552,14 +12321,13 @@
    Setting up this repository in your projects
    Releases
    - v1.12.0
    + v1.13.1
    Required by
    Required by
    @@ -12672,7 +12440,7 @@
    Setting up this repository in your projects
    Releases
    - v1.12.0
    + v1.13.1
    Required by
    @@ -12727,7 +12495,7 @@
    Setting up this repository in your projects
    Releases
    - v1.12.0
    + v1.13.1
    Required by
    @@ -12783,7 +12551,7 @@
    Setting up this repository in your projects
    Releases
    - v1.12.0
    + v1.13.1
    Required by
    @@ -12839,7 +12607,7 @@
    Setting up this repository in your projects
    Releases
    - v1.12.0
    + v1.13.1
    Required by
    @@ -12887,8 +12655,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    @@ -12899,7 +12667,6 @@
    Setting up this repository in your projects
  • consolidation/site-process
  • drupal/console-core
  • drupal/core
  • -
  • drupal/drupal-driver
  • drush/drush
  • @@ -12943,12 +12710,13 @@
    Setting up this repository in your projects
    Authors
    - Symfony Community, Fabien Potencier
    + Fabien Potencier, Symfony Community
    Releases
    + v1.3.0, v1.2.0
    @@ -13004,7 +12772,7 @@
    Setting up this repository in your projects
    Releases
    - v3.4.35
    + v3.4.36
    Required by
    @@ -13053,7 +12821,7 @@
    Setting up this repository in your projects
    Releases
    - v3.4.35
    + v3.4.36
    Required by
    @@ -13110,7 +12878,7 @@
    Setting up this repository in your projects
    Releases
    - v1.1.8
    + v2.0.1
    Required by
    @@ -13159,8 +12927,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    @@ -13220,7 +12988,7 @@
    Setting up this repository in your projects
    Releases
    - v1.1.7
    + v2.0.1
    Required by
    @@ -13268,7 +13036,7 @@
    Setting up this repository in your projects
    Releases
    - v3.4.35
    + v3.4.36
    Required by
    @@ -13321,8 +13089,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.1, + v4.4.1, + v3.4.36
    Required by
    @@ -13331,6 +13100,7 @@
    Setting up this repository in your projects
  • drupal/devel
  • drush/drush
  • psy/psysh
  • +
  • symfony/error-handler
  • @@ -13372,15 +13142,14 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.1, + v3.4.36
    Required by
    Required by
    @@ -13807,19 +13577,16 @@
    Setting up this repository in your projects
    psr-7 -
    Homepage
    -
    - https://github.com/zendframework/zend-diactoros -
    License
    -
    BSD-2-Clause
    +
    BSD-3-Clause
    Releases
    + 2.2.1, 1.8.7
    diff --git a/app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json b/app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json similarity index 79% rename from app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json rename to app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json index 8f6dab7..2cad8d5 100644 --- a/app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +++ b/app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json @@ -120,6 +120,59 @@ "cors", "stack" ] + }, + "1.3.0": { + "name": "asm89/stack-cors", + "version": "1.3.0", + "version_normalized": "1.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/asm89/stack-cors.git", + "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08", + "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08", + "shasum": "" + }, + "require": { + "php": ">=5.5.9", + "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0", + "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.0 || ^4.8.10", + "squizlabs/php_codesniffer": "^2.3" + }, + "time": "2019-12-24T22:41:47+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "Asm89\\Stack\\": "src/Asm89/Stack/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alexander", + "email": "iam.asm89@gmail.com" + } + ], + "description": "Cross-origin resource sharing library and stack middleware", + "homepage": "https://github.com/asm89/stack-cors", + "keywords": [ + "cors", + "stack" + ] } }, "behat/behat": { @@ -570,19 +623,19 @@ } }, "behat/transliterator": { - "v1.2.0": { + "v1.3.0": { "name": "behat/transliterator", - "version": "v1.2.0", - "version_normalized": "1.2.0.0", + "version": "v1.3.0", + "version_normalized": "1.3.0.0", "source": { "type": "git", "url": "https://github.com/Behat/Transliterator.git", - "reference": "826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c" + "reference": "3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Transliterator/zipball/826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c", - "reference": "826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c", + "url": "https://api.github.com/repos/Behat/Transliterator/zipball/3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc", + "reference": "3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc", "shasum": "" }, "require": { @@ -590,9 +643,10 @@ }, "require-dev": { "chuyskywalker/rolling-curl": "^3.1", - "php-yaoi/php-yaoi": "^1.0" + "php-yaoi/php-yaoi": "^1.0", + "phpunit/phpunit": "^4.8.36|^6.3" }, - "time": "2017-04-04T11:38:05+00:00", + "time": "2020-01-14T16:39:13+00:00", "type": "library", "extra": { "branch-alias": { @@ -600,8 +654,8 @@ } }, "autoload": { - "psr-0": { - "Behat\\Transliterator": "src/" + "psr-4": { + "Behat\\Transliterator\\": "src/Behat/Transliterator" } }, "notification-url": "https://packagist.org/downloads/", @@ -655,45 +709,6 @@ "type": "bower-asset" } }, - "brumann/polyfill-unserialize": { - "v1.0.4": { - "name": "brumann/polyfill-unserialize", - "version": "v1.0.4", - "version_normalized": "1.0.4.0", - "source": { - "type": "git", - "url": "https://github.com/dbrumann/polyfill-unserialize.git", - "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008", - "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008", - "shasum": "" - }, - "require": { - "php": "^5.3|^7.0" - }, - "time": "2019-07-14T23:16:24+00:00", - "type": "library", - "autoload": { - "psr-4": { - "Brumann\\Polyfill\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Denis Brumann", - "email": "denis.brumann@sensiolabs.de" - } - ], - "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions." - } - }, "caxy/php-htmldiff": { "v0.1.9": { "name": "caxy/php-htmldiff", @@ -989,6 +1004,68 @@ "validation", "versioning" ] + }, + "1.5.1": { + "name": "composer/semver", + "version": "1.5.1", + "version_normalized": "1.5.1.0", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.5 || ^5.0.5" + }, + "time": "2020-01-13T12:06:48+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ] } }, "consolidation/annotated-command": { @@ -2190,6 +2267,75 @@ } }, "doctrine/annotations": { + "v1.4.0": { + "name": "doctrine/annotations", + "version": "v1.4.0", + "version_normalized": "1.4.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/annotations.git", + "reference": "54cacc9b81758b14e3ce750f205a393d52339e97" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97", + "reference": "54cacc9b81758b14e3ce750f205a393d52339e97", + "shasum": "" + }, + "require": { + "doctrine/lexer": "1.*", + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "doctrine/cache": "1.*", + "phpunit/phpunit": "^5.7" + }, + "time": "2017-02-24T16:22:25+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Docblock Annotations Parser", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "annotations", + "docblock", + "parser" + ] + }, "v1.8.0": { "name": "doctrine/annotations", "version": "v1.8.0", @@ -2344,34 +2490,34 @@ "riak", "xcache" ] - } - }, - "doctrine/collections": { - "1.6.4": { - "name": "doctrine/collections", - "version": "1.6.4", - "version_normalized": "1.6.4.0", + }, + "v1.6.2": { + "name": "doctrine/cache", + "version": "v1.6.2", + "version_normalized": "1.6.2.0", "source": { "type": "git", - "url": "https://github.com/doctrine/collections.git", - "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7" + "url": "https://github.com/doctrine/cache.git", + "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", - "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", + "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", + "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "~5.5|~7.0" + }, + "conflict": { + "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan-shim": "^0.9.2", - "phpunit/phpunit": "^7.0", - "vimeo/psalm": "^3.2.2" + "phpunit/phpunit": "~4.8|~5.0", + "predis/predis": "~1.0", + "satooshi/php-coveralls": "~0.6" }, - "time": "2019-11-13T13:07:11+00:00", + "time": "2017-07-22T12:49:21+00:00", "type": "library", "extra": { "branch-alias": { @@ -2380,7 +2526,7 @@ }, "autoload": { "psr-4": { - "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" } }, "notification-url": "https://packagist.org/downloads/", @@ -2388,10 +2534,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -2400,6 +2542,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -2409,42 +2555,181 @@ "email": "schmittjoh@gmail.com" } ], - "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", - "homepage": "https://www.doctrine-project.org/projects/collections.html", + "description": "Caching library offering an object-oriented API for many cache backends", + "homepage": "http://www.doctrine-project.org", "keywords": [ - "array", - "collections", - "iterators", - "php" + "cache", + "caching" ] } }, - "doctrine/common": { - "v2.11.0": { - "name": "doctrine/common", - "version": "v2.11.0", - "version_normalized": "2.11.0.0", + "doctrine/collections": { + "v1.4.0": { + "name": "doctrine/collections", + "version": "v1.4.0", + "version_normalized": "1.4.0.0", "source": { "type": "git", - "url": "https://github.com/doctrine/common.git", - "reference": "b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff" + "url": "https://github.com/doctrine/collections.git", + "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff", - "reference": "b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff", + "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", + "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", "shasum": "" }, "require": { - "doctrine/annotations": "^1.0", - "doctrine/cache": "^1.0", - "doctrine/collections": "^1.0", - "doctrine/event-manager": "^1.0", - "doctrine/inflector": "^1.0", - "doctrine/lexer": "^1.0", - "doctrine/persistence": "^1.1", - "doctrine/reflection": "^1.0", - "php": "^7.1" + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "doctrine/coding-standard": "~0.1@dev", + "phpunit/phpunit": "^5.7" + }, + "time": "2017-01-03T10:49:41+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3.x-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine\\Common\\Collections\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Collections Abstraction library", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "array", + "collections", + "iterator" + ] + }, + "1.6.4": { + "name": "doctrine/collections", + "version": "1.6.4", + "version_normalized": "1.6.4.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/collections.git", + "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", + "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan-shim": "^0.9.2", + "phpunit/phpunit": "^7.0", + "vimeo/psalm": "^3.2.2" + }, + "time": "2019-11-13T13:07:11+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.6.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", + "keywords": [ + "array", + "collections", + "iterators", + "php" + ] + } + }, + "doctrine/common": { + "2.12.0": { + "name": "doctrine/common", + "version": "2.12.0", + "version_normalized": "2.12.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/common.git", + "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/common/zipball/2053eafdf60c2172ee1373d1b9289ba1db7f1fc6", + "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6", + "shasum": "" + }, + "require": { + "doctrine/annotations": "^1.0", + "doctrine/cache": "^1.0", + "doctrine/collections": "^1.0", + "doctrine/event-manager": "^1.0", + "doctrine/inflector": "^1.0", + "doctrine/lexer": "^1.0", + "doctrine/persistence": "^1.1", + "doctrine/reflection": "^1.0", + "php": "^7.1" }, "require-dev": { "doctrine/coding-standard": "^1.0", @@ -2454,7 +2739,7 @@ "squizlabs/php_codesniffer": "^3.0", "symfony/phpunit-bridge": "^4.0.5" }, - "time": "2019-09-10T10:10:14+00:00", + "time": "2020-01-10T15:49:25+00:00", "type": "library", "extra": { "branch-alias": { @@ -2503,6 +2788,80 @@ "doctrine", "php" ] + }, + "v2.7.3": { + "name": "doctrine/common", + "version": "v2.7.3", + "version_normalized": "2.7.3.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/common.git", + "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9", + "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9", + "shasum": "" + }, + "require": { + "doctrine/annotations": "1.*", + "doctrine/cache": "1.*", + "doctrine/collections": "1.*", + "doctrine/inflector": "1.*", + "doctrine/lexer": "1.*", + "php": "~5.6|~7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.4.6" + }, + "time": "2017-07-22T08:35:12+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "lib/Doctrine/Common" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Common Library for Doctrine projects", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "annotations", + "collections", + "eventmanager", + "persistence", + "spl" + ] } }, "doctrine/event-manager": { @@ -2585,32 +2944,32 @@ } }, "doctrine/inflector": { - "1.3.1": { + "v1.2.0": { "name": "doctrine/inflector", - "version": "1.3.1", - "version_normalized": "1.3.1.0", + "version": "v1.2.0", + "version_normalized": "1.2.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1" + "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1", - "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", + "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^7.0" }, "require-dev": { "phpunit/phpunit": "^6.2" }, - "time": "2019-10-30T19:59:35+00:00", + "time": "2017-07-22T12:18:28+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { @@ -2623,10 +2982,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -2635,6 +2990,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -2652,46 +3011,38 @@ "singularize", "string" ] - } - }, - "doctrine/instantiator": { - "1.3.0": { - "name": "doctrine/instantiator", - "version": "1.3.0", - "version_normalized": "1.3.0.0", + }, + "1.3.1": { + "name": "doctrine/inflector", + "version": "1.3.1", + "version_normalized": "1.3.1.0", "source": { "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" + "url": "https://github.com/doctrine/inflector.git", + "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1", + "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1", "shasum": "" }, "require": { "php": "^7.1" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^0.13", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-shim": "^0.11", - "phpunit/phpunit": "^7.0" + "phpunit/phpunit": "^6.2" }, - "time": "2019-10-21T16:45:58+00:00", + "time": "2019-10-30T19:59:35+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.3.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" } }, "notification-url": "https://packagist.org/downloads/", @@ -2700,8 +3051,84 @@ ], "authors": [ { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Common String Manipulations with regard to casing and singular/plural rules.", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "inflection", + "pluralize", + "singularize", + "string" + ] + } + }, + "doctrine/instantiator": { + "1.3.0": { + "name": "doctrine/instantiator", + "version": "1.3.0", + "version_normalized": "1.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", + "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.13", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-shim": "^0.11", + "phpunit/phpunit": "^7.0" + }, + "time": "2019-10-21T16:45:58+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", "homepage": "http://ocramius.github.com/" } ], @@ -2714,6 +3141,67 @@ } }, "doctrine/lexer": { + "1.0.2": { + "name": "doctrine/lexer", + "version": "1.0.2", + "version_normalized": "1.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "^4.5" + }, + "time": "2019-06-08T11:03:04+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ] + }, "1.2.0": { "name": "doctrine/lexer", "version": "1.2.0", @@ -2779,6 +3267,7 @@ } }, "doctrine/persistence": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "1.2.0": { "name": "doctrine/persistence", "version": "1.2.0", @@ -2792,6 +3281,21 @@ "type": "zip", "url": "https://api.github.com/repos/doctrine/persistence/zipball/43526ae63312942e5316100bb3ed589ba1aba491", "reference": "43526ae63312942e5316100bb3ed589ba1aba491", +======= + "1.3.5": { + "name": "doctrine/persistence", + "version": "1.3.5", + "version_normalized": "1.3.5.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/persistence.git", + "reference": "be70c016fdcd44a428405ee062ebcdd01a6867cd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/be70c016fdcd44a428405ee062ebcdd01a6867cd", + "reference": "be70c016fdcd44a428405ee062ebcdd01a6867cd", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { @@ -2810,7 +3314,11 @@ "phpstan/phpstan": "^0.8", "phpunit/phpunit": "^7.0" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-04-23T12:39:21+00:00", +======= + "time": "2020-01-14T18:44:12+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "type": "library", "extra": { "branch-alias": { @@ -2864,19 +3372,19 @@ } }, "doctrine/reflection": { - "v1.0.0": { + "v1.1.0": { "name": "doctrine/reflection", - "version": "v1.0.0", - "version_normalized": "1.0.0.0", + "version": "v1.1.0", + "version_normalized": "1.1.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/reflection.git", - "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6" + "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6", - "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6", + "url": "https://api.github.com/repos/doctrine/reflection/zipball/bc420ead87fdfe08c03ecc3549db603a45b06d4c", + "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c", "shasum": "" }, "require": { @@ -2884,15 +3392,17 @@ "ext-tokenizer": "*", "php": "^7.1" }, + "conflict": { + "doctrine/common": "<2.9" + }, "require-dev": { - "doctrine/coding-standard": "^4.0", - "doctrine/common": "^2.8", - "phpstan/phpstan": "^0.9.2", - "phpstan/phpstan-phpunit": "^0.9.4", - "phpunit/phpunit": "^7.0", - "squizlabs/php_codesniffer": "^3.0" + "doctrine/coding-standard": "^5.0", + "doctrine/common": "^2.10", + "phpstan/phpstan": "^0.11.0", + "phpstan/phpstan-phpunit": "^0.11.0", + "phpunit/phpunit": "^7.0" }, - "time": "2018-06-14T14:45:07+00:00", + "time": "2020-01-08T19:53:19+00:00", "type": "library", "extra": { "branch-alias": { @@ -2909,6 +3419,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -2917,10 +3431,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -2934,10 +3444,11 @@ "email": "ocramius@gmail.com" } ], - "description": "Doctrine Reflection component", + "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.", "homepage": "https://www.doctrine-project.org/projects/reflection.html", "keywords": [ - "reflection" + "reflection", + "static" ] } }, @@ -3357,7 +3868,12 @@ }, "require": { "drupal/chosen_lib": "*", +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "drupal/core": "~8.0" +======= + "drupal/core": "^8 || ^9", + "harvesthq/chosen": "^1.8.7" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json }, "type": "drupal-module", "extra": { @@ -3365,8 +3881,13 @@ "dev-2.x": "2.x-dev" }, "drupal": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "version": "8.x-2.8", "datestamp": "1565942881", +======= + "version": "8.x-2.9", + "datestamp": "1576963005", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3504,7 +4025,7 @@ "version_normalized": "2.8.0.0", "require": { "drupal/chosen": "self.version", - "drupal/core": "~8.0", + "drupal/core": "^8 || ^9", "php": ">=5.6.0" }, "type": "metapackage", @@ -3513,8 +4034,13 @@ "dev-2.x": "2.x-dev" }, "drupal": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "version": "8.x-2.8", "datestamp": "1565942881", +======= + "version": "8.x-2.9", + "datestamp": "1576963005", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3818,7 +4344,7 @@ "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8 || ^9" }, "suggest": { "drupal/config_split": "Split site configuration for different environments." @@ -4692,26 +5218,26 @@ } }, "drupal/core": { - "8.7.10": { + "8.8.1": { "name": "drupal/core", - "version": "8.7.10", - "version_normalized": "8.7.10.0", + "version": "8.8.1", + "version_normalized": "8.8.1.0", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "02400f3ac4970b218dc63064895b3cbbe8576ad9" + "reference": "d339279f4c4b89477e0f4a8b775eb5dcb86b3087" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/02400f3ac4970b218dc63064895b3cbbe8576ad9", - "reference": "02400f3ac4970b218dc63064895b3cbbe8576ad9", + "url": "https://api.github.com/repos/drupal/core/zipball/d339279f4c4b89477e0f4a8b775eb5dcb86b3087", + "reference": "d339279f4c4b89477e0f4a8b775eb5dcb86b3087", "shasum": "" }, "require": { "asm89/stack-cors": "^1.1", "composer/semver": "^1.0", - "doctrine/annotations": "^1.2", - "doctrine/common": "^2.5", + "doctrine/annotations": "^1.4", + "doctrine/common": "^2.7", "easyrdf/easyrdf": "^0.9", "egulias/email-validator": "^2.0", "ext-date": "*", @@ -4727,11 +5253,10 @@ "ext-spl": "*", "ext-tokenizer": "*", "ext-xml": "*", - "guzzlehttp/guzzle": "^6.2.1", + "guzzlehttp/guzzle": "^6.3", "masterminds/html5": "^2.1", - "paragonie/random_compat": "^1.0|^2.0|^9.99.99", - "pear/archive_tar": "^1.4", - "php": "^5.5.9|>=7.0.8", + "pear/archive_tar": "^1.4.9", + "php": ">=7.0.8", "stack/builder": "^1.0", "symfony-cmf/routing": "^1.4", "symfony/class-loader": "~3.4.0", @@ -4749,13 +5274,13 @@ "symfony/validator": "~3.4.0", "symfony/yaml": "~3.4.5", "twig/twig": "^1.38.2", - "typo3/phar-stream-wrapper": "^2.1.1", - "zendframework/zend-diactoros": "^1.1", - "zendframework/zend-feed": "^2.4" + "typo3/phar-stream-wrapper": "^3.1.3", + "zendframework/zend-diactoros": "^1.8", + "zendframework/zend-feed": "^2.12" }, "conflict": { - "drush/drush": "<8.1.10", - "symfony/dom-crawler": ">=4" + "drupal/pathauto": "<1.6", + "drush/drush": "<8.1.10" }, "replace": { "drupal/action": "self.version", @@ -4771,6 +5296,7 @@ "drupal/book": "self.version", "drupal/breakpoint": "self.version", "drupal/ckeditor": "self.version", + "drupal/claro": "self.version", "drupal/classy": "self.version", "drupal/color": "self.version", "drupal/comment": "self.version", @@ -4790,6 +5316,7 @@ "drupal/core-discovery": "self.version", "drupal/core-event-dispatcher": "self.version", "drupal/core-file-cache": "self.version", + "drupal/core-file-security": "self.version", "drupal/core-filesystem": "self.version", "drupal/core-gettext": "self.version", "drupal/core-graph": "self.version", @@ -4817,6 +5344,7 @@ "drupal/forum": "self.version", "drupal/hal": "self.version", "drupal/help": "self.version", + "drupal/help_topics": "self.version", "drupal/history": "self.version", "drupal/image": "self.version", "drupal/inline_form_errors": "self.version", @@ -4839,6 +5367,7 @@ "drupal/options": "self.version", "drupal/page_cache": "self.version", "drupal/path": "self.version", + "drupal/path_alias": "self.version", "drupal/quickedit": "self.version", "drupal/rdf": "self.version", "drupal/responsive_image": "self.version", @@ -4867,53 +5396,35 @@ "drupal/workflows": "self.version", "drupal/workspaces": "self.version" }, - "require-dev": { - "behat/mink": "1.7.x-dev", - "behat/mink-goutte-driver": "^1.2", - "behat/mink-selenium2-driver": "1.3.x-dev", - "drupal/coder": "^8.3.1", - "jcalderonzumba/gastonjs": "^1.0.2", - "jcalderonzumba/mink-phantomjs-driver": "^0.3.1", - "justinrainbow/json-schema": "^5.2", - "mikey179/vfsstream": "^1.2", - "phpspec/prophecy": "^1.7", - "phpunit/phpunit": "^4.8.35 || ^6.5", - "symfony/css-selector": "^3.4.0", - "symfony/debug": "^3.4.0", - "symfony/phpunit-bridge": "^3.4.3" - }, - "time": "2019-11-13T23:20:55+00:00", + "time": "2019-12-18T10:34:03+00:00", "type": "drupal-core", "extra": { - "merge-plugin": { - "require": [ - "core/lib/Drupal/Component/Annotation/composer.json", - "core/lib/Drupal/Component/Assertion/composer.json", - "core/lib/Drupal/Component/Bridge/composer.json", - "core/lib/Drupal/Component/ClassFinder/composer.json", - "core/lib/Drupal/Component/Datetime/composer.json", - "core/lib/Drupal/Component/DependencyInjection/composer.json", - "core/lib/Drupal/Component/Diff/composer.json", - "core/lib/Drupal/Component/Discovery/composer.json", - "core/lib/Drupal/Component/EventDispatcher/composer.json", - "core/lib/Drupal/Component/FileCache/composer.json", - "core/lib/Drupal/Component/FileSystem/composer.json", - "core/lib/Drupal/Component/Gettext/composer.json", - "core/lib/Drupal/Component/Graph/composer.json", - "core/lib/Drupal/Component/HttpFoundation/composer.json", - "core/lib/Drupal/Component/PhpStorage/composer.json", - "core/lib/Drupal/Component/Plugin/composer.json", - "core/lib/Drupal/Component/ProxyBuilder/composer.json", - "core/lib/Drupal/Component/Render/composer.json", - "core/lib/Drupal/Component/Serialization/composer.json", - "core/lib/Drupal/Component/Transliteration/composer.json", - "core/lib/Drupal/Component/Utility/composer.json", - "core/lib/Drupal/Component/Uuid/composer.json", - "core/lib/Drupal/Component/Version/composer.json" - ], - "recurse": false, - "replace": false, - "merge-extra": false + "drupal-scaffold": { + "file-mapping": { + "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", + "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", + "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc", + "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore", + "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json", + "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php", + "[web-root]/.htaccess": "assets/scaffold/files/htaccess", + "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", + "[web-root]/index.php": "assets/scaffold/files/index.php", + "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", + "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt", + "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", + "[web-root]/update.php": "assets/scaffold/files/update.php", + "[web-root]/web.config": "assets/scaffold/files/web.config", + "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", + "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml", + "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php", + "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", + "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml", + "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php", + "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", + "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", + "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt" + } } }, "autoload": { @@ -4937,252 +5448,92 @@ "GPL-2.0-or-later" ], "description": "Drupal is an open source content management platform powering millions of websites and applications." - }, - "8.7.9": { - "name": "drupal/core", - "version": "8.7.9", - "version_normalized": "8.7.9.0", +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + } + }, + "drupal/core-recommended": { + "8.8.1": { + "name": "drupal/core-recommended", + "version": "8.8.1", + "version_normalized": "8.8.1.0", "source": { "type": "git", - "url": "https://github.com/drupal/core.git", - "reference": "881e60062ea86a8f6809a298f09f56afd20b3cf3" + "url": "https://github.com/drupal/core-recommended.git", + "reference": "a2215237489ccb456219bd30b26649e6899b6f35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/881e60062ea86a8f6809a298f09f56afd20b3cf3", - "reference": "881e60062ea86a8f6809a298f09f56afd20b3cf3", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/a2215237489ccb456219bd30b26649e6899b6f35", + "reference": "a2215237489ccb456219bd30b26649e6899b6f35", "shasum": "" }, "require": { - "asm89/stack-cors": "^1.1", - "composer/semver": "^1.0", - "doctrine/annotations": "^1.2", - "doctrine/common": "^2.5", - "easyrdf/easyrdf": "^0.9", - "egulias/email-validator": "^2.0", - "ext-date": "*", - "ext-dom": "*", - "ext-filter": "*", - "ext-gd": "*", - "ext-hash": "*", - "ext-json": "*", - "ext-pcre": "*", - "ext-pdo": "*", - "ext-session": "*", - "ext-simplexml": "*", - "ext-spl": "*", - "ext-tokenizer": "*", - "ext-xml": "*", - "guzzlehttp/guzzle": "^6.2.1", - "masterminds/html5": "^2.1", - "paragonie/random_compat": "^1.0|^2.0|^9.99.99", - "pear/archive_tar": "^1.4", - "php": "^5.5.9|>=7.0.8", - "stack/builder": "^1.0", - "symfony-cmf/routing": "^1.4", - "symfony/class-loader": "~3.4.0", - "symfony/console": "~3.4.0", - "symfony/dependency-injection": "~3.4.26", - "symfony/event-dispatcher": "~3.4.0", - "symfony/http-foundation": "~3.4.27", - "symfony/http-kernel": "~3.4.14", - "symfony/polyfill-iconv": "^1.0", - "symfony/process": "~3.4.0", - "symfony/psr-http-message-bridge": "^1.1.2", - "symfony/routing": "~3.4.0", - "symfony/serializer": "~3.4.0", - "symfony/translation": "~3.4.0", - "symfony/validator": "~3.4.0", - "symfony/yaml": "~3.4.5", - "twig/twig": "^1.38.2", - "typo3/phar-stream-wrapper": "^2.1.1", - "zendframework/zend-diactoros": "^1.1", - "zendframework/zend-feed": "^2.4" + "asm89/stack-cors": "1.2.0", + "composer/installers": "v1.7.0", + "composer/semver": "1.5.0", + "doctrine/annotations": "v1.4.0", + "doctrine/cache": "v1.6.2", + "doctrine/collections": "v1.4.0", + "doctrine/common": "v2.7.3", + "doctrine/inflector": "v1.2.0", + "doctrine/lexer": "1.0.2", + "drupal/core": "8.8.1", + "easyrdf/easyrdf": "0.9.1", + "egulias/email-validator": "2.1.11", + "guzzlehttp/guzzle": "6.3.3", + "guzzlehttp/promises": "v1.3.1", + "guzzlehttp/psr7": "1.6.1", + "masterminds/html5": "2.3.0", + "paragonie/random_compat": "v9.99.99", + "pear/archive_tar": "1.4.9", + "pear/console_getopt": "v1.4.2", + "pear/pear-core-minimal": "v1.10.9", + "pear/pear_exception": "v1.0.0", + "psr/container": "1.0.0", + "psr/http-message": "1.0.1", + "psr/log": "1.1.0", + "ralouphie/getallheaders": "3.0.3", + "stack/builder": "v1.0.5", + "symfony-cmf/routing": "1.4.1", + "symfony/class-loader": "v3.4.35", + "symfony/console": "v3.4.35", + "symfony/debug": "v3.4.35", + "symfony/dependency-injection": "v3.4.35", + "symfony/event-dispatcher": "v3.4.35", + "symfony/http-foundation": "v3.4.35", + "symfony/http-kernel": "v3.4.35", + "symfony/polyfill-ctype": "v1.12.0", + "symfony/polyfill-iconv": "v1.12.0", + "symfony/polyfill-mbstring": "v1.12.0", + "symfony/polyfill-php56": "v1.12.0", + "symfony/polyfill-php70": "v1.12.0", + "symfony/polyfill-util": "v1.12.0", + "symfony/process": "v3.4.35", + "symfony/psr-http-message-bridge": "v1.1.2", + "symfony/routing": "v3.4.35", + "symfony/serializer": "v3.4.35", + "symfony/translation": "v3.4.35", + "symfony/validator": "v3.4.35", + "symfony/yaml": "v3.4.35", + "twig/twig": "v1.42.3", + "typo3/phar-stream-wrapper": "v3.1.3", + "zendframework/zend-diactoros": "1.8.7", + "zendframework/zend-escaper": "2.6.1", + "zendframework/zend-feed": "2.12.0", + "zendframework/zend-stdlib": "3.2.1" }, "conflict": { - "drush/drush": "<8.1.10", - "symfony/dom-crawler": ">=4" - }, - "replace": { - "drupal/action": "self.version", - "drupal/aggregator": "self.version", - "drupal/automated_cron": "self.version", - "drupal/ban": "self.version", - "drupal/bartik": "self.version", - "drupal/basic_auth": "self.version", - "drupal/big_pipe": "self.version", - "drupal/block": "self.version", - "drupal/block_content": "self.version", - "drupal/block_place": "self.version", - "drupal/book": "self.version", - "drupal/breakpoint": "self.version", - "drupal/ckeditor": "self.version", - "drupal/classy": "self.version", - "drupal/color": "self.version", - "drupal/comment": "self.version", - "drupal/config": "self.version", - "drupal/config_translation": "self.version", - "drupal/contact": "self.version", - "drupal/content_moderation": "self.version", - "drupal/content_translation": "self.version", - "drupal/contextual": "self.version", - "drupal/core-annotation": "self.version", - "drupal/core-assertion": "self.version", - "drupal/core-bridge": "self.version", - "drupal/core-class-finder": "self.version", - "drupal/core-datetime": "self.version", - "drupal/core-dependency-injection": "self.version", - "drupal/core-diff": "self.version", - "drupal/core-discovery": "self.version", - "drupal/core-event-dispatcher": "self.version", - "drupal/core-file-cache": "self.version", - "drupal/core-filesystem": "self.version", - "drupal/core-gettext": "self.version", - "drupal/core-graph": "self.version", - "drupal/core-http-foundation": "self.version", - "drupal/core-php-storage": "self.version", - "drupal/core-plugin": "self.version", - "drupal/core-proxy-builder": "self.version", - "drupal/core-render": "self.version", - "drupal/core-serialization": "self.version", - "drupal/core-transliteration": "self.version", - "drupal/core-utility": "self.version", - "drupal/core-uuid": "self.version", - "drupal/core-version": "self.version", - "drupal/datetime": "self.version", - "drupal/datetime_range": "self.version", - "drupal/dblog": "self.version", - "drupal/dynamic_page_cache": "self.version", - "drupal/editor": "self.version", - "drupal/entity_reference": "self.version", - "drupal/field": "self.version", - "drupal/field_layout": "self.version", - "drupal/field_ui": "self.version", - "drupal/file": "self.version", - "drupal/filter": "self.version", - "drupal/forum": "self.version", - "drupal/hal": "self.version", - "drupal/help": "self.version", - "drupal/history": "self.version", - "drupal/image": "self.version", - "drupal/inline_form_errors": "self.version", - "drupal/jsonapi": "self.version", - "drupal/language": "self.version", - "drupal/layout_builder": "self.version", - "drupal/layout_discovery": "self.version", - "drupal/link": "self.version", - "drupal/locale": "self.version", - "drupal/media": "self.version", - "drupal/media_library": "self.version", - "drupal/menu_link_content": "self.version", - "drupal/menu_ui": "self.version", - "drupal/migrate": "self.version", - "drupal/migrate_drupal": "self.version", - "drupal/migrate_drupal_multilingual": "self.version", - "drupal/migrate_drupal_ui": "self.version", - "drupal/minimal": "self.version", - "drupal/node": "self.version", - "drupal/options": "self.version", - "drupal/page_cache": "self.version", - "drupal/path": "self.version", - "drupal/quickedit": "self.version", - "drupal/rdf": "self.version", - "drupal/responsive_image": "self.version", - "drupal/rest": "self.version", - "drupal/search": "self.version", - "drupal/serialization": "self.version", - "drupal/settings_tray": "self.version", - "drupal/seven": "self.version", - "drupal/shortcut": "self.version", - "drupal/simpletest": "self.version", - "drupal/standard": "self.version", - "drupal/stark": "self.version", - "drupal/statistics": "self.version", - "drupal/syslog": "self.version", - "drupal/system": "self.version", - "drupal/taxonomy": "self.version", - "drupal/telephone": "self.version", - "drupal/text": "self.version", - "drupal/toolbar": "self.version", - "drupal/tour": "self.version", - "drupal/tracker": "self.version", - "drupal/update": "self.version", - "drupal/user": "self.version", - "drupal/views": "self.version", - "drupal/views_ui": "self.version", - "drupal/workflows": "self.version", - "drupal/workspaces": "self.version" - }, - "require-dev": { - "behat/mink": "1.7.x-dev", - "behat/mink-goutte-driver": "^1.2", - "behat/mink-selenium2-driver": "1.3.x-dev", - "drupal/coder": "^8.3.1", - "jcalderonzumba/gastonjs": "^1.0.2", - "jcalderonzumba/mink-phantomjs-driver": "^0.3.1", - "justinrainbow/json-schema": "^5.2", - "mikey179/vfsstream": "^1.2", - "phpspec/prophecy": "^1.7", - "phpunit/phpunit": "^4.8.35 || ^6.5", - "symfony/css-selector": "^3.4.0", - "symfony/debug": "^3.4.0", - "symfony/phpunit-bridge": "^3.4.3" - }, - "time": "2019-11-06T18:00:38+00:00", - "type": "drupal-core", - "extra": { - "merge-plugin": { - "require": [ - "core/lib/Drupal/Component/Annotation/composer.json", - "core/lib/Drupal/Component/Assertion/composer.json", - "core/lib/Drupal/Component/Bridge/composer.json", - "core/lib/Drupal/Component/ClassFinder/composer.json", - "core/lib/Drupal/Component/Datetime/composer.json", - "core/lib/Drupal/Component/DependencyInjection/composer.json", - "core/lib/Drupal/Component/Diff/composer.json", - "core/lib/Drupal/Component/Discovery/composer.json", - "core/lib/Drupal/Component/EventDispatcher/composer.json", - "core/lib/Drupal/Component/FileCache/composer.json", - "core/lib/Drupal/Component/FileSystem/composer.json", - "core/lib/Drupal/Component/Gettext/composer.json", - "core/lib/Drupal/Component/Graph/composer.json", - "core/lib/Drupal/Component/HttpFoundation/composer.json", - "core/lib/Drupal/Component/PhpStorage/composer.json", - "core/lib/Drupal/Component/Plugin/composer.json", - "core/lib/Drupal/Component/ProxyBuilder/composer.json", - "core/lib/Drupal/Component/Render/composer.json", - "core/lib/Drupal/Component/Serialization/composer.json", - "core/lib/Drupal/Component/Transliteration/composer.json", - "core/lib/Drupal/Component/Utility/composer.json", - "core/lib/Drupal/Component/Uuid/composer.json", - "core/lib/Drupal/Component/Version/composer.json" - ], - "recurse": false, - "replace": false, - "merge-extra": false - } - }, - "autoload": { - "psr-4": { - "Drupal\\Core\\": "lib/Drupal/Core", - "Drupal\\Component\\": "lib/Drupal/Component", - "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver" - }, - "classmap": [ - "lib/Drupal.php", - "lib/Drupal/Component/Utility/Timer.php", - "lib/Drupal/Component/Utility/Unicode.php", - "lib/Drupal/Core/Database/Database.php", - "lib/Drupal/Core/DrupalKernel.php", - "lib/Drupal/Core/DrupalKernelInterface.php", - "lib/Drupal/Core/Site/Settings.php" - ] + "webflo/drupal-core-strict": "*" }, + "time": "2019-12-18T10:34:03+00:00", + "type": "metapackage", "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], - "description": "Drupal is an open source content management platform powering millions of websites and applications." + "description": "Locked core dependencies; require this project INSTEAD OF drupal/core." +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json } }, "drupal/core-render": { @@ -5265,32 +5616,32 @@ } }, "drupal/crop": { - "1.5.0": { + "2.0.0": { "name": "drupal/crop", - "version": "1.5.0", - "version_normalized": "1.5.0.0", + "version": "2.0.0", + "version_normalized": "2.0.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/crop.git", - "reference": "8.x-1.5" + "reference": "8.x-2.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/crop-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "bb275293508cb3988ca6ab766dc1f6ecc22cc03d" + "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.0.zip", + "reference": "8.x-2.0", + "shasum": "7e948d35f5d8c0a24515d3b7e37391da4d0b19d8" }, "require": { - "drupal/core": "*" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-1.5", - "datestamp": "1516357085", + "version": "8.x-2.0", + "datestamp": "1578492183", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5622,7 +5973,7 @@ }, "drupal": { "version": "8.x-1.0-rc2", - "datestamp": "1530178424", + "datestamp": "1578322688", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -5723,7 +6074,7 @@ "datestamp": "1555407785", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "Alpha releases are not covered by Drupal security advisories." } } }, @@ -6049,6 +6400,66 @@ "issues": "http://drupal.org/project/dynamic_entity_reference", "irc": "irc://irc.freenode.org/drupal-contribute" } + }, + "1.8.0": { + "name": "drupal/dynamic_entity_reference", + "version": "1.8.0", + "version_normalized": "1.8.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git", + "reference": "8.x-1.8" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "97c6f9fb0652343eab24443e8e4ed9a33037db53" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.8", + "datestamp": "1575458288", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Lee Rowlands", + "homepage": "https://www.drupal.org/u/larowlan", + "role": "Maintainer" + }, + { + "name": "Jibran Ijaz", + "homepage": "https://www.drupal.org/u/jibran", + "role": "Maintainer" + }, + { + "name": "larowlan", + "homepage": "https://www.drupal.org/user/395439" + } + ], + "description": "Provides a field that allows an entity-reference field to reference more than one entity type.", + "homepage": "http://drupal.org/project/dynamic_entity_reference", + "support": { + "source": "http://cgit.drupalcode.org/dynamic_entity_reference", + "issues": "http://drupal.org/project/dynamic_entity_reference", + "irc": "irc://irc.freenode.org/drupal-contribute" + } } }, "drupal/embed": { @@ -6068,7 +6479,11 @@ "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a" }, "require": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "drupal/core": "~8.0" +======= + "drupal/core": "^8 || ^9" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json }, "type": "drupal-module", "extra": { @@ -6479,6 +6894,69 @@ "support": { "source": "https://git.drupalcode.org/project/entity_reference_revisions" } + }, + "1.7.0": { + "name": "drupal/entity_reference_revisions", + "version": "1.7.0", + "version_normalized": "1.7.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", + "reference": "8.x-1.7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "4e3b849b0d984cd3c0a4330c9aa4cb16bf1f79f6" + }, + "require": { + "drupal/core": "~8.0" + }, + "require-dev": { + "drupal/diff": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.7", + "datestamp": "1570284187", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Frans", + "homepage": "https://www.drupal.org/user/514222" + }, + { + "name": "jeroen.b", + "homepage": "https://www.drupal.org/user/1853532" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" + } + ], + "description": "Adds a Entity Reference field type with revision support.", + "homepage": "https://www.drupal.org/project/entity_reference_revisions", + "support": { + "source": "https://git.drupalcode.org/project/entity_reference_revisions" + } } }, "drupal/environment_indicator": { @@ -6850,12 +7328,12 @@ "homepage": "https://www.drupal.org/user/591438" }, { - "name": "swentel", - "homepage": "https://www.drupal.org/user/107403" + "name": "nils.destoop", + "homepage": "https://www.drupal.org/user/361625" }, { - "name": "zuuperman", - "homepage": "https://www.drupal.org/user/361625" + "name": "swentel", + "homepage": "https://www.drupal.org/user/107403" } ], "description": "Provides the field_group module.", @@ -7277,9 +7755,20 @@ "homepage": "https://www.drupal.org/user/99340" }, { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" + }, + { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "joachim", "homepage": "https://www.drupal.org/user/107701" }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, { "name": "kaythay", "homepage": "https://www.drupal.org/user/2182186" @@ -7810,20 +8299,23 @@ } }, "drupal/metatag": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "1.10.0": { +======= + "1.11.0": { "name": "drupal/metatag", - "version": "1.10.0", - "version_normalized": "1.10.0.0", + "version": "1.11.0", + "version_normalized": "1.11.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "8.x-1.10" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "9acb04a741d80b4ab468d118a242271169d11f00" }, "require": { "drupal/core": "*", @@ -7845,8 +8337,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.10", - "datestamp": "1567099985", + "version": "8.x-1.11", + "datestamp": "1576870683", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7880,9 +8372,79 @@ } }, "1.9.0": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "drupal/metatag", - "version": "1.9.0", - "version_normalized": "1.9.0.0", + "version": "1.10.0", + "version_normalized": "1.10.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/metatag.git", + "reference": "8.x-1.10" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc" + }, + "require": { + "drupal/core": "*", + "drupal/token": "^1.0" + }, + "require-dev": { + "drupal/devel": "^2.0", + "drupal/metatag_dc": "*", + "drupal/metatag_open_graph": "*", + "drupal/page_manager": "^4.0", + "drupal/redirect": "^1.0", + "drupal/restui": "^1.0", + "drupal/schema_metatag": "^1.0", + "drupal/schema_web_page": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.10", + "datestamp": "1567099985", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "See contributors", + "homepage": "https://www.drupal.org/node/640498/committers", + "role": "Developer" + }, + { + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" + } + ], + "description": "Manage meta tags for all entities.", + "homepage": "https://www.drupal.org/project/metatag", + "keywords": [ + "Drupal", + "seo" + ], + "support": { + "source": "http://cgit.drupalcode.org/metatag", + "issues": "http://drupal.org/project/issues/metatag" + } + }, + "1.9.0": { + "name": "drupal/metatag", + "version": "1.9.0", + "version_normalized": "1.9.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", @@ -8133,6 +8695,10 @@ { "name": "manuel.adan", "homepage": "https://www.drupal.org/user/516420" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" } ], "description": "Provides a way to place blocks on a custom page.", @@ -8174,7 +8740,7 @@ }, "drupal": { "version": "8.x-4.1", - "datestamp": "1525714313", + "datestamp": "1578071889", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8543,23 +9109,23 @@ } }, "drupal/pathauto": { - "1.3.0": { + "1.6.0": { "name": "drupal/pathauto", - "version": "1.3.0", - "version_normalized": "1.3.0.0", + "version": "1.6.0", + "version_normalized": "1.6.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/pathauto.git", - "reference": "8.x-1.3" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "115d5998d7636a03e26c7ce34261b65809d53965" + "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "eb976ae110d73c06fafb1b657adb967dd2cb8246" }, "require": { - "drupal/core": "^8.5", + "drupal/core": "^8.6", "drupal/ctools": "*", "drupal/token": "*" }, @@ -8569,8 +9135,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.3", - "datestamp": "1554239887", + "version": "8.x-1.6", + "datestamp": "1575467285", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8632,7 +9198,7 @@ }, "drupal": { "version": "8.x-2.12", - "datestamp": "1569507486", + "datestamp": "1577477888", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9690,7 +10256,7 @@ "homepage": "https://www.drupal.org/user/107229" }, { - "name": "geek.merlin aka axel.rutz", + "name": "geek-merlin", "homepage": "https://www.drupal.org/user/229048" }, { @@ -9812,7 +10378,7 @@ }, "drupal": { "version": "8.x-1.5", - "datestamp": "1537557481", + "datestamp": "1577708583", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9854,6 +10420,79 @@ "support": { "source": "https://git.drupalcode.org/project/token" } + }, + "1.6.0": { + "name": "drupal/token", + "version": "1.6.0", + "version_normalized": "1.6.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/token.git", + "reference": "8.x-1.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "22039a3d927220609e708932ac5c501b90ca4925" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.6", + "datestamp": "1577708583", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "eaton", + "homepage": "https://www.drupal.org/user/16496" + }, + { + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" + }, + { + "name": "greggles", + "homepage": "https://www.drupal.org/user/36762" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Provides a user interface for the Token API, some missing core tokens.", + "homepage": "https://www.drupal.org/project/token", + "support": { + "source": "https://git.drupalcode.org/project/token" + } } }, "drupal/update_notifications_disable": { @@ -10048,7 +10687,7 @@ "drupal/devel": "*", "drupal/jsonapi": "~2.0", "drupal/select2": "~1.1", - "drupal/token": "*", + "drupal/token": "~1.3", "drupal/webform_access": "*", "drupal/webform_node": "*", "drupal/webform_scheduled_email": "*", @@ -10407,6 +11046,64 @@ "validation", "validator" ] + }, + "2.1.14": { + "name": "egulias/email-validator", + "version": "2.1.14", + "version_normalized": "2.1.14.0", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "c4b8d12921999d8a561004371701dbc2e05b5ece" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c4b8d12921999d8a561004371701dbc2e05b5ece", + "reference": "c4b8d12921999d8a561004371701dbc2e05b5ece", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^1.0.1", + "php": ">=5.5" + }, + "require-dev": { + "dominicsayers/isemail": "^3.0.7", + "phpunit/phpunit": "^4.8.36|^7.5.15", + "satooshi/php-coveralls": "^1.0.1" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "time": "2020-01-05T14:11:20+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "EmailValidator" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ] } }, "ezyang/htmlpurifier": { @@ -10518,19 +11215,19 @@ } }, "govcms/govcms": { - "1.x-dev": { + "1.0.0": { "name": "govcms/govcms", - "version": "1.x-dev", - "version_normalized": "1.9999999.9999999.9999999-dev", + "version": "1.0.0", + "version_normalized": "1.0.0.0", "source": { "type": "git", "url": "https://github.com/govCMS/govCMS8.git", - "reference": "75021b7081f2f70d84b7e71dfb2187f598504850" + "reference": "76cfc8895ac8df740e4143a1addd14337b7a3ee2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/govCMS/govCMS8/zipball/75021b7081f2f70d84b7e71dfb2187f598504850", - "reference": "75021b7081f2f70d84b7e71dfb2187f598504850", + "url": "https://api.github.com/repos/govCMS/govCMS8/zipball/76cfc8895ac8df740e4143a1addd14337b7a3ee2", + "reference": "76cfc8895ac8df740e4143a1addd14337b7a3ee2", "shasum": "" }, "require": { @@ -10551,7 +11248,7 @@ "drupal/consumers": "1.9", "drupal/contact_storage": "1.0-beta9", "drupal/context": "4.0-beta2", - "drupal/core": "8.7.9", + "drupal/core-recommended": "8.8.1", "drupal/ctools": "3.2.0", "drupal/devel": "2.0", "drupal/diff": "1.0-rc2", @@ -10589,7 +11286,7 @@ "drupal/panels": "4.4.0", "drupal/paragraphs": "1.6", "drupal/password_policy": "3.0-alpha4", - "drupal/pathauto": "1.3", + "drupal/pathauto": "1.6.0", "drupal/permissions_by_term": "2.12", "drupal/recaptcha": "2.4", "drupal/redirect": "1.3", @@ -10626,7 +11323,7 @@ "suggest": { "hirak/prestissimo": "^0.3" }, - "time": "2019-11-13T23:36:28+00:00", + "time": "2020-01-16T23:02:42+00:00", "type": "drupal-profile", "extra": { "drupal-scaffold": { @@ -10712,10 +11409,10 @@ } }, "govcms/require-dev": { - "dev-master": { + "1.0.1": { "name": "govcms/require-dev", - "version": "dev-master", - "version_normalized": "9999999-dev", + "version": "1.0.1", + "version_normalized": "1.0.1.0", "source": { "type": "git", "url": "https://github.com/govCMS/require-dev.git", @@ -10746,10 +11443,10 @@ } }, "govcms/scaffold-tooling": { - "dev-master": { + "1.0.0": { "name": "govcms/scaffold-tooling", - "version": "dev-master", - "version_normalized": "9999999-dev", + "version": "1.0.0", + "version_normalized": "1.0.0.0", "source": { "type": "git", "url": "https://github.com/govCMS/scaffold-tooling.git", @@ -10954,6 +11651,7 @@ } }, "guzzlehttp/guzzle": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "6.4.1": { "name": "guzzlehttp/guzzle", "version": "6.4.1", @@ -10967,23 +11665,36 @@ "type": "zip", "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11", "reference": "0895c932405407fd3a7368b6910c09a24d26db11", +======= + "6.3.3": { + "name": "guzzlehttp/guzzle", + "version": "6.3.3", + "version_normalized": "6.3.3.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba", "shasum": "" }, "require": { - "ext-json": "*", "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.6.1", + "guzzlehttp/psr7": "^1.4", "php": ">=5.5" }, "require-dev": { "ext-curl": "*", "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.1" + "psr/log": "^1.0" }, "suggest": { "psr/log": "Required for using the Log middleware" }, - "time": "2019-10-23T15:58:00+00:00", + "time": "2018-04-22T15:46:56+00:00", "type": "library", "extra": { "branch-alias": { @@ -10991,12 +11702,12 @@ } }, "autoload": { - "psr-4": { - "GuzzleHttp\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -11020,32 +11731,104 @@ "rest", "web service" ] - } - }, - "guzzlehttp/promises": { - "v1.3.1": { - "name": "guzzlehttp/promises", - "version": "v1.3.1", - "version_normalized": "1.3.1.0", + }, + "6.5.2": { + "name": "guzzlehttp/guzzle", + "version": "6.5.2", + "version_normalized": "6.5.2.0", "source": { "type": "git", - "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "url": "https://github.com/guzzle/guzzle.git", + "reference": "43ece0e75098b7ecd8d13918293029e555a50f82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82", + "reference": "43ece0e75098b7ecd8d13918293029e555a50f82", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { - "php": ">=5.5.0" + "ext-json": "*", + "guzzlehttp/promises": "^1.0", + "guzzlehttp/psr7": "^1.6.1", + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "ext-curl": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "psr/log": "^1.1" }, - "time": "2016-12-20T10:07:11+00:00", - "type": "library", + "suggest": { + "psr/log": "Required for using the Log middleware" + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "time": "2019-10-23T15:58:00+00:00", +======= + "time": "2019-12-23T11:57:10+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.3-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "homepage": "http://guzzlephp.org/", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "rest", + "web service" + ] + } + }, + "guzzlehttp/promises": { + "v1.3.1": { + "name": "guzzlehttp/promises", + "version": "v1.3.1", + "version_normalized": "1.3.1.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "shasum": "" + }, + "require": { + "php": ">=5.5.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0" + }, + "time": "2016-12-20T10:07:11+00:00", + "type": "library", "extra": { "branch-alias": { "dev-master": "1.4-dev" @@ -11813,6 +12596,72 @@ } }, "masterminds/html5": { + "2.3.0": { + "name": "masterminds/html5", + "version": "2.3.0", + "version_normalized": "2.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/Masterminds/html5-php.git", + "reference": "2c37c6c520b995b761674de3be8455a381679067" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067", + "reference": "2c37c6c520b995b761674de3be8455a381679067", + "shasum": "" + }, + "require": { + "ext-libxml": "*", + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "4.*", + "sami/sami": "~2.0", + "satooshi/php-coveralls": "1.0.*" + }, + "time": "2017-09-04T12:26:28+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2-dev" + } + }, + "autoload": { + "psr-4": { + "Masterminds\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Butcher", + "email": "technosophos@gmail.com" + }, + { + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" + }, + { + "name": "Matt Farina", + "email": "matt@mattfarina.com" + } + ], + "description": "An HTML5 parser and serializer.", + "homepage": "http://masterminds.github.io/html5-php", + "keywords": [ + "HTML5", + "dom", + "html", + "parser", + "querypath", + "serializer", + "xml" + ] + }, "2.7.0": { "name": "masterminds/html5", "version": "2.7.0", @@ -11923,19 +12772,19 @@ } }, "monolog/monolog": { - "1.25.2": { + "1.25.3": { "name": "monolog/monolog", - "version": "1.25.2", - "version_normalized": "1.25.2.0", + "version": "1.25.3", + "version_normalized": "1.25.3.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "d5e2fb341cb44f7e2ab639d12a1e5901091ec287" + "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/d5e2fb341cb44f7e2ab639d12a1e5901091ec287", - "reference": "d5e2fb341cb44f7e2ab639d12a1e5901091ec287", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1", + "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1", "shasum": "" }, "require": { @@ -11971,7 +12820,7 @@ "ruflin/elastica": "Allow sending log messages to an Elastic Search server", "sentry/sentry": "Allow sending log messages to a Sentry server" }, - "time": "2019-11-13T10:00:05+00:00", + "time": "2019-12-20T14:15:16+00:00", "type": "library", "extra": { "branch-alias": { @@ -12128,6 +12977,7 @@ "require": { "composer-plugin-api": "^1.0", "composer/installers": "^1.0" +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json }, "time": "2017-03-31T16:57:39+00:00", "type": "composer-plugin", @@ -12172,6 +13022,8 @@ }, "require": { "php": ">=5.2.0" +======= +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json }, "require-dev": { "phpunit/phpunit": "4.*|5.*" @@ -12253,6 +13105,7 @@ } }, "pdepend/pdepend": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "2.5.2": { "name": "pdepend/pdepend", "version": "2.5.2", @@ -12266,23 +13119,47 @@ "type": "zip", "url": "https://api.github.com/repos/pdepend/pdepend/zipball/9daf26d0368d4a12bed1cacae1a9f3a6f0adf239", "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239", +======= + "2.6.1": { + "name": "pdepend/pdepend", + "version": "2.6.1", + "version_normalized": "2.6.1.0", + "source": { + "type": "git", + "url": "https://github.com/pdepend/pdepend.git", + "reference": "395b0f356bc0881ef88864bffb4ba1423ca0d111" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pdepend/pdepend/zipball/395b0f356bc0881ef88864bffb4ba1423ca0d111", + "reference": "395b0f356bc0881ef88864bffb4ba1423ca0d111", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { "php": ">=5.3.7", - "symfony/config": "^2.3.0|^3|^4", - "symfony/dependency-injection": "^2.3.0|^3|^4", - "symfony/filesystem": "^2.3.0|^3|^4" + "symfony/config": "^2.3.0|^3|^4|^5", + "symfony/dependency-injection": "^2.3.0|^3|^4|^5", + "symfony/filesystem": "^2.3.0|^3|^4|^5" }, "require-dev": { "phpunit/phpunit": "^4.8|^5.7", "squizlabs/php_codesniffer": "^2.0.0" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2017-12-13T13:21:38+00:00", +======= + "time": "2019-12-21T16:33:56+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "bin": [ "src/bin/pdepend" ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, "autoload": { "psr-4": { "PDepend\\": "src/main/php/PDepend" @@ -12366,6 +13243,57 @@ }, "pear/console_getopt": { "v1.4.2": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "pear/console_getopt", + "version": "v1.4.2", + "version_normalized": "1.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/pear/Console_Getopt.git", + "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0", + "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0", + "shasum": "" + }, + "time": "2019-02-06T16:52:33+00:00", + "type": "library", + "autoload": { + "psr-0": { + "Console": "./" + } + }, + "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "./" + ], + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Greg Beaver", + "email": "cellog@php.net", + "role": "Helper" + }, + { + "name": "Andrei Zmievski", + "email": "andrei@php.net", + "role": "Lead" + }, + { + "name": "Stig Bakken", + "email": "stig@php.net", + "role": "Developer" + } + ], + "description": "More info available on: http://pear.php.net/package/Console_Getopt" + }, + "v1.4.3": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "pear/console_getopt", "version": "v1.4.2", "version_normalized": "1.4.2.0", @@ -12459,10 +13387,57 @@ } ], "description": "Minimal set of PEAR core files to be used as composer dependency" + }, + "v1.10.9": { + "name": "pear/pear-core-minimal", + "version": "v1.10.9", + "version_normalized": "1.10.9.0", + "source": { + "type": "git", + "url": "https://github.com/pear/pear-core-minimal.git", + "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/742be8dd68c746a01e4b0a422258e9c9cae1c37f", + "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f", + "shasum": "" + }, + "require": { + "pear/console_getopt": "~1.4", + "pear/pear_exception": "~1.0" + }, + "replace": { + "rsky/pear-core-min": "self.version" + }, + "time": "2019-03-13T18:15:44+00:00", + "type": "library", + "autoload": { + "psr-0": { + "": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "src/" + ], + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Christian Weiske", + "email": "cweiske@php.net", + "role": "Lead" + } + ], + "description": "Minimal set of PEAR core files to be used as composer dependency" } }, "pear/pear_exception": { "v1.0.0": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= "name": "pear/pear_exception", "version": "v1.0.0", "version_normalized": "1.0.0.0", @@ -12517,35 +13492,92 @@ "keywords": [ "exception" ] - } - }, - "phar-io/manifest": { - "1.0.1": { - "name": "phar-io/manifest", - "version": "1.0.1", - "version_normalized": "1.0.1.0", + }, + "v1.0.1": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "name": "pear/pear_exception", + "version": "v1.0.0", + "version_normalized": "1.0.0.0", "source": { "type": "git", - "url": "https://github.com/phar-io/manifest.git", - "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" + "url": "https://github.com/pear/PEAR_Exception.git", + "reference": "8c18719fdae000b690e3912be401c76e406dd13b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", - "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", + "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b", + "reference": "8c18719fdae000b690e3912be401c76e406dd13b", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-phar": "*", - "phar-io/version": "^1.0.1", - "php": "^5.6 || ^7.0" + "php": ">=4.4.0" }, - "time": "2017-03-05T18:14:27+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" + "require-dev": { + "phpunit/phpunit": "*" + }, + "time": "2015-02-10T20:07:52+00:00", + "type": "class", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-0": { + "PEAR": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "." + ], + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Helgi Thormar", + "email": "dufuz@php.net" + }, + { + "name": "Greg Beaver", + "email": "cellog@php.net" + } + ], + "description": "The PEAR Exception base class.", + "homepage": "https://github.com/pear/PEAR_Exception", + "keywords": [ + "exception" + ] + } + }, + "phar-io/manifest": { + "1.0.1": { + "name": "phar-io/manifest", + "version": "1.0.1", + "version_normalized": "1.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", + "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "phar-io/version": "^1.0.1", + "php": "^5.6 || ^7.0" + }, + "time": "2017-03-05T18:14:27+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" } }, "autoload": { @@ -12732,24 +13764,23 @@ } }, "phing/phing": { - "2.16.1": { + "2.16.2": { "name": "phing/phing", - "version": "2.16.1", - "version_normalized": "2.16.1.0", + "version": "2.16.2", + "version_normalized": "2.16.2.0", "source": { "type": "git", "url": "https://github.com/phingofficial/phing.git", - "reference": "cbe0f969e434e269af91b4160b86fe899c6e07c7" + "reference": "d11c6328c450cb3cda4ffa6548aa9cd60f30dd17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phingofficial/phing/zipball/cbe0f969e434e269af91b4160b86fe899c6e07c7", - "reference": "cbe0f969e434e269af91b4160b86fe899c6e07c7", + "url": "https://api.github.com/repos/phingofficial/phing/zipball/d11c6328c450cb3cda4ffa6548aa9cd60f30dd17", + "reference": "d11c6328c450cb3cda4ffa6548aa9cd60f30dd17", "shasum": "" }, "require": { - "php": ">=5.2.0", - "symfony/yaml": "^3.1 || ^4.0" + "php": ">=5.2.0" }, "require-dev": { "ext-pdo_sqlite": "*", @@ -12769,7 +13800,8 @@ "sebastian/phpcpd": "2.x", "siad007/versioncontrol_hg": "^1.0", "simpletest/simpletest": "^1.1", - "squizlabs/php_codesniffer": "~2.2" + "squizlabs/php_codesniffer": "~2.2", + "symfony/yaml": "^2.8 || ^3.1 || ^4.0" }, "suggest": { "pdepend/pdepend": "PHP version of JDepend", @@ -12785,7 +13817,7 @@ "siad007/versioncontrol_hg": "A library for interfacing with Mercurial repositories.", "tedivm/jshrink": "Javascript Minifier built in PHP" }, - "time": "2018-01-25T13:18:09+00:00", + "time": "2020-01-03T10:18:48+00:00", "bin": [ "bin/phing" ], @@ -12805,7 +13837,7 @@ "classes" ], "license": [ - "LGPL-3.0" + "LGPL-3.0-only" ], "authors": [ { @@ -12883,19 +13915,19 @@ } }, "phpdocumentor/reflection-docblock": { - "4.3.2": { + "4.3.4": { "name": "phpdocumentor/reflection-docblock", - "version": "4.3.2", - "version_normalized": "4.3.2.0", + "version": "4.3.4", + "version_normalized": "4.3.4.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e" + "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e", - "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c", + "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c", "shasum": "" }, "require": { @@ -12907,9 +13939,10 @@ "require-dev": { "doctrine/instantiator": "^1.0.5", "mockery/mockery": "^1.0", + "phpdocumentor/type-resolver": "0.4.*", "phpunit/phpunit": "^6.4" }, - "time": "2019-09-12T14:27:41+00:00", + "time": "2019-12-28T18:55:12+00:00", "type": "library", "extra": { "branch-alias": { @@ -13058,6 +14091,7 @@ } }, "phpspec/prophecy": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "1.9.0": { "name": "phpspec/prophecy", "version": "1.9.0", @@ -13071,6 +14105,21 @@ "type": "zip", "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203", "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203", +======= + "1.10.1": { + "name": "phpspec/prophecy", + "version": "1.10.1", + "version_normalized": "1.10.1.0", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "cbe1df668b3fe136bcc909126a0f529a78d4cbbc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/cbe1df668b3fe136bcc909126a0f529a78d4cbbc", + "reference": "cbe1df668b3fe136bcc909126a0f529a78d4cbbc", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { @@ -13084,7 +14133,11 @@ "phpspec/phpspec": "^2.5|^3.2", "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-10-03T11:07:50+00:00", +======= + "time": "2019-12-22T21:05:45+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "type": "library", "extra": { "branch-alias": { @@ -13589,6 +14642,58 @@ ] } }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "psr/event-dispatcher": { + "1.0.0": { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "time": "2019-01-08T18:20:26+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ] + } + }, +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "psr/http-message": { "1.0.1": { "name": "psr/http-message", @@ -13643,6 +14748,54 @@ } }, "psr/log": { + "1.1.0": { + "name": "psr/log", + "version": "1.1.0", + "version_normalized": "1.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "time": "2018-11-20T15:27:04+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ] + }, "1.1.2": { "name": "psr/log", "version": "1.1.2", @@ -14861,10 +16014,17 @@ } }, "symfony/browser-kit": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "v4.3.8": { "name": "symfony/browser-kit", "version": "v4.3.8", "version_normalized": "4.3.8.0", +======= + "v4.4.2": { + "name": "symfony/browser-kit", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", @@ -14878,7 +16038,71 @@ }, "require": { "php": "^7.1.3", +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "symfony/dom-crawler": "~3.4|~4.0" +======= + "symfony/dom-crawler": "^3.4|^4.0|^5.0" + }, + "require-dev": { + "symfony/css-selector": "^3.4|^4.0|^5.0", + "symfony/http-client": "^4.3|^5.0", + "symfony/mime": "^4.3|^5.0", + "symfony/process": "^3.4|^4.0|^5.0" + }, + "suggest": { + "symfony/process": "" + }, + "time": "2019-10-28T20:30:34+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\BrowserKit\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony BrowserKit Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/browser-kit", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/browser-kit.git", + "reference": "a195f83b0ba20e622a5baa726af96826b8f5616b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/a195f83b0ba20e622a5baa726af96826b8f5616b", + "reference": "a195f83b0ba20e622a5baa726af96826b8f5616b", + "shasum": "" + }, + "require": { + "php": "^7.2.5", + "symfony/dom-crawler": "^4.4|^5.0" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json }, "require-dev": { "symfony/css-selector": "~3.4|~4.0", @@ -14924,6 +16148,8 @@ }, "symfony/class-loader": { "v3.4.35": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= "name": "symfony/class-loader", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -14979,43 +16205,34 @@ ], "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com" - } - }, - "symfony/config": { - "v3.4.35": { - "name": "symfony/config", + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "name": "symfony/class-loader", "version": "v3.4.35", "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/config.git", - "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f" + "url": "https://github.com/symfony/class-loader.git", + "reference": "e212b06996819a2bce026a63da03b7182d05a690" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/c3a30587de97263d2813a3c81b74126c58b67a4f", - "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f", + "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690", + "reference": "e212b06996819a2bce026a63da03b7182d05a690", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/filesystem": "~2.8|~3.0|~4.0", - "symfony/polyfill-ctype": "~1.8" - }, - "conflict": { - "symfony/dependency-injection": "<3.3", - "symfony/finder": "<3.3" + "php": "^5.5.9|>=7.0.8" }, "require-dev": { - "symfony/dependency-injection": "~3.3|~4.0", - "symfony/event-dispatcher": "~3.3|~4.0", - "symfony/finder": "~3.3|~4.0", - "symfony/yaml": "~3.0|~4.0" + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/polyfill-apcu": "~1.1" }, "suggest": { - "symfony/yaml": "To use the yaml reference dumper" + "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM" }, - "time": "2019-11-08T08:28:59+00:00", + "time": "2019-08-20T13:31:17+00:00", "type": "library", "extra": { "branch-alias": { @@ -15024,7 +16241,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\Config\\": "" + "Symfony\\Component\\ClassLoader\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15044,22 +16261,105 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Config Component", + "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com" - }, - "v4.3.8": { + } + }, + "symfony/config": { + "v3.4.35": { "name": "symfony/config", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "8267214841c44d315a55242ea867684eb43c42ce" + "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/8267214841c44d315a55242ea867684eb43c42ce", - "reference": "8267214841c44d315a55242ea867684eb43c42ce", + "url": "https://api.github.com/repos/symfony/config/zipball/c3a30587de97263d2813a3c81b74126c58b67a4f", + "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/filesystem": "~2.8|~3.0|~4.0", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/dependency-injection": "<3.3", + "symfony/finder": "<3.3" + }, + "require-dev": { + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/event-dispatcher": "~3.3|~4.0", + "symfony/finder": "~3.3|~4.0", + "symfony/yaml": "~3.0|~4.0" + }, + "suggest": { + "symfony/yaml": "To use the yaml reference dumper" + }, + "time": "2019-11-08T08:28:59+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Config\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Config Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "v4.3.8": { + "name": "symfony/config", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/config.git", + "reference": "8267214841c44d315a55242ea867684eb43c42ce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/config/zipball/8267214841c44d315a55242ea867684eb43c42ce", + "reference": "8267214841c44d315a55242ea867684eb43c42ce", +======= + "v4.4.2": { + "name": "symfony/config", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/config.git", + "reference": "6911d432edd5b50822986604fd5a5be3af856d30" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/config/zipball/6911d432edd5b50822986604fd5a5be3af856d30", + "reference": "6911d432edd5b50822986604fd5a5be3af856d30", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { @@ -15080,7 +16380,11 @@ "suggest": { "symfony/yaml": "To use the yaml reference dumper" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-11-08T08:31:27+00:00", +======= + "time": "2019-12-18T12:00:29+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "type": "library", "extra": { "branch-alias": { @@ -15111,10 +16415,151 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/config", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/config.git", + "reference": "7f930484966350906185ba0a604728f7898b7ba0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/config/zipball/7f930484966350906185ba0a604728f7898b7ba0", + "reference": "7f930484966350906185ba0a604728f7898b7ba0", + "shasum": "" + }, + "require": { + "php": "^7.2.5", + "symfony/filesystem": "^4.4|^5.0", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/finder": "<4.4" + }, + "require-dev": { + "symfony/event-dispatcher": "^4.4|^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/messenger": "^4.4|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/yaml": "^4.4|^5.0" + }, + "suggest": { + "symfony/yaml": "To use the yaml reference dumper" + }, + "time": "2019-12-18T13:50:31+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Config\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Config Component", + "homepage": "https://symfony.com" } }, "symfony/console": { "v3.4.35": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "symfony/console", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/17b154f932c5874cdbda6d05796b6490eec9f9f7", + "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/debug": "~2.8|~3.0|~4.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/process": "<3.3" + }, + "provide": { + "psr/log-implementation": "1.0" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~3.3|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/lock": "~3.4|~4.0", + "symfony/process": "~3.3|~4.0" + }, + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "time": "2019-11-13T07:12:39+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Console Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "symfony/console", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -15187,6 +16632,7 @@ "description": "Symfony Console Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "v4.3.8": { "name": "symfony/console", "version": "v4.3.8", @@ -15200,6 +16646,21 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/console/zipball/831424efae0a1fe6642784bd52aae14ece6538e6", "reference": "831424efae0a1fe6642784bd52aae14ece6538e6", +======= + "v4.4.2": { + "name": "symfony/console", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "82437719dab1e6bdd28726af14cb345c2ec816d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/82437719dab1e6bdd28726af14cb345c2ec816d0", + "reference": "82437719dab1e6bdd28726af14cb345c2ec816d0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { @@ -15231,7 +16692,11 @@ "symfony/lock": "", "symfony/process": "" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-11-13T07:29:07+00:00", +======= + "time": "2019-12-17T10:32:23+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "type": "library", "extra": { "branch-alias": { @@ -15262,6 +16727,7 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com" +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json } }, "symfony/css-selector": { @@ -15278,12 +16744,32 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/css-selector/zipball/f819f71ae3ba6f396b4c015bd5895de7d2f1f85f", "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f", +======= + }, + "v5.0.2": { + "name": "symfony/console", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "fe6e3cd889ca64172d7a742a2eb058541404ef47" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/fe6e3cd889ca64172d7a742a2eb058541404ef47", + "reference": "fe6e3cd889ca64172d7a742a2eb058541404ef47", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-10-01T11:57:37+00:00", +======= + "time": "2019-12-17T13:20:22+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "type": "library", "extra": { "branch-alias": { @@ -15319,10 +16805,17 @@ "description": "Symfony CssSelector Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "v4.3.8": { "name": "symfony/css-selector", "version": "v4.3.8", "version_normalized": "4.3.8.0", +======= + "v4.4.2": { + "name": "symfony/css-selector", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -15337,7 +16830,65 @@ "require": { "php": "^7.1.3" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-10-02T08:36:26+00:00", +======= + "time": "2019-10-12T00:35:04+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony CssSelector Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/css-selector", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "19d29e7098b7b2c3313cb03902ca30f100dcb837" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/19d29e7098b7b2c3313cb03902ca30f100dcb837", + "reference": "19d29e7098b7b2c3313cb03902ca30f100dcb837", + "shasum": "" + }, + "require": { + "php": "^7.2.5" + }, + "time": "2019-11-18T17:27:11+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "type": "library", "extra": { "branch-alias": { @@ -15432,6 +16983,7 @@ "description": "Symfony Debug Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "v4.3.8": { "name": "symfony/debug", "version": "v4.3.8", @@ -15445,16 +16997,32 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/debug/zipball/5ea9c3e01989a86ceaa0283f21234b12deadf5e2", "reference": "5ea9c3e01989a86ceaa0283f21234b12deadf5e2", - "shasum": "" +======= + "v3.4.36": { + "name": "symfony/debug", + "version": "v3.4.36", + "version_normalized": "3.4.36.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/debug.git", + "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086", + "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "shasum": "" }, "require": { - "php": "^7.1.3", + "php": "^5.5.9|>=7.0.8", "psr/log": "~1.0" }, "conflict": { - "symfony/http-kernel": "<3.4" + "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" }, "require-dev": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "symfony/http-kernel": "~3.4|~4.0" }, "time": "2019-10-28T17:07:32+00:00", @@ -15462,6 +17030,91 @@ "extra": { "branch-alias": { "dev-master": "4.3-dev" +======= + "symfony/http-kernel": "~2.8|~3.0|~4.0" + }, + "time": "2019-10-24T15:33:53+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Debug\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Debug Component", + "homepage": "https://symfony.com" +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + } + }, + "symfony/dependency-injection": { + "v3.4.35": { + "name": "symfony/dependency-injection", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "0ea4d39ca82409a25a43b61ce828048a90000920" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920", + "reference": "0ea4d39ca82409a25a43b61ce828048a90000920", +======= + }, + "v4.4.2": { + "name": "symfony/debug", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/debug.git", + "reference": "5c4c1db977dc70bb3250e1308d3e8c6341aa38f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/debug/zipball/5c4c1db977dc70bb3250e1308d3e8c6341aa38f5", + "reference": "5c4c1db977dc70bb3250e1308d3e8c6341aa38f5", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/http-kernel": "<3.4" + }, + "require-dev": { + "symfony/http-kernel": "^3.4|^4.0|^5.0" + }, + "time": "2019-12-16T14:46:54+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" } }, "autoload": { @@ -15563,6 +17216,79 @@ "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com" }, + "v3.4.36": { + "name": "symfony/dependency-injection", + "version": "v3.4.36", + "version_normalized": "3.4.36.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "0d201916bfb3af939fec3c0c8815ea16c60ac1a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0d201916bfb3af939fec3c0c8815ea16c60ac1a2", + "reference": "0d201916bfb3af939fec3c0c8815ea16c60ac1a2", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "psr/container": "^1.0" + }, + "conflict": { + "symfony/config": "<3.3.7", + "symfony/finder": "<3.3", + "symfony/proxy-manager-bridge": "<3.4", + "symfony/yaml": "<3.4" + }, + "provide": { + "psr/container-implementation": "1.0" + }, + "require-dev": { + "symfony/config": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "symfony/config": "", + "symfony/expression-language": "For using expressions in service container configuration", + "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", + "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", + "symfony/yaml": "" + }, + "time": "2019-11-08T16:18:30+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\DependencyInjection\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony DependencyInjection Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "v4.3.8": { "name": "symfony/dependency-injection", "version": "v4.3.8", @@ -15576,6 +17302,21 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/80c6d9e19467dfbba14f830ed478eb592ce51b64", "reference": "80c6d9e19467dfbba14f830ed478eb592ce51b64", +======= + "v4.4.2": { + "name": "symfony/dependency-injection", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "79b0358207a3571cc3af02a57d0321927921f539" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/79b0358207a3571cc3af02a57d0321927921f539", + "reference": "79b0358207a3571cc3af02a57d0321927921f539", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { @@ -15605,7 +17346,11 @@ "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", "symfony/yaml": "" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-11-08T16:22:27+00:00", +======= + "time": "2019-12-19T16:00:02+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "type": "library", "extra": { "branch-alias": { @@ -15636,6 +17381,80 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/dependency-injection", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "f9dbfbf487d08f60b1c83220edcd16559d1e40a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f9dbfbf487d08f60b1c83220edcd16559d1e40a2", + "reference": "f9dbfbf487d08f60b1c83220edcd16559d1e40a2", + "shasum": "" + }, + "require": { + "php": "^7.2.5", + "psr/container": "^1.0", + "symfony/service-contracts": "^1.1.6|^2" + }, + "conflict": { + "symfony/config": "<5.0", + "symfony/finder": "<4.4", + "symfony/proxy-manager-bridge": "<4.4", + "symfony/yaml": "<4.4" + }, + "provide": { + "psr/container-implementation": "1.0", + "symfony/service-implementation": "1.0" + }, + "require-dev": { + "symfony/config": "^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/yaml": "^4.4|^5.0" + }, + "suggest": { + "symfony/config": "", + "symfony/expression-language": "For using expressions in service container configuration", + "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", + "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", + "symfony/yaml": "" + }, + "time": "2019-12-19T16:01:11+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\DependencyInjection\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony DependencyInjection Component", + "homepage": "https://symfony.com" } }, "symfony/dom-crawler": { @@ -15697,10 +17516,17 @@ "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "v4.3.8": { "name": "symfony/dom-crawler", "version": "v4.3.8", "version_normalized": "4.3.8.0", +======= + "v4.4.2": { + "name": "symfony/dom-crawler", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", @@ -15731,7 +17557,10 @@ "type": "library", "extra": { "branch-alias": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "dev-master": "4.3-dev" +======= + "dev-master": "4.4-dev" } }, "autoload": { @@ -15758,51 +17587,48 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com" - } - }, - "symfony/event-dispatcher": { - "v3.4.35": { - "name": "symfony/event-dispatcher", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + }, + "v5.0.2": { + "name": "symfony/dom-crawler", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177" + "url": "https://github.com/symfony/dom-crawler.git", + "reference": "0a0a73a0836926898b6fcd6817fe697487a73d97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177", - "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/0a0a73a0836926898b6fcd6817fe697487a73d97", + "reference": "0a0a73a0836926898b6fcd6817fe697487a73d97", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": "^7.2.5", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "symfony/dependency-injection": "<3.3" + "masterminds/html5": "<2.6" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~2.8|~3.0|~4.0", - "symfony/dependency-injection": "~3.3|~4.0", - "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/stopwatch": "~2.8|~3.0|~4.0" + "masterminds/html5": "^2.6", + "symfony/css-selector": "^4.4|^5.0" }, "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "symfony/css-selector": "" }, - "time": "2019-10-24T15:33:53+00:00", + "time": "2019-11-18T17:27:11+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "5.0-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json } }, "autoload": { "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" + "Symfony\\Component\\DomCrawler\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15822,58 +17648,53 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony EventDispatcher Component", + "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com" - }, - "v4.3.8": { - "name": "symfony/event-dispatcher", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + } + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "symfony/event-dispatcher": { + "v3.4.35": { + "name": "symfony/event-dispatcher", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", +======= + "symfony/error-handler": { + "v4.4.2": { + "name": "symfony/error-handler", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "0df002fd4f500392eabd243c2947061a50937287" + "url": "https://github.com/symfony/error-handler.git", + "reference": "6d7d7712a6ff5215ec26215672293b154f1db8c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0df002fd4f500392eabd243c2947061a50937287", - "reference": "0df002fd4f500392eabd243c2947061a50937287", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/6d7d7712a6ff5215ec26215672293b154f1db8c1", + "reference": "6d7d7712a6ff5215ec26215672293b154f1db8c1", "shasum": "" }, "require": { "php": "^7.1.3", - "symfony/event-dispatcher-contracts": "^1.1" - }, - "conflict": { - "symfony/dependency-injection": "<3.4" - }, - "provide": { - "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "1.1" - }, - "require-dev": { "psr/log": "~1.0", - "symfony/config": "~3.4|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/expression-language": "~3.4|~4.0", - "symfony/http-foundation": "^3.4|^4.0", - "symfony/service-contracts": "^1.1", - "symfony/stopwatch": "~3.4|~4.0" + "symfony/debug": "^4.4", + "symfony/var-dumper": "^4.4|^5.0" }, - "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "require-dev": { + "symfony/http-kernel": "^4.4|^5.0", + "symfony/serializer": "^4.4|^5.0" }, - "time": "2019-11-03T09:04:05+00:00", + "time": "2019-12-16T14:46:54+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" + "Symfony\\Component\\ErrorHandler\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15893,44 +17714,48 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony EventDispatcher Component", + "description": "Symfony ErrorHandler Component", "homepage": "https://symfony.com" - } - }, - "symfony/event-dispatcher-contracts": { - "v1.1.7": { - "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.7", - "version_normalized": "1.1.7.0", + }, + "v5.0.2": { + "name": "symfony/error-handler", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18" + "url": "https://github.com/symfony/error-handler.git", + "reference": "460863313bd3212d7c38e1b40602cbcfeeeea4a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18", - "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/460863313bd3212d7c38e1b40602cbcfeeeea4a5", + "reference": "460863313bd3212d7c38e1b40602cbcfeeeea4a5", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "^7.2.5", + "psr/log": "^1.0", + "symfony/var-dumper": "^4.4|^5.0" }, - "suggest": { - "psr/event-dispatcher": "", - "symfony/event-dispatcher-implementation": "" + "require-dev": { + "symfony/http-kernel": "^4.4|^5.0", + "symfony/serializer": "^4.4|^5.0" }, - "time": "2019-09-17T09:54:03+00:00", + "time": "2019-12-16T14:48:47+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "5.0-dev" } }, "autoload": { "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" - } + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -15938,56 +17763,95 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to dispatching event", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ] + "description": "Symfony ErrorHandler Component", + "homepage": "https://symfony.com" +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + }, + "v4.3.8": { + "name": "symfony/event-dispatcher", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "0df002fd4f500392eabd243c2947061a50937287" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0df002fd4f500392eabd243c2947061a50937287", + "reference": "0df002fd4f500392eabd243c2947061a50937287", +======= } }, - "symfony/filesystem": { + "symfony/event-dispatcher": { "v3.4.35": { - "name": "symfony/filesystem", + "name": "symfony/event-dispatcher", "version": "v3.4.35", "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516", - "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177", + "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-ctype": "~1.8" + "php": "^5.5.9|>=7.0.8" }, - "time": "2019-08-20T13:31:17+00:00", + "conflict": { + "symfony/dependency-injection": "<3.3" + }, + "require-dev": { + "psr/log": "~1.0", +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "symfony/config": "~3.4|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/expression-language": "~3.4|~4.0", + "symfony/http-foundation": "^3.4|^4.0", + "symfony/service-contracts": "^1.1", + "symfony/stopwatch": "~3.4|~4.0" +======= + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "time": "2019-11-03T09:04:05+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" +======= + "time": "2019-10-24T15:33:53+00:00", "type": "library", "extra": { "branch-alias": { "dev-master": "3.4-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json } }, "autoload": { "psr-4": { - "Symfony\\Component\\Filesystem\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -16007,38 +17871,51 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Filesystem Component", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com" }, - "v4.3.8": { - "name": "symfony/filesystem", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "v3.4.36": { + "name": "symfony/event-dispatcher", + "version": "v3.4.36", + "version_normalized": "3.4.36.0", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/9abbb7ef96a51f4d7e69627bc6f63307994e4263", - "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177", + "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/polyfill-ctype": "~1.8" + "php": "^5.5.9|>=7.0.8" }, - "time": "2019-08-20T14:07:54+00:00", + "conflict": { + "symfony/dependency-injection": "<3.3" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" + }, + "time": "2019-10-24T15:33:53+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Filesystem\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -16058,39 +17935,58 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Filesystem Component", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com" - } - }, - "symfony/finder": { - "v3.4.35": { - "name": "symfony/finder", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + }, + "v4.4.2": { + "name": "symfony/event-dispatcher", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "b3c3068a72623287550fe20b84a2b01dcba2686f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/3e915e5ce305f8bc8017597f71f1f4095092ddf8", - "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b3c3068a72623287550fe20b84a2b01dcba2686f", + "reference": "b3c3068a72623287550fe20b84a2b01dcba2686f", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": "^7.1.3", + "symfony/event-dispatcher-contracts": "^1.1" }, - "time": "2019-10-30T12:43:22+00:00", + "conflict": { + "symfony/dependency-injection": "<3.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/stopwatch": "^3.4|^4.0|^5.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" + }, + "time": "2019-11-28T13:33:56+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Finder\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -16110,37 +18006,58 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Finder Component", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com" }, - "v4.3.8": { - "name": "symfony/finder", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "v5.0.2": { + "name": "symfony/event-dispatcher", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "72a068f77e317ae77c0a0495236ad292cfb5ce6f" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "7b738a51645e10f864cc25c24d232fb03f37b475" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/72a068f77e317ae77c0a0495236ad292cfb5ce6f", - "reference": "72a068f77e317ae77c0a0495236ad292cfb5ce6f", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7b738a51645e10f864cc25c24d232fb03f37b475", + "reference": "7b738a51645e10f864cc25c24d232fb03f37b475", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "^7.2.5", + "symfony/event-dispatcher-contracts": "^2" }, - "time": "2019-10-30T12:53:54+00:00", + "conflict": { + "symfony/dependency-injection": "<4.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/http-foundation": "^4.4|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/stopwatch": "^4.4|^5.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" + }, + "time": "2019-11-18T17:27:11+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "5.0-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Finder\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -16160,35 +18077,151 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Finder Component", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com" } }, - "symfony/http-foundation": { - "v3.4.35": { - "name": "symfony/http-foundation", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + "symfony/event-dispatcher-contracts": { + "v1.1.7": { + "name": "symfony/event-dispatcher-contracts", + "version": "v1.1.7", + "version_normalized": "1.1.7.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-foundation.git", - "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce" + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9e4b3ac8fa3348b4811674d23de32d201de225ce", - "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18", + "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php70": "~1.6" + "php": "^7.1.3" }, - "require-dev": { - "symfony/expression-language": "~2.8|~3.0|~4.0" + "suggest": { + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" }, - "time": "2019-11-11T12:53:10+00:00", + "time": "2019-09-17T09:54:03+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ] + }, + "v2.0.1": { + "name": "symfony/event-dispatcher-contracts", + "version": "v2.0.1", + "version_normalized": "2.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "af23c2584d4577d54661c434446fb8fbed6025dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/af23c2584d4577d54661c434446fb8fbed6025dd", + "reference": "af23c2584d4577d54661c434446fb8fbed6025dd", + "shasum": "" + }, + "require": { + "php": "^7.2.5", + "psr/event-dispatcher": "^1" + }, + "suggest": { + "symfony/event-dispatcher-implementation": "" + }, + "time": "2019-11-18T17:27:11+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ] + } + }, + "symfony/filesystem": { + "v3.4.35": { + "name": "symfony/filesystem", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516", + "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" + }, + "time": "2019-08-20T13:31:17+00:00", "type": "library", "extra": { "branch-alias": { @@ -16197,7 +18230,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\HttpFoundation\\": "" + "Symfony\\Component\\Filesystem\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -16217,43 +18250,48 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpFoundation Component", + "description": "Symfony Filesystem Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "v4.3.8": { - "name": "symfony/http-foundation", + "name": "symfony/filesystem", "version": "v4.3.8", "version_normalized": "4.3.8.0", +======= + "v4.4.2": { + "name": "symfony/filesystem", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "source": { "type": "git", - "url": "https://github.com/symfony/http-foundation.git", - "reference": "cabe67275034e173350e158f3b1803d023880227" + "url": "https://github.com/symfony/filesystem.git", + "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cabe67275034e173350e158f3b1803d023880227", - "reference": "cabe67275034e173350e158f3b1803d023880227", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/9abbb7ef96a51f4d7e69627bc6f63307994e4263", + "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263", "shasum": "" }, "require": { "php": "^7.1.3", - "symfony/mime": "^4.3", - "symfony/polyfill-mbstring": "~1.1" - }, - "require-dev": { - "predis/predis": "~1.0", - "symfony/expression-language": "~3.4|~4.0" + "symfony/polyfill-ctype": "~1.8" }, - "time": "2019-11-12T13:07:20+00:00", + "time": "2019-08-20T14:07:54+00:00", "type": "library", "extra": { "branch-alias": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "dev-master": "4.3-dev" +======= + "dev-master": "4.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\HttpFoundation\\": "" + "Symfony\\Component\\Filesystem\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -16273,71 +18311,82 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpFoundation Component", + "description": "Symfony Filesystem Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/filesystem", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "1d71f670bc5a07b9ccc97dc44f932177a322d4e6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/1d71f670bc5a07b9ccc97dc44f932177a322d4e6", + "reference": "1d71f670bc5a07b9ccc97dc44f932177a322d4e6", + "shasum": "" + }, + "require": { + "php": "^7.2.5", + "symfony/polyfill-ctype": "~1.8" + }, + "time": "2019-11-26T23:25:11+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Filesystem Component", "homepage": "https://symfony.com" } }, - "symfony/http-kernel": { + "symfony/finder": { "v3.4.35": { - "name": "symfony/http-kernel", + "name": "symfony/finder", "version": "v3.4.35", "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-kernel.git", - "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9" + "url": "https://github.com/symfony/finder.git", + "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e1764b3de00ec5636dd03d02fd44bcb1147d70d9", - "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9", + "url": "https://api.github.com/repos/symfony/finder/zipball/3e915e5ce305f8bc8017597f71f1f4095092ddf8", + "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "psr/log": "~1.0", - "symfony/debug": "^3.3.3|~4.0", - "symfony/event-dispatcher": "~2.8|~3.0|~4.0", - "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php56": "~1.8" - }, - "conflict": { - "symfony/config": "<2.8", - "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4", - "symfony/var-dumper": "<3.3", - "twig/twig": "<1.34|<2.4,>=2" - }, - "provide": { - "psr/log-implementation": "1.0" - }, - "require-dev": { - "psr/cache": "~1.0", - "symfony/browser-kit": "~2.8|~3.0|~4.0", - "symfony/class-loader": "~2.8|~3.0", - "symfony/config": "~2.8|~3.0|~4.0", - "symfony/console": "~2.8|~3.0|~4.0", - "symfony/css-selector": "~2.8|~3.0|~4.0", - "symfony/dependency-injection": "^3.4.10|^4.0.10", - "symfony/dom-crawler": "~2.8|~3.0|~4.0", - "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/finder": "~2.8|~3.0|~4.0", - "symfony/process": "~2.8|~3.0|~4.0", - "symfony/routing": "~3.4|~4.0", - "symfony/stopwatch": "~2.8|~3.0|~4.0", - "symfony/templating": "~2.8|~3.0|~4.0", - "symfony/translation": "~2.8|~3.0|~4.0", - "symfony/var-dumper": "~3.3|~4.0" - }, - "suggest": { - "symfony/browser-kit": "", - "symfony/config": "", - "symfony/console": "", - "symfony/dependency-injection": "", - "symfony/finder": "", - "symfony/var-dumper": "" + "php": "^5.5.9|>=7.0.8" }, - "time": "2019-11-13T08:44:50+00:00", + "time": "2019-10-30T12:43:22+00:00", "type": "library", "extra": { "branch-alias": { @@ -16346,7 +18395,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\HttpKernel\\": "" + "Symfony\\Component\\Finder\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -16366,83 +18415,1078 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpKernel Component", + "description": "Symfony Finder Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "v4.3.8": { - "name": "symfony/http-kernel", + "name": "symfony/finder", "version": "v4.3.8", "version_normalized": "4.3.8.0", +======= + "v4.4.2": { + "name": "symfony/finder", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "source": { "type": "git", - "url": "https://github.com/symfony/http-kernel.git", - "reference": "5fdf186f26f9080de531d3f1d024348b2f0ab12f" + "url": "https://github.com/symfony/finder.git", + "reference": "72a068f77e317ae77c0a0495236ad292cfb5ce6f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/72a068f77e317ae77c0a0495236ad292cfb5ce6f", + "reference": "72a068f77e317ae77c0a0495236ad292cfb5ce6f", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "time": "2019-10-30T12:53:54+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Finder Component", + "homepage": "https://symfony.com" + } + }, + "symfony/http-foundation": { + "v3.4.35": { + "name": "symfony/http-foundation", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9e4b3ac8fa3348b4811674d23de32d201de225ce", + "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php70": "~1.6" + }, + "require-dev": { + "symfony/expression-language": "~2.8|~3.0|~4.0" + }, + "time": "2019-11-11T12:53:10+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpFoundation Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "v4.3.8": { + "name": "symfony/http-foundation", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "cabe67275034e173350e158f3b1803d023880227" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cabe67275034e173350e158f3b1803d023880227", + "reference": "cabe67275034e173350e158f3b1803d023880227", +======= + "v3.4.36": { + "name": "symfony/http-foundation", + "version": "v3.4.36", + "version_normalized": "3.4.36.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "d2d0cfe8e319d9df44c4cca570710fcf221d4593" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d2d0cfe8e319d9df44c4cca570710fcf221d4593", + "reference": "d2d0cfe8e319d9df44c4cca570710fcf221d4593", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php70": "~1.6" + }, + "require-dev": { + "symfony/expression-language": "~2.8|~3.0|~4.0" + }, + "time": "2019-11-28T12:52:59+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpFoundation Component", + "homepage": "https://symfony.com" + }, + "v4.4.2": { + "name": "symfony/http-foundation", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "fcae1cff5b57b2a9c3aabefeb1527678705ddb62" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fcae1cff5b57b2a9c3aabefeb1527678705ddb62", + "reference": "fcae1cff5b57b2a9c3aabefeb1527678705ddb62", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/mime": "^4.3", + "symfony/polyfill-mbstring": "~1.1" + }, + "require-dev": { + "predis/predis": "~1.0", + "symfony/expression-language": "~3.4|~4.0" + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "time": "2019-11-12T13:07:20+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" +======= + "time": "2019-12-19T15:57:49+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpFoundation Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/http-foundation", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "5dd7f6be6e62d86ba6f3154cf40e78936367978b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5dd7f6be6e62d86ba6f3154cf40e78936367978b", + "reference": "5dd7f6be6e62d86ba6f3154cf40e78936367978b", + "shasum": "" + }, + "require": { + "php": "^7.2.5", + "symfony/mime": "^4.4|^5.0", + "symfony/polyfill-mbstring": "~1.1" + }, + "require-dev": { + "predis/predis": "~1.0", + "symfony/expression-language": "^4.4|^5.0" + }, + "time": "2019-12-19T16:01:11+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpFoundation Component", + "homepage": "https://symfony.com" + } + }, + "symfony/http-kernel": { + "v3.4.35": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "symfony/http-kernel", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e1764b3de00ec5636dd03d02fd44bcb1147d70d9", + "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "psr/log": "~1.0", + "symfony/debug": "^3.3.3|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php56": "~1.8" + }, + "conflict": { + "symfony/config": "<2.8", + "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4", + "symfony/var-dumper": "<3.3", + "twig/twig": "<1.34|<2.4,>=2" + }, + "provide": { + "psr/log-implementation": "1.0" + }, + "require-dev": { + "psr/cache": "~1.0", + "symfony/browser-kit": "~2.8|~3.0|~4.0", + "symfony/class-loader": "~2.8|~3.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/console": "~2.8|~3.0|~4.0", + "symfony/css-selector": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "^3.4.10|^4.0.10", + "symfony/dom-crawler": "~2.8|~3.0|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/process": "~2.8|~3.0|~4.0", + "symfony/routing": "~3.4|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0", + "symfony/templating": "~2.8|~3.0|~4.0", + "symfony/translation": "~2.8|~3.0|~4.0", + "symfony/var-dumper": "~3.3|~4.0" + }, + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "", + "symfony/finder": "", + "symfony/var-dumper": "" + }, + "time": "2019-11-13T08:44:50+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpKernel Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "name": "symfony/http-kernel", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e1764b3de00ec5636dd03d02fd44bcb1147d70d9", + "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "psr/log": "~1.0", + "symfony/debug": "^3.3.3|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php56": "~1.8" + }, + "conflict": { + "symfony/config": "<2.8", + "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4", + "symfony/var-dumper": "<3.3", + "twig/twig": "<1.34|<2.4,>=2" + }, + "provide": { + "psr/log-implementation": "1.0" + }, + "require-dev": { + "psr/cache": "~1.0", + "symfony/browser-kit": "~2.8|~3.0|~4.0", + "symfony/class-loader": "~2.8|~3.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/console": "~2.8|~3.0|~4.0", + "symfony/css-selector": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "^3.4.10|^4.0.10", + "symfony/dom-crawler": "~2.8|~3.0|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/process": "~2.8|~3.0|~4.0", + "symfony/routing": "~3.4|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0", + "symfony/templating": "~2.8|~3.0|~4.0", + "symfony/translation": "~2.8|~3.0|~4.0", + "symfony/var-dumper": "~3.3|~4.0" + }, + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "", + "symfony/finder": "", + "symfony/var-dumper": "" + }, + "time": "2019-11-13T08:44:50+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpKernel Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "v4.3.8": { + "name": "symfony/http-kernel", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "5fdf186f26f9080de531d3f1d024348b2f0ab12f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5fdf186f26f9080de531d3f1d024348b2f0ab12f", + "reference": "5fdf186f26f9080de531d3f1d024348b2f0ab12f", +======= + "v4.4.2": { + "name": "symfony/http-kernel", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "fe310d2e95cd4c356836c8ecb0895a46d97fede2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fe310d2e95cd4c356836c8ecb0895a46d97fede2", + "reference": "fe310d2e95cd4c356836c8ecb0895a46d97fede2", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "psr/log": "~1.0", + "symfony/debug": "~3.4|~4.0", + "symfony/event-dispatcher": "^4.3", + "symfony/http-foundation": "^4.1.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php73": "^1.9" + }, + "conflict": { + "symfony/browser-kit": "<4.3", + "symfony/config": "<3.4", + "symfony/dependency-injection": "<4.3", + "symfony/translation": "<4.2", + "symfony/var-dumper": "<4.1.1", + "twig/twig": "<1.34|<2.4,>=2" + }, + "provide": { + "psr/log-implementation": "1.0" + }, + "require-dev": { + "psr/cache": "~1.0", + "symfony/browser-kit": "^4.3", + "symfony/config": "~3.4|~4.0", + "symfony/console": "~3.4|~4.0", + "symfony/css-selector": "~3.4|~4.0", + "symfony/dependency-injection": "^4.3", + "symfony/dom-crawler": "~3.4|~4.0", + "symfony/expression-language": "~3.4|~4.0", + "symfony/finder": "~3.4|~4.0", + "symfony/process": "~3.4|~4.0", + "symfony/routing": "~3.4|~4.0", + "symfony/stopwatch": "~3.4|~4.0", + "symfony/templating": "~3.4|~4.0", + "symfony/translation": "~4.2", + "symfony/translation-contracts": "^1.1", + "symfony/var-dumper": "^4.1.1", + "twig/twig": "^1.34|^2.4" + }, + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "", + "symfony/var-dumper": "" + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "time": "2019-11-13T09:07:28+00:00", +======= + "time": "2019-12-19T16:23:40+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpKernel Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/http-kernel", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "00ce30602f3f690e66a63c327743d7b26c723b2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/00ce30602f3f690e66a63c327743d7b26c723b2e", + "reference": "00ce30602f3f690e66a63c327743d7b26c723b2e", + "shasum": "" + }, + "require": { + "php": "^7.2.5", + "psr/log": "~1.0", + "symfony/error-handler": "^4.4|^5.0", + "symfony/event-dispatcher": "^5.0", + "symfony/http-foundation": "^4.4|^5.0", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-php73": "^1.9" + }, + "conflict": { + "symfony/browser-kit": "<4.4", + "symfony/cache": "<5.0", + "symfony/config": "<5.0", + "symfony/dependency-injection": "<4.4", + "symfony/doctrine-bridge": "<5.0", + "symfony/form": "<5.0", + "symfony/http-client": "<5.0", + "symfony/mailer": "<5.0", + "symfony/messenger": "<5.0", + "symfony/translation": "<5.0", + "symfony/twig-bridge": "<5.0", + "symfony/validator": "<5.0", + "twig/twig": "<2.4" + }, + "provide": { + "psr/log-implementation": "1.0" + }, + "require-dev": { + "psr/cache": "~1.0", + "symfony/browser-kit": "^4.4|^5.0", + "symfony/config": "^5.0", + "symfony/console": "^4.4|^5.0", + "symfony/css-selector": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/dom-crawler": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0", + "symfony/routing": "^4.4|^5.0", + "symfony/stopwatch": "^4.4|^5.0", + "symfony/translation": "^4.4|^5.0", + "symfony/translation-contracts": "^1.1|^2", + "twig/twig": "^2.4|^3.0" + }, + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "" + }, + "time": "2019-12-19T18:35:03+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpKernel Component", + "homepage": "https://symfony.com" + } + }, + "symfony/mime": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "v4.3.8": { + "name": "symfony/mime", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", +======= + "v5.0.2": { + "name": "symfony/mime", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "22aecf6b11638ef378fab25d6c5a2da8a31a1448" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/22aecf6b11638ef378fab25d6c5a2da8a31a1448", + "reference": "22aecf6b11638ef378fab25d6c5a2da8a31a1448", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10", + "symfony/dependency-injection": "~3.4|^4.1" + }, + "time": "2019-11-12T13:10:02+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "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": "A library to manipulate MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ] + } + }, + "symfony/phpunit-bridge": { + "v3.4.35": { + "name": "symfony/phpunit-bridge", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/phpunit-bridge.git", + "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7", + "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "conflict": { + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + }, + "suggest": { + "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" + }, + "time": "2019-09-30T20:33:19+00:00", + "bin": [ + "bin/simple-phpunit" + ], + "type": "symfony-bridge", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + }, + "thanks": { + "name": "phpunit/phpunit", + "url": "https://github.com/sebastianbergmann/phpunit" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Bridge\\PhpUnit\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony PHPUnit Bridge", + "homepage": "https://symfony.com" +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + }, + "v4.4.2": { + "name": "symfony/phpunit-bridge", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/phpunit-bridge.git", + "reference": "724497102bfdb2ffcde576c5d3ef872040cb3632" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/724497102bfdb2ffcde576c5d3ef872040cb3632", + "reference": "724497102bfdb2ffcde576c5d3ef872040cb3632", + "shasum": "" + }, + "require": { + "php": ">=5.5.9" + }, + "conflict": { + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + }, + "suggest": { + "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" + }, + "time": "2019-11-28T13:33:56+00:00", + "bin": [ + "bin/simple-phpunit" + ], + "type": "symfony-bridge", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + }, + "thanks": { + "name": "phpunit/phpunit", + "url": "https://github.com/sebastianbergmann/phpunit" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Bridge\\PhpUnit\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony PHPUnit Bridge", + "homepage": "https://symfony.com" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + } + }, + "symfony/polyfill-ctype": { + "v1.12.0": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "symfony/polyfill-ctype", + "version": "v1.12.0", + "version_normalized": "1.12.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "time": "2019-08-06T08:03:45+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.12-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ] + }, + "v1.13.1": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "name": "symfony/polyfill-ctype", + "version": "v1.12.0", + "version_normalized": "1.12.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "time": "2019-08-06T08:03:45+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.12-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ] + } + }, + "symfony/polyfill-iconv": { + "v1.12.0": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "symfony/polyfill-iconv", + "version": "v1.12.0", + "version_normalized": "1.12.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-iconv.git", + "reference": "685968b11e61a347c18bf25db32effa478be610f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5fdf186f26f9080de531d3f1d024348b2f0ab12f", - "reference": "5fdf186f26f9080de531d3f1d024348b2f0ab12f", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f", + "reference": "685968b11e61a347c18bf25db32effa478be610f", "shasum": "" }, "require": { - "php": "^7.1.3", - "psr/log": "~1.0", - "symfony/debug": "~3.4|~4.0", - "symfony/event-dispatcher": "^4.3", - "symfony/http-foundation": "^4.1.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php73": "^1.9" - }, - "conflict": { - "symfony/browser-kit": "<4.3", - "symfony/config": "<3.4", - "symfony/dependency-injection": "<4.3", - "symfony/translation": "<4.2", - "symfony/var-dumper": "<4.1.1", - "twig/twig": "<1.34|<2.4,>=2" - }, - "provide": { - "psr/log-implementation": "1.0" - }, - "require-dev": { - "psr/cache": "~1.0", - "symfony/browser-kit": "^4.3", - "symfony/config": "~3.4|~4.0", - "symfony/console": "~3.4|~4.0", - "symfony/css-selector": "~3.4|~4.0", - "symfony/dependency-injection": "^4.3", - "symfony/dom-crawler": "~3.4|~4.0", - "symfony/expression-language": "~3.4|~4.0", - "symfony/finder": "~3.4|~4.0", - "symfony/process": "~3.4|~4.0", - "symfony/routing": "~3.4|~4.0", - "symfony/stopwatch": "~3.4|~4.0", - "symfony/templating": "~3.4|~4.0", - "symfony/translation": "~4.2", - "symfony/translation-contracts": "^1.1", - "symfony/var-dumper": "^4.1.1", - "twig/twig": "^1.34|^2.4" + "php": ">=5.3.3" }, "suggest": { - "symfony/browser-kit": "", - "symfony/config": "", - "symfony/console": "", - "symfony/dependency-injection": "", - "symfony/var-dumper": "" + "ext-iconv": "For best performance" }, - "time": "2019-11-13T09:07:28+00:00", + "time": "2019-08-06T08:03:45+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "1.12-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\HttpKernel\\": "" + "Symfony\\Polyfill\\Iconv\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -16451,56 +19495,59 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpKernel Component", - "homepage": "https://symfony.com" - } - }, - "symfony/mime": { - "v4.3.8": { - "name": "symfony/mime", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "description": "Symfony polyfill for the Iconv extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "iconv", + "polyfill", + "portable", + "shim" + ] + }, + "v1.13.1": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "name": "symfony/polyfill-iconv", + "version": "v1.12.0", + "version_normalized": "1.12.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "22aecf6b11638ef378fab25d6c5a2da8a31a1448" + "url": "https://github.com/symfony/polyfill-iconv.git", + "reference": "685968b11e61a347c18bf25db32effa478be610f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/22aecf6b11638ef378fab25d6c5a2da8a31a1448", - "reference": "22aecf6b11638ef378fab25d6c5a2da8a31a1448", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f", + "reference": "685968b11e61a347c18bf25db32effa478be610f", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/polyfill-intl-idn": "^1.10", - "symfony/polyfill-mbstring": "^1.0" + "php": ">=5.3.3" }, - "require-dev": { - "egulias/email-validator": "^2.1.10", - "symfony/dependency-injection": "~3.4|^4.1" + "suggest": { + "ext-iconv": "For best performance" }, - "time": "2019-11-12T13:10:02+00:00", + "time": "2019-08-06T08:03:45+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "1.12-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Mime\\": "" + "Symfony\\Polyfill\\Iconv\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -16509,70 +19556,62 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "A library to manipulate MIME messages", + "description": "Symfony polyfill for the Iconv extension", "homepage": "https://symfony.com", "keywords": [ - "mime", - "mime-type" + "compatibility", + "iconv", + "polyfill", + "portable", + "shim" ] } }, - "symfony/phpunit-bridge": { - "v3.4.35": { - "name": "symfony/phpunit-bridge", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + "symfony/polyfill-intl-idn": { + "v1.13.1": { + "name": "symfony/polyfill-intl-idn", + "version": "v1.13.1", + "version_normalized": "1.13.1.0", "source": { "type": "git", - "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7" + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7", - "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6f9c239e61e1b0c9229a28ff89a812dc449c3d46", + "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46", "shasum": "" }, "require": { - "php": ">=5.3.3" - }, - "conflict": { - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + "php": ">=5.3.3", + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php72": "^1.9" }, "suggest": { - "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" + "ext-intl": "For best performance" }, - "time": "2019-09-30T20:33:19+00:00", - "bin": [ - "bin/simple-phpunit" - ], - "type": "symfony-bridge", + "time": "2019-11-27T13:56:44+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" - }, - "thanks": { - "name": "phpunit/phpunit", - "url": "https://github.com/sebastianbergmann/phpunit" + "dev-master": "1.13-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Bridge\\PhpUnit\\": "" + "Symfony\\Polyfill\\Intl\\Idn\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -16581,39 +19620,47 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Laurent Bassin", + "email": "laurent@bassin.info" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony PHPUnit Bridge", - "homepage": "https://symfony.com" + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ] } }, - "symfony/polyfill-ctype": { + "symfony/polyfill-mbstring": { "v1.12.0": { - "name": "symfony/polyfill-ctype", + "name": "symfony/polyfill-mbstring", "version": "v1.12.0", "version_normalized": "1.12.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", "shasum": "" }, "require": { "php": ">=5.3.3" }, "suggest": { - "ext-ctype": "For best performance" + "ext-mbstring": "For best performance" }, "time": "2019-08-06T08:03:45+00:00", "type": "library", @@ -16624,7 +19671,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" + "Symfony\\Polyfill\\Mbstring\\": "" }, "files": [ "bootstrap.php" @@ -16636,56 +19683,55 @@ ], "authors": [ { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for ctype functions", + "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "ctype", + "mbstring", "polyfill", - "portable" + "portable", + "shim" ] - } - }, - "symfony/polyfill-iconv": { - "v1.12.0": { - "name": "symfony/polyfill-iconv", - "version": "v1.12.0", - "version_normalized": "1.12.0.0", + }, + "v1.13.1": { + "name": "symfony/polyfill-mbstring", + "version": "v1.13.1", + "version_normalized": "1.13.1.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "685968b11e61a347c18bf25db32effa478be610f" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f", - "reference": "685968b11e61a347c18bf25db32effa478be610f", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7b4aab9743c30be783b73de055d24a39cf4b954f", + "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f", "shasum": "" }, "require": { "php": ">=5.3.3" }, "suggest": { - "ext-iconv": "For best performance" + "ext-mbstring": "For best performance" }, - "time": "2019-08-06T08:03:45+00:00", + "time": "2019-11-27T14:18:11+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.13-dev" } }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Iconv\\": "" + "Symfony\\Polyfill\\Mbstring\\": "" }, "files": [ "bootstrap.php" @@ -16705,24 +19751,31 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Iconv extension", + "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "iconv", + "mbstring", "polyfill", "portable", "shim" ] } }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "symfony/polyfill-intl-idn": { "v1.12.0": { "name": "symfony/polyfill-intl-idn", +======= + "symfony/polyfill-php56": { + "v1.12.0": { + "name": "symfony/polyfill-php56", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "version": "v1.12.0", "version_normalized": "1.12.0.0", "source": { "type": "git", +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "url": "https://github.com/symfony/polyfill-intl-idn.git", "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2" }, @@ -16730,15 +19783,20 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6af626ae6fa37d396dc90a399c0ff08e5cfc45b2", "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2", +======= + "url": "https://github.com/symfony/polyfill-php56.git", + "reference": "0e3b212e96a51338639d8ce175c046d7729c3403" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403", + "reference": "0e3b212e96a51338639d8ce175c046d7729c3403", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { "php": ">=5.3.3", - "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php72": "^1.9" - }, - "suggest": { - "ext-intl": "For best performance" + "symfony/polyfill-util": "~1.0" }, "time": "2019-08-06T08:03:45+00:00", "type": "library", @@ -16749,7 +19807,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Intl\\Idn\\": "" + "Symfony\\Polyfill\\Php56\\": "" }, "files": [ "bootstrap.php" @@ -16761,24 +19819,23 @@ ], "authors": [ { - "name": "Laurent Bassin", - "email": "laurent@bassin.info" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "idn", - "intl", "polyfill", "portable", "shim" ] +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json } }, "symfony/polyfill-mbstring": { @@ -16795,15 +19852,33 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", +======= + }, + "v1.13.1": { + "name": "symfony/polyfill-php56", + "version": "v1.13.1", + "version_normalized": "1.13.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php56.git", + "reference": "53dd1cdf3cb986893ccf2b96665b25b3abb384f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/53dd1cdf3cb986893ccf2b96665b25b3abb384f4", + "reference": "53dd1cdf3cb986893ccf2b96665b25b3abb384f4", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-mbstring": "For best performance" + "php": ">=5.3.3", + "symfony/polyfill-util": "~1.0" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-08-06T08:03:45+00:00", +======= + "time": "2019-11-27T13:56:44+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "type": "library", "extra": { "branch-alias": { @@ -16812,7 +19887,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" + "Symfony\\Polyfill\\Php56\\": "" }, "files": [ "bootstrap.php" @@ -16832,24 +19907,30 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Mbstring extension", + "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "mbstring", "polyfill", "portable", "shim" ] } }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "symfony/polyfill-php56": { "v1.12.0": { "name": "symfony/polyfill-php56", +======= + "symfony/polyfill-php70": { + "v1.12.0": { + "name": "symfony/polyfill-php70", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "version": "v1.12.0", "version_normalized": "1.12.0.0", "source": { "type": "git", +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "url": "https://github.com/symfony/polyfill-php56.git", "reference": "0e3b212e96a51338639d8ce175c046d7729c3403" }, @@ -16857,11 +19938,20 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403", "reference": "0e3b212e96a51338639d8ce175c046d7729c3403", +======= + "url": "https://github.com/symfony/polyfill-php70.git", + "reference": "54b4c428a0054e254223797d2713c31e08610831" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831", + "reference": "54b4c428a0054e254223797d2713c31e08610831", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { - "php": ">=5.3.3", - "symfony/polyfill-util": "~1.0" + "paragonie/random_compat": "~1.0|~2.0|~9.99", + "php": ">=5.3.3" }, "time": "2019-08-06T08:03:45+00:00", "type": "library", @@ -16872,10 +19962,13 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Php56\\": "" + "Symfony\\Polyfill\\Php70\\": "" }, "files": [ "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -16892,7 +19985,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -16900,10 +19993,15 @@ "portable", "shim" ] +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json } }, "symfony/polyfill-php70": { "v1.12.0": { +======= + }, + "v1.13.1": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "symfony/polyfill-php70", "version": "v1.12.0", "version_normalized": "1.12.0.0", @@ -17085,6 +20183,62 @@ }, "symfony/polyfill-util": { "v1.12.0": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "symfony/polyfill-util", + "version": "v1.12.0", + "version_normalized": "1.12.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-util.git", + "reference": "4317de1386717b4c22caed7725350a8887ab205c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4317de1386717b4c22caed7725350a8887ab205c", + "reference": "4317de1386717b4c22caed7725350a8887ab205c", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "time": "2019-08-06T08:03:45+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.12-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Util\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony utilities for portability of PHP codes", + "homepage": "https://symfony.com", + "keywords": [ + "compat", + "compatibility", + "polyfill", + "shim" + ] + }, + "v1.13.1": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "symfony/polyfill-util", "version": "v1.12.0", "version_normalized": "1.12.0.0", @@ -17140,6 +20294,59 @@ }, "symfony/process": { "v3.4.35": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "symfony/process", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e", + "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8" + }, + "time": "2019-10-24T15:33:53+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Process Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "symfony/process", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -17186,37 +20393,186 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Process Component", - "homepage": "https://symfony.com" + "description": "Symfony Process Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "v4.3.8": { + "name": "symfony/process", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "3b2e0cb029afbb0395034509291f21191d1a4db0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/3b2e0cb029afbb0395034509291f21191d1a4db0", + "reference": "3b2e0cb029afbb0395034509291f21191d1a4db0", +======= + "v4.4.2": { + "name": "symfony/process", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "b84501ad50adb72a94fb460a5b5c91f693e99c9b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/b84501ad50adb72a94fb460a5b5c91f693e99c9b", + "reference": "b84501ad50adb72a94fb460a5b5c91f693e99c9b", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "time": "2019-10-28T17:07:32+00:00", +======= + "time": "2019-12-06T10:06:46+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Process Component", + "homepage": "https://symfony.com" + } + }, + "symfony/psr-http-message-bridge": { + "v1.1.2": { + "name": "symfony/psr-http-message-bridge", + "version": "v1.1.2", + "version_normalized": "1.1.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/psr-http-message-bridge.git", + "reference": "a33352af16f78a5ff4f9d90811536abf210df12b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b", + "reference": "a33352af16f78a5ff4f9d90811536abf210df12b", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0", + "psr/http-message": "^1.0", + "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0" + }, + "require-dev": { + "symfony/phpunit-bridge": "^3.4 || ^4.0" + }, + "suggest": { + "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + }, + "time": "2019-04-03T17:09:40+00:00", + "type": "symfony-bridge", + "extra": { + "branch-alias": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "dev-master": "1.2-dev" +======= + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Bridge\\PsrHttpMessage\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Symfony Community", + "homepage": "http://symfony.com/contributors" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "PSR HTTP message bridge", + "homepage": "http://symfony.com", + "keywords": [ + "http", + "http-message", + "psr-17", + "psr-7" + ] }, - "v4.3.8": { - "name": "symfony/process", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "v1.3.0": { + "name": "symfony/psr-http-message-bridge", + "version": "v1.3.0", + "version_normalized": "1.3.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "3b2e0cb029afbb0395034509291f21191d1a4db0" + "url": "https://github.com/symfony/psr-http-message-bridge.git", + "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/3b2e0cb029afbb0395034509291f21191d1a4db0", - "reference": "3b2e0cb029afbb0395034509291f21191d1a4db0", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9d3e80d54d9ae747ad573cad796e8e247df7b796", + "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "^7.1", + "psr/http-message": "^1.0", + "symfony/http-foundation": "^4.4 || ^5.0" }, - "time": "2019-10-28T17:07:32+00:00", - "type": "library", + "require-dev": { + "nyholm/psr7": "^1.1", + "symfony/phpunit-bridge": "^4.4 || ^5.0", + "zendframework/zend-diactoros": "^1.4.1 || ^2.0" + }, + "suggest": { + "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + }, + "time": "2019-11-25T19:33:50+00:00", + "type": "symfony-bridge", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "1.3-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Process\\": "" + "Symfony\\Bridge\\PsrHttpMessage\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -17233,52 +20589,70 @@ }, { "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "homepage": "http://symfony.com/contributors" } ], - "description": "Symfony Process Component", - "homepage": "https://symfony.com" + "description": "PSR HTTP message bridge", + "homepage": "http://symfony.com", + "keywords": [ + "http", + "http-message", + "psr-17", + "psr-7" + ] } }, - "symfony/psr-http-message-bridge": { - "v1.2.0": { - "name": "symfony/psr-http-message-bridge", - "version": "v1.2.0", - "version_normalized": "1.2.0.0", + "symfony/routing": { + "v3.4.35": { + "name": "symfony/routing", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad" + "url": "https://github.com/symfony/routing.git", + "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad", - "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad", + "url": "https://api.github.com/repos/symfony/routing/zipball/afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5", + "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5", "shasum": "" }, "require": { - "php": "^7.1", - "psr/http-message": "^1.0", - "symfony/http-foundation": "^3.4 || ^4.0" + "php": "^5.5.9|>=7.0.8" + }, + "conflict": { + "symfony/config": "<3.3.1", + "symfony/dependency-injection": "<3.3", + "symfony/yaml": "<3.4" }, "require-dev": { - "nyholm/psr7": "^1.1", - "symfony/phpunit-bridge": "^3.4.20 || ^4.0", - "zendframework/zend-diactoros": "^1.4.1 || ^2.0" + "doctrine/annotations": "~1.0", + "psr/log": "~1.0", + "symfony/config": "^3.3.1|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/yaml": "~3.4|~4.0" }, "suggest": { - "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + "doctrine/annotations": "For using the annotation loader", + "symfony/config": "For using the all-in-one router or any loader", + "symfony/expression-language": "For using expression matching", + "symfony/http-foundation": "For using a Symfony Request object", + "symfony/yaml": "For using the YAML loader" }, - "time": "2019-03-11T18:22:33+00:00", - "type": "symfony-bridge", + "time": "2019-11-08T17:25:00+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2-dev" + "dev-master": "3.4-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json } }, "autoload": { "psr-4": { - "Symfony\\Bridge\\PsrHttpMessage\\": "" + "Symfony\\Component\\Routing\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -17291,25 +20665,34 @@ "authors": [ { "name": "Symfony Community", +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "homepage": "http://symfony.com/contributors" }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" +======= + "homepage": "https://symfony.com/contributors" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json } ], - "description": "PSR HTTP message bridge", - "homepage": "http://symfony.com", + "description": "Symfony Routing Component", + "homepage": "https://symfony.com", "keywords": [ - "http", - "http-message", - "psr-17", - "psr-7" + "router", + "routing", + "uri", + "url" ] +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json } }, "symfony/routing": { "v3.4.35": { +======= + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "symfony/routing", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -17389,6 +20772,89 @@ }, "symfony/serializer": { "v3.4.35": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "symfony/serializer", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/serializer.git", + "reference": "9d14f7ff2c585a8a9f6f980253066285ddc2f675" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/serializer/zipball/9d14f7ff2c585a8a9f6f980253066285ddc2f675", + "reference": "9d14f7ff2c585a8a9f6f980253066285ddc2f675", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "phpdocumentor/type-resolver": "<0.2.1", + "symfony/dependency-injection": "<3.2", + "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4", + "symfony/property-info": "<3.1", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "doctrine/annotations": "~1.0", + "doctrine/cache": "~1.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0", + "symfony/cache": "~3.1|~4.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.2|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/property-access": "~2.8|~3.0|~4.0", + "symfony/property-info": "^3.4.13|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.", + "doctrine/cache": "For using the default cached annotation reader and metadata cache.", + "psr/cache-implementation": "For using the metadata cache.", + "symfony/config": "For using the XML mapping loader.", + "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.", + "symfony/property-access": "For using the ObjectNormalizer.", + "symfony/property-info": "To deserialize relations.", + "symfony/yaml": "For using the default YAML mapping loader." + }, + "time": "2019-11-12T17:51:12+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Serializer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Serializer Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "symfony/serializer", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -17490,19 +20956,102 @@ "psr/container": "^1.0" }, "suggest": { - "symfony/service-implementation": "" + "symfony/service-implementation": "" + }, + "time": "2019-10-14T12:27:06+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ] + } + }, + "symfony/translation": { + "v3.4.35": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "symfony/translation", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/2031c895bc97ac1787d418d90bd1ed7d299f2772", + "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/config": "<2.8", + "symfony/dependency-injection": "<3.4", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/http-kernel": "~3.4|~4.0", + "symfony/intl": "^2.8.18|^3.2.5|~4.0", + "symfony/var-dumper": "~3.4|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "psr/log-implementation": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" }, - "time": "2019-10-14T12:27:06+00:00", + "time": "2019-10-30T12:43:22+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Contracts\\Service\\": "" - } + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -17510,28 +21059,19 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to writing services", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ] - } - }, - "symfony/translation": { - "v3.4.35": { + "description": "Symfony Translation Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "symfony/translation", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -17602,6 +21142,7 @@ "description": "Symfony Translation Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "v4.3.8": { "name": "symfony/translation", "version": "v4.3.8", @@ -17615,6 +21156,21 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/translation/zipball/bbce239b35b0cd47bd75848b23e969f17dd970e7", "reference": "bbce239b35b0cd47bd75848b23e969f17dd970e7", +======= + "v4.4.2": { + "name": "symfony/translation", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "f7669f48a9633bf8139bc026c755e894b7206677" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/f7669f48a9633bf8139bc026c755e894b7206677", + "reference": "f7669f48a9633bf8139bc026c755e894b7206677", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { @@ -17647,7 +21203,11 @@ "symfony/config": "", "symfony/yaml": "" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-11-06T23:21:49+00:00", +======= + "time": "2019-12-12T12:53:52+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "type": "library", "extra": { "branch-alias": { @@ -17702,11 +21262,11 @@ "suggest": { "symfony/translation-implementation": "" }, - "time": "2019-09-17T11:12:18+00:00", + "time": "2019-11-18T17:27:11+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -17796,6 +21356,118 @@ "symfony/property-access": "For accessing properties within comparison constraints", "symfony/yaml": "" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "time": "2019-09-17T11:12:18+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" +======= + "time": "2019-11-05T22:03:38+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Validator\\": "" + }, + "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" + } + ], +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ] + } + }, + "symfony/validator": { + "v3.4.35": { +======= + "description": "Symfony Validator Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json + "name": "symfony/validator", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/validator.git", + "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/validator/zipball/b11f45742c5c9a228cedc46b70c6317780a1ac80", + "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation": "~2.8|~3.0|~4.0" + }, + "conflict": { + "doctrine/lexer": "<1.0.2", + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", + "symfony/dependency-injection": "<3.3", + "symfony/http-kernel": "<3.3.5", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "doctrine/annotations": "~1.7", + "doctrine/cache": "~1.0", + "egulias/email-validator": "^2.1.10", + "symfony/cache": "~3.1|~4.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/http-kernel": "^3.3.5|~4.0", + "symfony/intl": "^2.8.18|^3.2.5|~4.0", + "symfony/property-access": "~2.8|~3.0|~4.0", + "symfony/var-dumper": "~3.3|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.", + "doctrine/cache": "For using the default cached annotation reader and metadata cache.", + "egulias/email-validator": "Strict (RFC compliant) email validation", + "psr/cache-implementation": "For using the metadata cache.", + "symfony/config": "", + "symfony/expression-language": "For using the Expression validator", + "symfony/http-foundation": "", + "symfony/intl": "", + "symfony/property-access": "For accessing properties within comparison constraints", + "symfony/yaml": "" + }, "time": "2019-11-05T22:03:38+00:00", "type": "library", "extra": { @@ -17811,61 +21483,159 @@ "/Tests/" ] }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Validator Component", - "homepage": "https://symfony.com" - } - }, - "symfony/var-dumper": { - "v3.4.35": { + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Validator Component", + "homepage": "https://symfony.com" + } + }, + "symfony/var-dumper": { + "v3.4.35": { + "name": "symfony/var-dumper", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "569e261461600810845a8305ca3f64abd3e712c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/569e261461600810845a8305ca3f64abd3e712c0", + "reference": "569e261461600810845a8305ca3f64abd3e712c0", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + }, + "require-dev": { + "ext-iconv": "*", + "twig/twig": "~1.34|~2.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", + "ext-symfony_debug": "" + }, + "time": "2019-10-10T11:03:19+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony mechanism for exploring and dumping PHP variables", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ] + }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "v4.3.8": { + "name": "symfony/var-dumper", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "ea4940845535c85ff5c505e13b3205b0076d07bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ea4940845535c85ff5c505e13b3205b0076d07bf", + "reference": "ea4940845535c85ff5c505e13b3205b0076d07bf", +======= + "v4.4.2": { "name": "symfony/var-dumper", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "569e261461600810845a8305ca3f64abd3e712c0" + "reference": "be330f919bdb395d1e0c3f2bfb8948512d6bdd99" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/569e261461600810845a8305ca3f64abd3e712c0", - "reference": "569e261461600810845a8305ca3f64abd3e712c0", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/be330f919bdb395d1e0c3f2bfb8948512d6bdd99", + "reference": "be330f919bdb395d1e0c3f2bfb8948512d6bdd99", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-mbstring": "~1.0" + "php": "^7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php72": "~1.5" }, "conflict": { - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", + "symfony/console": "<3.4" }, "require-dev": { "ext-iconv": "*", +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json + "symfony/console": "~3.4|~4.0", + "symfony/process": "~3.4|~4.0", "twig/twig": "~1.34|~2.4" +======= + "symfony/console": "^3.4|^4.0|^5.0", + "symfony/process": "^4.4|^5.0", + "twig/twig": "^1.34|^2.4|^3.0" }, "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", - "ext-symfony_debug": "" + "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" }, - "time": "2019-10-10T11:03:19+00:00", + "time": "2019-12-18T13:41:29+00:00", + "bin": [ + "Resources/bin/var-dump-server" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -17900,42 +21670,46 @@ "dump" ] }, - "v4.3.8": { + "v5.0.2": { "name": "symfony/var-dumper", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "ea4940845535c85ff5c505e13b3205b0076d07bf" + "reference": "d7bc61d5d335fa9b1b91e14bb16861e8ca50f53a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ea4940845535c85ff5c505e13b3205b0076d07bf", - "reference": "ea4940845535c85ff5c505e13b3205b0076d07bf", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d7bc61d5d335fa9b1b91e14bb16861e8ca50f53a", + "reference": "d7bc61d5d335fa9b1b91e14bb16861e8ca50f53a", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php72": "~1.5" + "php": "^7.2.5", + "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", - "symfony/console": "<3.4" + "phpunit/phpunit": "<5.4.3", + "symfony/console": "<4.4" }, "require-dev": { "ext-iconv": "*", - "symfony/console": "~3.4|~4.0", - "symfony/process": "~3.4|~4.0", - "twig/twig": "~1.34|~2.4" + "symfony/console": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0", + "twig/twig": "^2.4|^3.0" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json }, "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 bin/var-dump-server script" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-10-13T12:02:04+00:00", +======= + "time": "2019-12-18T13:50:31+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "bin": [ "Resources/bin/var-dump-server" ], @@ -17980,6 +21754,69 @@ }, "symfony/yaml": { "v3.4.35": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= + "name": "symfony/yaml", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "dab657db15207879217fc81df4f875947bf68804" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/dab657db15207879217fc81df4f875947bf68804", + "reference": "dab657db15207879217fc81df4f875947bf68804", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/console": "<3.4" + }, + "require-dev": { + "symfony/console": "~3.4|~4.0" + }, + "suggest": { + "symfony/console": "For validating YAML files using the lint command" + }, + "time": "2019-10-24T15:33:53+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Yaml Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "name": "symfony/yaml", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -18039,6 +21876,7 @@ "description": "Symfony Yaml Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "v4.3.8": { "name": "symfony/yaml", "version": "v4.3.8", @@ -18052,6 +21890,21 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/yaml/zipball/324cf4b19c345465fad14f3602050519e09e361d", "reference": "324cf4b19c345465fad14f3602050519e09e361d", +======= + "v4.4.2": { + "name": "symfony/yaml", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "a08832b974dd5fafe3085a66d41fe4c84bb2628c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/a08832b974dd5fafe3085a66d41fe4c84bb2628c", + "reference": "a08832b974dd5fafe3085a66d41fe4c84bb2628c", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "shasum": "" }, "require": { @@ -18062,12 +21915,80 @@ "symfony/console": "<3.4" }, "require-dev": { +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "symfony/console": "~3.4|~4.0" +======= + "symfony/console": "^3.4|^4.0|^5.0" + }, + "suggest": { + "symfony/console": "For validating YAML files using the lint command" + }, + "time": "2019-12-10T10:33:21+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Yaml Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/yaml", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "847661e77afa48d99ecfa508e8b60f0b029a19c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/847661e77afa48d99ecfa508e8b60f0b029a19c0", + "reference": "847661e77afa48d99ecfa508e8b60f0b029a19c0", + "shasum": "" + }, + "require": { + "php": "^7.2.5", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/console": "<4.4" + }, + "require-dev": { + "symfony/console": "^4.4|^5.0" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json }, "suggest": { "symfony/console": "For validating YAML files using the lint command" }, +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json "time": "2019-10-30T12:58:49+00:00", +======= + "time": "2019-12-10T11:06:55+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json "type": "library", "extra": { "branch-alias": { @@ -18144,6 +22065,73 @@ } }, "twig/twig": { + "v1.42.3": { + "name": "twig/twig", + "version": "v1.42.3", + "version_normalized": "1.42.3.0", + "source": { + "type": "git", + "url": "https://github.com/twigphp/Twig.git", + "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/201baee843e0ffe8b0b956f336dd42b2a92fae4e", + "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e", + "shasum": "" + }, + "require": { + "php": ">=5.5.0", + "symfony/polyfill-ctype": "^1.8" + }, + "require-dev": { + "psr/container": "^1.0", + "symfony/debug": "^3.4|^4.2", + "symfony/phpunit-bridge": "^4.4@dev|^5.0" + }, + "time": "2019-08-24T12:51:03+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.42-dev" + } + }, + "autoload": { + "psr-0": { + "Twig_": "lib/" + }, + "psr-4": { + "Twig\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + }, + { + "name": "Twig Team", + "homepage": "https://twig.symfony.com/contributors", + "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" + } + ], + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", + "keywords": [ + "templating" + ] + }, "v1.42.4": { "name": "twig/twig", "version": "v1.42.4", @@ -18211,19 +22199,19 @@ "templating" ] }, - "v2.12.2": { + "v2.12.3": { "name": "twig/twig", - "version": "v2.12.2", - "version_normalized": "2.12.2.0", + "version": "v2.12.3", + "version_normalized": "2.12.3.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "d761fd1f1c6b867ae09a7d8119a6d95d06dc44ed" + "reference": "97b6311585cae66a26833b14b33785f5797f7d39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/d761fd1f1c6b867ae09a7d8119a6d95d06dc44ed", - "reference": "d761fd1f1c6b867ae09a7d8119a6d95d06dc44ed", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/97b6311585cae66a26833b14b33785f5797f7d39", + "reference": "97b6311585cae66a26833b14b33785f5797f7d39", "shasum": "" }, "require": { @@ -18233,10 +22221,9 @@ }, "require-dev": { "psr/container": "^1.0", - "symfony/debug": "^3.4|^4.2", - "symfony/phpunit-bridge": "^4.4@dev|^5.0" + "symfony/phpunit-bridge": "^4.4|^5.0" }, - "time": "2019-11-11T16:52:09+00:00", + "time": "2019-12-28T07:12:03+00:00", "type": "library", "extra": { "branch-alias": { @@ -18264,7 +22251,6 @@ }, { "name": "Twig Team", - "homepage": "https://twig.symfony.com/contributors", "role": "Contributors" }, { @@ -18278,38 +22264,44 @@ "keywords": [ "templating" ] +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +======= } }, "typo3/phar-stream-wrapper": { - "v2.1.3": { + "v3.1.3": { "name": "typo3/phar-stream-wrapper", - "version": "v2.1.3", - "version_normalized": "2.1.3.0", + "version": "v3.1.3", + "version_normalized": "3.1.3.0", "source": { "type": "git", "url": "https://github.com/TYPO3/phar-stream-wrapper.git", - "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb" + "reference": "586ff60beea128e069a5dc271d3d8133a9bc460a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e8a656d72028b97ab9f61ed993734f3cded02eeb", - "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb", + "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/586ff60beea128e069a5dc271d3d8133a9bc460a", + "reference": "586ff60beea128e069a5dc271d3d8133a9bc460a", "shasum": "" }, "require": { - "brumann/polyfill-unserialize": "^1.0", "ext-json": "*", - "php": "^5.3.3|^7.0" + "php": "^7.0" }, "require-dev": { "ext-xdebug": "*", - "phpunit/phpunit": "^4.8.36" + "phpunit/phpunit": "^6.5" }, "suggest": { "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing" }, - "time": "2019-10-18T11:59:10+00:00", + "time": "2019-10-18T11:57:16+00:00", "type": "library", + "extra": { + "branch-alias": { + "dev-master": "v3.x-dev" + } + }, "autoload": { "psr-4": { "TYPO3\\PharStreamWrapper\\": "src/" @@ -18327,6 +22319,7 @@ "security", "stream-wrapper" ] +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json } }, "webflo/drupal-finder": { @@ -18630,7 +22623,12 @@ "http", "psr", "psr-7" +<<<<<<< HEAD:app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json ] +======= + ], + "abandoned": "laminas/laminas-diactoros" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/include/all$36dacd79a7903ab24c6c2d341361721187248df5.json } }, "zendframework/zend-escaper": { @@ -18678,7 +22676,8 @@ "ZendFramework", "escaper", "zf" - ] + ], + "abandoned": "laminas/laminas-escaper" } }, "zendframework/zend-feed": { @@ -18744,7 +22743,8 @@ "ZendFramework", "feed", "zf" - ] + ], + "abandoned": "laminas/laminas-feed" } }, "zendframework/zend-stdlib": { @@ -18793,7 +22793,8 @@ "ZendFramework", "stdlib", "zf" - ] + ], + "abandoned": "laminas/laminas-stdlib" } } } diff --git a/app/index.html b/app/index.html index 659fcf2..3dfc86b 100644 --- a/app/index.html +++ b/app/index.html @@ -21,8 +21,8 @@

    govcms/satis-stable

    - -
    Last updated:
    + +
    Last updated:
    @@ -159,6 +159,7 @@
    Setting up this repository in your projects
    Releases
    + 1.3.0, 1.2.0
    @@ -166,6 +167,7 @@
    Setting up this repository in your projects
    @@ -611,7 +613,7 @@
    Setting up this repository in your projects
    Releases
    - v1.2.0
    + v1.3.0
    Required by
    @@ -702,50 +704,6 @@
    Setting up this repository in your projects
    -
    - - -
    -

    Backports unserialize options introduced in PHP 7.0 to older PHP versions.

    - -
    -
    -
    - - - -
    License
    -
    MIT
    - -
    Authors
    -
    - Denis Brumann
    - - -
    Releases
    -
    - - v1.0.4
    - - -
    Required by
    -
    - -
    -
    -
    -
    -
    @@ -827,7 +785,7 @@
    Setting up this repository in your projects
    Releases
    - 1.30.5
    + 1.31.0
    Required by
    @@ -954,6 +912,7 @@
    Setting up this repository in your projects
    @@ -999,6 +958,7 @@
    Setting up this repository in your projects
    Releases
    + 1.5.1, 1.5.0
    @@ -1007,6 +967,7 @@
    Setting up this repository in your projects
    @@ -1829,7 +1790,7 @@
    Setting up this repository in your projects
    Releases
    - 0.1
    + v0.1.1
    Required by
    @@ -1883,7 +1844,8 @@
    Setting up this repository in your projects
    Releases
    - v1.8.0
    + v1.8.0, + v1.4.0
    Required by
    @@ -1894,6 +1856,7 @@
    Setting up this repository in your projects
  • doctrine/reflection
  • drupal/console
  • drupal/core
  • +
  • drupal/core-recommended
  • @@ -1928,7 +1891,6 @@
    Setting up this repository in your projects
    memcached php redis - riak xcache @@ -1948,7 +1910,8 @@
    Setting up this repository in your projects
    Releases
    - 1.9.1
    + 1.10.0, + v1.6.2
    Required by
    @@ -1956,6 +1919,7 @@
    Setting up this repository in your projects
    @@ -2004,7 +1968,8 @@
    Setting up this repository in your projects
    Releases
    - 1.6.4
    + 1.6.4, + v1.4.0
    Required by
    @@ -2014,6 +1979,7 @@
    Setting up this repository in your projects
  • doctrine/common
  • doctrine/persistence
  • drupal/console
  • +
  • drupal/core-recommended
  • @@ -2061,13 +2027,15 @@
    Setting up this repository in your projects
    Releases
    - v2.11.0
    + 2.12.0, + v2.7.3
    Required by
    @@ -2173,13 +2141,15 @@
    Setting up this repository in your projects
    Releases
    - 1.3.1
    + 1.3.1, + v1.2.0
    Required by
    @@ -2283,7 +2253,8 @@
    Setting up this repository in your projects
    Releases
    - 1.2.0
    + 1.2.0, + 1.0.2
    Required by
    @@ -2291,6 +2262,7 @@
    Setting up this repository in your projects
    @@ -2341,7 +2313,7 @@
    Setting up this repository in your projects
    Releases
    - 1.2.0
    + 1.3.5
    Required by
    @@ -2366,7 +2338,7 @@
    Setting up this repository in your projects
    -

    Doctrine Reflection component

    +

    The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.

    @@ -2375,6 +2347,7 @@
    Setting up this repository in your projects
    Keywords
    reflection + static
    Homepage
    @@ -2387,13 +2360,13 @@
    Setting up this repository in your projects
    Authors
    - Roman Borschel, Benjamin Eberlei, Guilherme Blanco, Jonathan Wage, Johannes Schmitt, Marco Pivetta
    + Guilherme Blanco, Roman Borschel, Benjamin Eberlei, Jonathan Wage, Johannes Schmitt, Marco Pivetta
    Releases
    - v1.0.0
    + v1.1.0
    Required by
    @@ -2720,7 +2693,7 @@
    Setting up this repository in your projects
    Releases
    - 2.8.0, + 2.9.0, 2.6.0
    @@ -2776,7 +2749,7 @@
    Setting up this repository in your projects
    Releases
    - 2.8.0, + 2.9.0, 2.6.0
    @@ -2883,7 +2856,7 @@
    Setting up this repository in your projects
    Releases
    - 8.3.6
    + 8.3.7
    Required by
    @@ -3044,7 +3017,7 @@
    Setting up this repository in your projects
    Authors
    - Tommy Lynge Jørgensen, Fabian Bircher
    + Tommy Lynge Jørgensen, Fabian Bircher, tlyngej
    Support
    @@ -3658,7 +3631,7 @@
    Setting up this repository in your projects
    Releases
    - 8.7.9
    + 8.8.1
    Required by
    @@ -3680,6 +3653,7 @@
    Setting up this repository in your projects
  • drupal/consumers
  • drupal/contact_storage
  • drupal/context
  • +
  • drupal/core-recommended
  • drupal/crop
  • drupal/ctools
  • drupal/ctools_block
  • @@ -3747,6 +3721,46 @@
    Setting up this repository in your projects
  • drupal/username_enumeration_prevention
  • drupal/video_embed_field
  • drupal/webform
  • + + +
    +
    +
    + +
    + + +
    +

    Locked core dependencies; require this project INSTEAD OF drupal/core.

    + +
    +
    +
    + + + +
    License
    +
    GPL-2.0-or-later
    + + + +
    Releases
    +
    + + 8.8.1
    + + +
    Required by
    +
    +
    @@ -3790,7 +3804,7 @@
    Setting up this repository in your projects
    Releases
    - 8.7.10
    + 8.8.1
    Required by
    @@ -3839,7 +3853,7 @@
    Setting up this repository in your projects
    Releases
    - 8.7.10
    + 8.8.1
    Required by
    @@ -3895,7 +3909,7 @@
    Setting up this repository in your projects
    Releases
    - 1.5.0
    + 2.0.0
    Required by
    @@ -4408,6 +4422,7 @@
    Setting up this repository in your projects
    Releases
    + 1.8.0, 1.7.0
    @@ -4465,7 +4480,7 @@
    Setting up this repository in your projects
    Releases
    - 1.0.0
    + 1.3.0
    Required by
    @@ -4739,6 +4754,7 @@
    Setting up this repository in your projects
    Releases
    + 1.7.0, 1.6.0
    @@ -5052,7 +5068,7 @@
    Setting up this repository in your projects
    Authors
    - Hydra, Stalski, jyve, swentel, zuuperman
    + Hydra, Stalski, jyve, nils.destoop, swentel
    Support
    @@ -5439,7 +5455,7 @@
    Setting up this repository in your projects
    Authors
    - bojanz, dawehner, joachim, kaythay, rszrama, slashrsm, webflo
    + bojanz, dawehner, geek-merlin, joachim, jsacksick, kaythay, oknate, rszrama, slashrsm, webflo
    Support
    @@ -5873,7 +5889,7 @@
    Setting up this repository in your projects
    Authors
    - SeriousMatters, davy-r, redndahead
    + Berdir, SeriousMatters, davy-r, mbovan, redndahead
    Support
    @@ -5945,7 +5961,7 @@
    Setting up this repository in your projects
    Releases
    - 1.10.0, + 1.11.0, 1.9.0
    @@ -6098,7 +6114,7 @@
    Setting up this repository in your projects
    Authors
    - Tim Plunkett, dsnopek, japerry, manuel.adan
    + Tim Plunkett, dsnopek, japerry, manuel.adan, phenaproxima
    Support
    @@ -6442,7 +6458,7 @@
    Setting up this repository in your projects
    Releases
    - 1.3.0
    + 1.6.0
    Required by
    @@ -7316,7 +7332,7 @@
    Setting up this repository in your projects
    Authors
    - BarisW, geek.merlin aka axel.rutz, greggles, markdorison, moshe weitzman, msonnabaum, netaustin, robwilmshurst
    + BarisW, geek-merlin, greggles, markdorison, moshe weitzman, msonnabaum, netaustin, robwilmshurst
    Support
    @@ -7407,7 +7423,7 @@
    Setting up this repository in your projects
    -

    Provides a user interface for the Token API and some missing core tokens.

    +

    Provides a user interface for the Token API, some missing core tokens.

    @@ -7420,7 +7436,7 @@
    Setting up this repository in your projects
    License
    -
    GPL-2.0-or-later
    +
    GPL-2.0+
    Authors
    @@ -7436,6 +7452,7 @@
    Setting up this repository in your projects
    Releases
    + 1.6.0, 1.5.0
    @@ -7769,6 +7786,7 @@
    Setting up this repository in your projects
    @@ -7818,6 +7836,7 @@
    Setting up this repository in your projects
    Releases
    + 2.1.14, 2.1.11
    @@ -7825,6 +7844,7 @@
    Setting up this repository in your projects
    @@ -7922,6 +7942,7 @@
    Setting up this repository in your projects
    Releases
    + v3.3.0, v3.2.3
    @@ -7972,7 +7993,7 @@
    Setting up this repository in your projects
    Releases
    - 1.0.0-beta11
    + 1.0.0 @@ -8236,7 +8257,8 @@
    Setting up this repository in your projects
    Releases
    - 6.4.1
    + 6.5.2, + 6.3.3
    Required by
    @@ -8244,6 +8266,7 @@
    Setting up this repository in your projects
    @@ -8292,6 +8315,7 @@
    Setting up this repository in your projects
    Required by
    @@ -8347,6 +8371,7 @@
    Setting up this repository in your projects
    Required by
    @@ -8354,6 +8379,63 @@
    Setting up this repository in your projects
    +
    + + +
    +

    Chosen is a JavaScript plugin that makes select boxes user-friendly. It is currently available in both jQuery and Prototype flavors.

    + +
    +
    +
    + +
    Keywords
    +
    + dropdown + form + input + multiselect + select + ui +
    + +
    Homepage
    +
    + https://harvesthq.github.io/chosen/ +
    + +
    License
    +
    MIT
    + +
    Authors
    +
    + Koen Punt, Patrick Filler, Christophe Coevoet, Ken Earley
    + + +
    Releases
    +
    + + v1.8.7
    + + +
    Required by
    +
    + +
    +
    +
    +
    +
    @@ -8999,13 +9081,15 @@
    Setting up this repository in your projects
    Releases
    - 2.7.0
    + 2.7.0, + 2.3.0
    Required by
    @@ -9103,7 +9187,7 @@
    Setting up this repository in your projects
    Releases
    - 1.25.2
    + 1.25.3
    Required by
    @@ -9152,7 +9236,7 @@
    Setting up this repository in your projects
    Releases
    - 1.9.3
    + 1.9.4
    Required by
    @@ -9300,16 +9384,14 @@
    Setting up this repository in your projects
    Releases
    - v9.99.99, - v2.0.18
    + v9.99.99
    Required by
    @@ -9345,7 +9427,7 @@
    Setting up this repository in your projects
    Releases
    - 2.5.2
    + 2.6.1
    Required by
    @@ -9398,13 +9480,14 @@
    Setting up this repository in your projects
    Releases
    - 1.4.8
    + 1.4.9
    Required by
    @@ -9436,18 +9519,20 @@
    Setting up this repository in your projects
    Authors
    - Greg Beaver, Andrei Zmievski, Stig Bakken
    + Andrei Zmievski, Stig Bakken, Greg Beaver
    Releases
    + v1.4.3, v1.4.2
    Required by
    @@ -9486,12 +9571,14 @@
    Setting up this repository in your projects
    Releases
    - v1.10.10
    + v1.10.10, + v1.10.9
    Required by
    @@ -9538,12 +9625,14 @@
    Setting up this repository in your projects
    Releases
    + v1.0.1, v1.0.0
    Required by
    @@ -9676,7 +9765,7 @@
    Setting up this repository in your projects
    License
    -
    LGPL-3.0
    +
    LGPL-3.0-only
    Authors
    @@ -9686,7 +9775,7 @@
    Setting up this repository in your projects
    Releases
    - 2.16.1
    + 2.16.2 @@ -9781,7 +9870,7 @@
    Setting up this repository in your projects
    Releases
    - 4.3.2
    + 4.3.4
    Required by
    @@ -9938,7 +10027,7 @@
    Setting up this repository in your projects
    Releases
    - 1.9.0
    + 1.10.1
    Required by
    @@ -10380,6 +10469,7 @@
    Setting up this repository in your projects
    @@ -10388,6 +10478,56 @@
    Setting up this repository in your projects
    +
    + + +
    +

    Standard interfaces for event handling.

    + +
    +
    +
    + +
    Keywords
    +
    + events + psr + psr-14 +
    + + +
    License
    +
    MIT
    + +
    Authors
    +
    + PHP-FIG
    + + +
    Releases
    +
    + + 1.0.0
    + + +
    Required by
    +
    + +
    +
    +
    +
    +
    @@ -10438,6 +10578,7 @@
    Setting up this repository in your projects
    Required by
    Required by
    @@ -10497,10 +10639,12 @@
    Setting up this repository in your projects
    @@ -10550,7 +10694,7 @@
    Setting up this repository in your projects
    Releases
    - v0.9.9
    + v0.9.12
    Required by
    @@ -10601,6 +10745,7 @@
    Setting up this repository in your projects
    Required by
    @@ -11268,7 +11413,7 @@
    Setting up this repository in your projects
    Releases
    - 3.5.2
    + 3.5.3
    Required by
    @@ -11324,6 +11469,7 @@
    Setting up this repository in your projects
    @@ -11476,6 +11622,7 @@
    Setting up this repository in your projects
    @@ -11517,7 +11664,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8
    + v5.0.2, + v4.4.2
    Required by
    @@ -11566,6 +11714,7 @@
    Setting up this repository in your projects
    Releases
    + v3.4.36, v3.4.35
    @@ -11574,6 +11723,7 @@
    Setting up this repository in your projects
    @@ -11615,8 +11765,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.2, + v4.4.2, + v3.4.36
    Required by
    @@ -11667,7 +11818,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -11683,6 +11836,7 @@
    Setting up this repository in your projects
  • consolidation/self-update
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • drush/drush
  • psy/psysh
  • stecman/symfony-console-completion
  • @@ -11727,8 +11881,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.2, + v4.4.2, + v3.4.36
    Required by
    @@ -11778,7 +11933,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v4.4.2, + v3.4.36, v3.4.35
    @@ -11786,7 +11942,9 @@
    Setting up this repository in your projects
    @@ -11829,7 +11987,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -11839,6 +11999,7 @@
    Setting up this repository in your projects
  • behat/behat
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • drupal/drupal-driver
  • drupal/drupal-extension
  • pdepend/pdepend
  • @@ -11883,8 +12044,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.2, + v4.4.2, + v3.4.36
    Required by
    @@ -11900,6 +12062,55 @@
    Setting up this repository in your projects
    +
    + + +
    +

    Symfony ErrorHandler Component

    + +
    +
    +
    + + +
    Homepage
    +
    + https://symfony.com +
    + +
    License
    +
    MIT
    + +
    Authors
    +
    + Fabien Potencier, Symfony Community
    + + +
    Releases
    +
    + + v5.0.2, + v4.4.2
    + + +
    Required by
    +
    + +
    +
    +
    +
    +
    @@ -11935,7 +12146,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -11947,6 +12160,7 @@
    Setting up this repository in your projects
  • consolidation/robo
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • drupal/drupal-extension
  • drush/drush
  • solarium/solarium
  • @@ -12001,6 +12215,7 @@
    Setting up this repository in your projects
    Releases
    + v2.0.1, v1.1.7
    @@ -12049,8 +12264,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.2, + v4.4.2, + v3.4.36
    Required by
    @@ -12104,8 +12320,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.2, + v3.4.36
    Required by
    @@ -12159,7 +12375,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -12169,6 +12387,7 @@
    Setting up this repository in your projects
  • asm89/stack-cors
  • drupal/console
  • drupal/core
  • +
  • drupal/core-recommended
  • stack/builder
  • symfony/http-kernel
  • symfony/psr-http-message-bridge
  • @@ -12213,7 +12432,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -12222,6 +12443,7 @@
    Setting up this repository in your projects
    @@ -12270,7 +12492,7 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8
    + v5.0.2
    Required by
    @@ -12318,7 +12540,8 @@
    Setting up this repository in your projects
    Releases
    - v3.4.35
    + v4.4.2, + v3.4.36
    Required by
    @@ -12373,12 +12596,14 @@
    Setting up this repository in your projects
    Releases
    + v1.13.1, v1.12.0
    Required by
    Required by
    @@ -12551,6 +12777,7 @@
    Setting up this repository in your projects
    Releases
    + v1.13.1, v1.12.0
    @@ -12558,7 +12785,7 @@
    Setting up this repository in your projects
    Required by
    @@ -12782,7 +13013,7 @@
    Setting up this repository in your projects
    Releases
    - v1.12.0
    + v1.13.1
    Required by
    @@ -12838,12 +13069,14 @@
    Setting up this repository in your projects
    Releases
    + v1.13.1, v1.12.0
    Required by
    @@ -12886,7 +13119,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v4.4.2, + v3.4.36, v3.4.35
    @@ -12898,6 +13132,7 @@
    Setting up this repository in your projects
  • consolidation/site-process
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • drupal/drupal-driver
  • drush/drush
  • @@ -12942,19 +13177,21 @@
    Setting up this repository in your projects
    Authors
    - Symfony Community, Fabien Potencier
    + Fabien Potencier, Symfony Community
    Releases
    - v1.2.0
    + v1.3.0, + v1.1.2
    Required by
    @@ -13003,6 +13240,7 @@
    Setting up this repository in your projects
    Releases
    + v3.4.36, v3.4.35
    @@ -13010,6 +13248,7 @@
    Setting up this repository in your projects
    @@ -13052,6 +13291,7 @@
    Setting up this repository in your projects
    Releases
    + v3.4.36, v3.4.35
    @@ -13059,6 +13299,7 @@
    Setting up this repository in your projects
    @@ -13109,7 +13350,7 @@
    Setting up this repository in your projects
    Releases
    - v1.1.8
    + v2.0.1
    Required by
    @@ -13158,7 +13399,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v4.4.2, + v3.4.36, v3.4.35
    @@ -13168,6 +13410,7 @@
    Setting up this repository in your projects
  • behat/behat
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • symfony/validator
  • @@ -13219,7 +13462,7 @@
    Setting up this repository in your projects
    Releases
    - v1.1.7
    + v2.0.1
    Required by
    @@ -13267,6 +13510,7 @@
    Setting up this repository in your projects
    Releases
    + v3.4.36, v3.4.35
    @@ -13274,6 +13518,7 @@
    Setting up this repository in your projects
    @@ -13320,8 +13565,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.2, + v4.4.2, + v3.4.36
    Required by
    @@ -13330,6 +13576,7 @@
    Setting up this repository in your projects
  • drupal/devel
  • drush/drush
  • psy/psysh
  • +
  • symfony/error-handler
  • @@ -13371,7 +13618,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -13383,9 +13632,9 @@
    Setting up this repository in your projects
  • drupal/console-core
  • drupal/console-extend-plugin
  • drupal/core
  • +
  • drupal/core-recommended
  • drush/drush
  • grasmash/yaml-expander
  • -
  • phing/phing
  • @@ -13469,14 +13718,15 @@
    Setting up this repository in your projects
    Authors
    - Fabien Potencier, Twig Team, Armin Ronacher
    + Fabien Potencier, Twig Team, Armin Ronacher
    Releases
    - v2.12.2, - v1.42.4
    + v2.12.3, + v1.42.4, + v1.42.3
    Required by
    @@ -13485,6 +13735,7 @@
    Setting up this repository in your projects
  • chi-teck/drupal-code-generator
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • @@ -13530,13 +13781,14 @@
    Setting up this repository in your projects
    Releases
    - v2.1.3
    + v3.1.3
    Required by
    @@ -13626,7 +13878,7 @@
    Setting up this repository in your projects
    Releases
    - 1.5.0
    + 1.6.0
    Required by
    @@ -13781,8 +14033,8 @@
    Setting up this repository in your projects
    -
    -
    +
    +
    @@ -13790,6 +14042,11 @@
    Setting up this repository in your projects
    zendframework/zend-diactoros
    +

    + Abandoned! + Package is abandoned, you should avoid using it. + Use laminas/laminas-diactoros instead. +

    @@ -13826,14 +14083,15 @@
    Setting up this repository in your projects
    -
    -
    +
    +
    @@ -13841,6 +14099,11 @@
    Setting up this repository in your projects
    zendframework/zend-escaper
    +

    + Abandoned! + Package is abandoned, you should avoid using it. + Use laminas/laminas-escaper instead. +

    @@ -13872,6 +14135,7 @@
    Setting up this repository in your projects
    Required by
    @@ -13879,8 +14143,8 @@
    Setting up this repository in your projects
    -
    -
    +
    +
    @@ -13888,6 +14152,11 @@
    Setting up this repository in your projects
    zendframework/zend-feed
    +

    + Abandoned! + Package is abandoned, you should avoid using it. + Use laminas/laminas-feed instead. +

    @@ -13920,14 +14189,15 @@
    Setting up this repository in your projects
    -
    -
    +
    +
    @@ -13935,6 +14205,11 @@
    Setting up this repository in your projects
    zendframework/zend-stdlib
    +

    + Abandoned! + Package is abandoned, you should avoid using it. + Use laminas/laminas-stdlib instead. +

    @@ -13966,6 +14241,7 @@
    Setting up this repository in your projects
    Required by
    diff --git a/app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json b/app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json similarity index 78% rename from app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json rename to app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json index 7e8e241..9d468c4 100644 --- a/app/include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json +++ b/app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json @@ -120,6 +120,59 @@ "cors", "stack" ] + }, + "1.3.0": { + "name": "asm89/stack-cors", + "version": "1.3.0", + "version_normalized": "1.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/asm89/stack-cors.git", + "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08", + "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08", + "shasum": "" + }, + "require": { + "php": ">=5.5.9", + "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0", + "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.0 || ^4.8.10", + "squizlabs/php_codesniffer": "^2.3" + }, + "time": "2019-12-24T22:41:47+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "Asm89\\Stack\\": "src/Asm89/Stack/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alexander", + "email": "iam.asm89@gmail.com" + } + ], + "description": "Cross-origin resource sharing library and stack middleware", + "homepage": "https://github.com/asm89/stack-cors", + "keywords": [ + "cors", + "stack" + ] } }, "behat/behat": { @@ -570,19 +623,19 @@ } }, "behat/transliterator": { - "v1.2.0": { + "v1.3.0": { "name": "behat/transliterator", - "version": "v1.2.0", - "version_normalized": "1.2.0.0", + "version": "v1.3.0", + "version_normalized": "1.3.0.0", "source": { "type": "git", "url": "https://github.com/Behat/Transliterator.git", - "reference": "826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c" + "reference": "3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Transliterator/zipball/826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c", - "reference": "826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c", + "url": "https://api.github.com/repos/Behat/Transliterator/zipball/3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc", + "reference": "3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc", "shasum": "" }, "require": { @@ -590,9 +643,10 @@ }, "require-dev": { "chuyskywalker/rolling-curl": "^3.1", - "php-yaoi/php-yaoi": "^1.0" + "php-yaoi/php-yaoi": "^1.0", + "phpunit/phpunit": "^4.8.36|^6.3" }, - "time": "2017-04-04T11:38:05+00:00", + "time": "2020-01-14T16:39:13+00:00", "type": "library", "extra": { "branch-alias": { @@ -600,8 +654,8 @@ } }, "autoload": { - "psr-0": { - "Behat\\Transliterator": "src/" + "psr-4": { + "Behat\\Transliterator\\": "src/Behat/Transliterator" } }, "notification-url": "https://packagist.org/downloads/", @@ -655,45 +709,6 @@ "type": "bower-asset" } }, - "brumann/polyfill-unserialize": { - "v1.0.4": { - "name": "brumann/polyfill-unserialize", - "version": "v1.0.4", - "version_normalized": "1.0.4.0", - "source": { - "type": "git", - "url": "https://github.com/dbrumann/polyfill-unserialize.git", - "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008", - "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008", - "shasum": "" - }, - "require": { - "php": "^5.3|^7.0" - }, - "time": "2019-07-14T23:16:24+00:00", - "type": "library", - "autoload": { - "psr-4": { - "Brumann\\Polyfill\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Denis Brumann", - "email": "denis.brumann@sensiolabs.de" - } - ], - "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions." - } - }, "caxy/php-htmldiff": { "v0.1.9": { "name": "caxy/php-htmldiff", @@ -989,6 +1004,68 @@ "validation", "versioning" ] + }, + "1.5.1": { + "name": "composer/semver", + "version": "1.5.1", + "version_normalized": "1.5.1.0", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.5 || ^5.0.5" + }, + "time": "2020-01-13T12:06:48+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ] } }, "consolidation/annotated-command": { @@ -2190,6 +2267,75 @@ } }, "doctrine/annotations": { + "v1.4.0": { + "name": "doctrine/annotations", + "version": "v1.4.0", + "version_normalized": "1.4.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/annotations.git", + "reference": "54cacc9b81758b14e3ce750f205a393d52339e97" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97", + "reference": "54cacc9b81758b14e3ce750f205a393d52339e97", + "shasum": "" + }, + "require": { + "doctrine/lexer": "1.*", + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "doctrine/cache": "1.*", + "phpunit/phpunit": "^5.7" + }, + "time": "2017-02-24T16:22:25+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Docblock Annotations Parser", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "annotations", + "docblock", + "parser" + ] + }, "v1.8.0": { "name": "doctrine/annotations", "version": "v1.8.0", @@ -2344,34 +2490,34 @@ "riak", "xcache" ] - } - }, - "doctrine/collections": { - "1.6.4": { - "name": "doctrine/collections", - "version": "1.6.4", - "version_normalized": "1.6.4.0", + }, + "v1.6.2": { + "name": "doctrine/cache", + "version": "v1.6.2", + "version_normalized": "1.6.2.0", "source": { "type": "git", - "url": "https://github.com/doctrine/collections.git", - "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7" + "url": "https://github.com/doctrine/cache.git", + "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", - "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", + "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", + "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "~5.5|~7.0" + }, + "conflict": { + "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan-shim": "^0.9.2", - "phpunit/phpunit": "^7.0", - "vimeo/psalm": "^3.2.2" + "phpunit/phpunit": "~4.8|~5.0", + "predis/predis": "~1.0", + "satooshi/php-coveralls": "~0.6" }, - "time": "2019-11-13T13:07:11+00:00", + "time": "2017-07-22T12:49:21+00:00", "type": "library", "extra": { "branch-alias": { @@ -2380,7 +2526,7 @@ }, "autoload": { "psr-4": { - "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" } }, "notification-url": "https://packagist.org/downloads/", @@ -2388,10 +2534,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -2400,6 +2542,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -2409,42 +2555,181 @@ "email": "schmittjoh@gmail.com" } ], - "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", - "homepage": "https://www.doctrine-project.org/projects/collections.html", + "description": "Caching library offering an object-oriented API for many cache backends", + "homepage": "http://www.doctrine-project.org", "keywords": [ - "array", - "collections", - "iterators", - "php" + "cache", + "caching" ] } }, - "doctrine/common": { - "v2.11.0": { - "name": "doctrine/common", - "version": "v2.11.0", - "version_normalized": "2.11.0.0", + "doctrine/collections": { + "v1.4.0": { + "name": "doctrine/collections", + "version": "v1.4.0", + "version_normalized": "1.4.0.0", "source": { "type": "git", - "url": "https://github.com/doctrine/common.git", - "reference": "b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff" + "url": "https://github.com/doctrine/collections.git", + "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff", - "reference": "b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff", + "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", + "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", "shasum": "" }, "require": { - "doctrine/annotations": "^1.0", - "doctrine/cache": "^1.0", - "doctrine/collections": "^1.0", - "doctrine/event-manager": "^1.0", - "doctrine/inflector": "^1.0", - "doctrine/lexer": "^1.0", - "doctrine/persistence": "^1.1", - "doctrine/reflection": "^1.0", - "php": "^7.1" + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "doctrine/coding-standard": "~0.1@dev", + "phpunit/phpunit": "^5.7" + }, + "time": "2017-01-03T10:49:41+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3.x-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine\\Common\\Collections\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Collections Abstraction library", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "array", + "collections", + "iterator" + ] + }, + "1.6.4": { + "name": "doctrine/collections", + "version": "1.6.4", + "version_normalized": "1.6.4.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/collections.git", + "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", + "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan-shim": "^0.9.2", + "phpunit/phpunit": "^7.0", + "vimeo/psalm": "^3.2.2" + }, + "time": "2019-11-13T13:07:11+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.6.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", + "keywords": [ + "array", + "collections", + "iterators", + "php" + ] + } + }, + "doctrine/common": { + "2.12.0": { + "name": "doctrine/common", + "version": "2.12.0", + "version_normalized": "2.12.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/common.git", + "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/common/zipball/2053eafdf60c2172ee1373d1b9289ba1db7f1fc6", + "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6", + "shasum": "" + }, + "require": { + "doctrine/annotations": "^1.0", + "doctrine/cache": "^1.0", + "doctrine/collections": "^1.0", + "doctrine/event-manager": "^1.0", + "doctrine/inflector": "^1.0", + "doctrine/lexer": "^1.0", + "doctrine/persistence": "^1.1", + "doctrine/reflection": "^1.0", + "php": "^7.1" }, "require-dev": { "doctrine/coding-standard": "^1.0", @@ -2454,7 +2739,7 @@ "squizlabs/php_codesniffer": "^3.0", "symfony/phpunit-bridge": "^4.0.5" }, - "time": "2019-09-10T10:10:14+00:00", + "time": "2020-01-10T15:49:25+00:00", "type": "library", "extra": { "branch-alias": { @@ -2503,6 +2788,80 @@ "doctrine", "php" ] + }, + "v2.7.3": { + "name": "doctrine/common", + "version": "v2.7.3", + "version_normalized": "2.7.3.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/common.git", + "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9", + "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9", + "shasum": "" + }, + "require": { + "doctrine/annotations": "1.*", + "doctrine/cache": "1.*", + "doctrine/collections": "1.*", + "doctrine/inflector": "1.*", + "doctrine/lexer": "1.*", + "php": "~5.6|~7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.4.6" + }, + "time": "2017-07-22T08:35:12+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "lib/Doctrine/Common" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Common Library for Doctrine projects", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "annotations", + "collections", + "eventmanager", + "persistence", + "spl" + ] } }, "doctrine/event-manager": { @@ -2585,32 +2944,32 @@ } }, "doctrine/inflector": { - "1.3.1": { + "v1.2.0": { "name": "doctrine/inflector", - "version": "1.3.1", - "version_normalized": "1.3.1.0", + "version": "v1.2.0", + "version_normalized": "1.2.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1" + "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1", - "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", + "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^7.0" }, "require-dev": { "phpunit/phpunit": "^6.2" }, - "time": "2019-10-30T19:59:35+00:00", + "time": "2017-07-22T12:18:28+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { @@ -2623,10 +2982,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -2635,6 +2990,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -2652,46 +3011,38 @@ "singularize", "string" ] - } - }, - "doctrine/instantiator": { - "1.3.0": { - "name": "doctrine/instantiator", - "version": "1.3.0", - "version_normalized": "1.3.0.0", + }, + "1.3.1": { + "name": "doctrine/inflector", + "version": "1.3.1", + "version_normalized": "1.3.1.0", "source": { "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" + "url": "https://github.com/doctrine/inflector.git", + "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1", + "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1", "shasum": "" }, "require": { "php": "^7.1" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^0.13", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-shim": "^0.11", - "phpunit/phpunit": "^7.0" + "phpunit/phpunit": "^6.2" }, - "time": "2019-10-21T16:45:58+00:00", + "time": "2019-10-30T19:59:35+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.3.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" } }, "notification-url": "https://packagist.org/downloads/", @@ -2700,8 +3051,84 @@ ], "authors": [ { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Common String Manipulations with regard to casing and singular/plural rules.", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "inflection", + "pluralize", + "singularize", + "string" + ] + } + }, + "doctrine/instantiator": { + "1.3.0": { + "name": "doctrine/instantiator", + "version": "1.3.0", + "version_normalized": "1.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", + "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.13", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-shim": "^0.11", + "phpunit/phpunit": "^7.0" + }, + "time": "2019-10-21T16:45:58+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", "homepage": "http://ocramius.github.com/" } ], @@ -2714,6 +3141,67 @@ } }, "doctrine/lexer": { + "1.0.2": { + "name": "doctrine/lexer", + "version": "1.0.2", + "version_normalized": "1.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "^4.5" + }, + "time": "2019-06-08T11:03:04+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ] + }, "1.2.0": { "name": "doctrine/lexer", "version": "1.2.0", @@ -2779,6 +3267,7 @@ } }, "doctrine/persistence": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "1.2.0": { "name": "doctrine/persistence", "version": "1.2.0", @@ -2792,6 +3281,21 @@ "type": "zip", "url": "https://api.github.com/repos/doctrine/persistence/zipball/43526ae63312942e5316100bb3ed589ba1aba491", "reference": "43526ae63312942e5316100bb3ed589ba1aba491", +======= + "1.3.5": { + "name": "doctrine/persistence", + "version": "1.3.5", + "version_normalized": "1.3.5.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/persistence.git", + "reference": "be70c016fdcd44a428405ee062ebcdd01a6867cd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/be70c016fdcd44a428405ee062ebcdd01a6867cd", + "reference": "be70c016fdcd44a428405ee062ebcdd01a6867cd", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { @@ -2810,7 +3314,11 @@ "phpstan/phpstan": "^0.8", "phpunit/phpunit": "^7.0" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "time": "2019-04-23T12:39:21+00:00", +======= + "time": "2020-01-14T18:44:12+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { @@ -2864,19 +3372,19 @@ } }, "doctrine/reflection": { - "v1.0.0": { + "v1.1.0": { "name": "doctrine/reflection", - "version": "v1.0.0", - "version_normalized": "1.0.0.0", + "version": "v1.1.0", + "version_normalized": "1.1.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/reflection.git", - "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6" + "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6", - "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6", + "url": "https://api.github.com/repos/doctrine/reflection/zipball/bc420ead87fdfe08c03ecc3549db603a45b06d4c", + "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c", "shasum": "" }, "require": { @@ -2884,15 +3392,17 @@ "ext-tokenizer": "*", "php": "^7.1" }, + "conflict": { + "doctrine/common": "<2.9" + }, "require-dev": { - "doctrine/coding-standard": "^4.0", - "doctrine/common": "^2.8", - "phpstan/phpstan": "^0.9.2", - "phpstan/phpstan-phpunit": "^0.9.4", - "phpunit/phpunit": "^7.0", - "squizlabs/php_codesniffer": "^3.0" + "doctrine/coding-standard": "^5.0", + "doctrine/common": "^2.10", + "phpstan/phpstan": "^0.11.0", + "phpstan/phpstan-phpunit": "^0.11.0", + "phpunit/phpunit": "^7.0" }, - "time": "2018-06-14T14:45:07+00:00", + "time": "2020-01-08T19:53:19+00:00", "type": "library", "extra": { "branch-alias": { @@ -2909,6 +3419,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -2917,10 +3431,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -2934,10 +3444,11 @@ "email": "ocramius@gmail.com" } ], - "description": "Doctrine Reflection component", + "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.", "homepage": "https://www.doctrine-project.org/projects/reflection.html", "keywords": [ - "reflection" + "reflection", + "static" ] } }, @@ -3357,7 +3868,12 @@ }, "require": { "drupal/chosen_lib": "*", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "drupal/core": "~8.0" +======= + "drupal/core": "^8 || ^9", + "harvesthq/chosen": "^1.8.7" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json }, "type": "drupal-module", "extra": { @@ -3365,8 +3881,13 @@ "dev-2.x": "2.x-dev" }, "drupal": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "version": "8.x-2.8", "datestamp": "1565942881", +======= + "version": "8.x-2.9", + "datestamp": "1576963005", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3504,7 +4025,7 @@ "version_normalized": "2.8.0.0", "require": { "drupal/chosen": "self.version", - "drupal/core": "~8.0", + "drupal/core": "^8 || ^9", "php": ">=5.6.0" }, "type": "metapackage", @@ -3513,8 +4034,13 @@ "dev-2.x": "2.x-dev" }, "drupal": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "version": "8.x-2.8", "datestamp": "1565942881", +======= + "version": "8.x-2.9", + "datestamp": "1576963005", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3818,7 +4344,7 @@ "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8 || ^9" }, "suggest": { "drupal/config_split": "Split site configuration for different environments." @@ -4692,26 +5218,42 @@ } }, "drupal/core": { - "8.7.9": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "8.7.10": { "name": "drupal/core", - "version": "8.7.9", - "version_normalized": "8.7.9.0", + "version": "8.7.10", + "version_normalized": "8.7.10.0", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "881e60062ea86a8f6809a298f09f56afd20b3cf3" + "reference": "02400f3ac4970b218dc63064895b3cbbe8576ad9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/881e60062ea86a8f6809a298f09f56afd20b3cf3", - "reference": "881e60062ea86a8f6809a298f09f56afd20b3cf3", + "url": "https://api.github.com/repos/drupal/core/zipball/02400f3ac4970b218dc63064895b3cbbe8576ad9", + "reference": "02400f3ac4970b218dc63064895b3cbbe8576ad9", +======= + "8.8.1": { + "name": "drupal/core", + "version": "8.8.1", + "version_normalized": "8.8.1.0", + "source": { + "type": "git", + "url": "https://github.com/drupal/core.git", + "reference": "d339279f4c4b89477e0f4a8b775eb5dcb86b3087" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core/zipball/d339279f4c4b89477e0f4a8b775eb5dcb86b3087", + "reference": "d339279f4c4b89477e0f4a8b775eb5dcb86b3087", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { "asm89/stack-cors": "^1.1", "composer/semver": "^1.0", - "doctrine/annotations": "^1.2", - "doctrine/common": "^2.5", + "doctrine/annotations": "^1.4", + "doctrine/common": "^2.7", "easyrdf/easyrdf": "^0.9", "egulias/email-validator": "^2.0", "ext-date": "*", @@ -4727,11 +5269,10 @@ "ext-spl": "*", "ext-tokenizer": "*", "ext-xml": "*", - "guzzlehttp/guzzle": "^6.2.1", + "guzzlehttp/guzzle": "^6.3", "masterminds/html5": "^2.1", - "paragonie/random_compat": "^1.0|^2.0|^9.99.99", - "pear/archive_tar": "^1.4", - "php": "^5.5.9|>=7.0.8", + "pear/archive_tar": "^1.4.9", + "php": ">=7.0.8", "stack/builder": "^1.0", "symfony-cmf/routing": "^1.4", "symfony/class-loader": "~3.4.0", @@ -4749,13 +5290,13 @@ "symfony/validator": "~3.4.0", "symfony/yaml": "~3.4.5", "twig/twig": "^1.38.2", - "typo3/phar-stream-wrapper": "^2.1.1", - "zendframework/zend-diactoros": "^1.1", - "zendframework/zend-feed": "^2.4" + "typo3/phar-stream-wrapper": "^3.1.3", + "zendframework/zend-diactoros": "^1.8", + "zendframework/zend-feed": "^2.12" }, "conflict": { - "drush/drush": "<8.1.10", - "symfony/dom-crawler": ">=4" + "drupal/pathauto": "<1.6", + "drush/drush": "<8.1.10" }, "replace": { "drupal/action": "self.version", @@ -4771,6 +5312,7 @@ "drupal/book": "self.version", "drupal/breakpoint": "self.version", "drupal/ckeditor": "self.version", + "drupal/claro": "self.version", "drupal/classy": "self.version", "drupal/color": "self.version", "drupal/comment": "self.version", @@ -4790,6 +5332,7 @@ "drupal/core-discovery": "self.version", "drupal/core-event-dispatcher": "self.version", "drupal/core-file-cache": "self.version", + "drupal/core-file-security": "self.version", "drupal/core-filesystem": "self.version", "drupal/core-gettext": "self.version", "drupal/core-graph": "self.version", @@ -4817,6 +5360,7 @@ "drupal/forum": "self.version", "drupal/hal": "self.version", "drupal/help": "self.version", + "drupal/help_topics": "self.version", "drupal/history": "self.version", "drupal/image": "self.version", "drupal/inline_form_errors": "self.version", @@ -4839,6 +5383,7 @@ "drupal/options": "self.version", "drupal/page_cache": "self.version", "drupal/path": "self.version", + "drupal/path_alias": "self.version", "drupal/quickedit": "self.version", "drupal/rdf": "self.version", "drupal/responsive_image": "self.version", @@ -4867,6 +5412,7 @@ "drupal/workflows": "self.version", "drupal/workspaces": "self.version" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "require-dev": { "behat/mink": "1.7.x-dev", "behat/mink-goutte-driver": "^1.2", @@ -4882,38 +5428,38 @@ "symfony/debug": "^3.4.0", "symfony/phpunit-bridge": "^3.4.3" }, - "time": "2019-11-06T18:00:38+00:00", + "time": "2019-11-13T23:20:55+00:00", +======= + "time": "2019-12-18T10:34:03+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "drupal-core", "extra": { - "merge-plugin": { - "require": [ - "core/lib/Drupal/Component/Annotation/composer.json", - "core/lib/Drupal/Component/Assertion/composer.json", - "core/lib/Drupal/Component/Bridge/composer.json", - "core/lib/Drupal/Component/ClassFinder/composer.json", - "core/lib/Drupal/Component/Datetime/composer.json", - "core/lib/Drupal/Component/DependencyInjection/composer.json", - "core/lib/Drupal/Component/Diff/composer.json", - "core/lib/Drupal/Component/Discovery/composer.json", - "core/lib/Drupal/Component/EventDispatcher/composer.json", - "core/lib/Drupal/Component/FileCache/composer.json", - "core/lib/Drupal/Component/FileSystem/composer.json", - "core/lib/Drupal/Component/Gettext/composer.json", - "core/lib/Drupal/Component/Graph/composer.json", - "core/lib/Drupal/Component/HttpFoundation/composer.json", - "core/lib/Drupal/Component/PhpStorage/composer.json", - "core/lib/Drupal/Component/Plugin/composer.json", - "core/lib/Drupal/Component/ProxyBuilder/composer.json", - "core/lib/Drupal/Component/Render/composer.json", - "core/lib/Drupal/Component/Serialization/composer.json", - "core/lib/Drupal/Component/Transliteration/composer.json", - "core/lib/Drupal/Component/Utility/composer.json", - "core/lib/Drupal/Component/Uuid/composer.json", - "core/lib/Drupal/Component/Version/composer.json" - ], - "recurse": false, - "replace": false, - "merge-extra": false + "drupal-scaffold": { + "file-mapping": { + "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", + "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", + "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc", + "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore", + "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json", + "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php", + "[web-root]/.htaccess": "assets/scaffold/files/htaccess", + "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", + "[web-root]/index.php": "assets/scaffold/files/index.php", + "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", + "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt", + "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", + "[web-root]/update.php": "assets/scaffold/files/update.php", + "[web-root]/web.config": "assets/scaffold/files/web.config", + "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", + "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml", + "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php", + "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", + "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml", + "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php", + "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", + "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", + "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt" + } } }, "autoload": { @@ -4937,102 +5483,2773 @@ "GPL-2.0-or-later" ], "description": "Drupal is an open source content management platform powering millions of websites and applications." - } - }, - "drupal/core-render": { - "8.7.10": { - "name": "drupal/core-render", - "version": "8.7.10", - "version_normalized": "8.7.10.0", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + }, + "8.7.9": { + "name": "drupal/core", + "version": "8.7.9", + "version_normalized": "8.7.9.0", "source": { "type": "git", - "url": "https://github.com/drupal/core-render.git", - "reference": "088f75280b4357930dc5136c5323cc1641772514" + "url": "https://github.com/drupal/core.git", + "reference": "881e60062ea86a8f6809a298f09f56afd20b3cf3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-render/zipball/088f75280b4357930dc5136c5323cc1641772514", - "reference": "088f75280b4357930dc5136c5323cc1641772514", + "url": "https://api.github.com/repos/drupal/core/zipball/881e60062ea86a8f6809a298f09f56afd20b3cf3", + "reference": "881e60062ea86a8f6809a298f09f56afd20b3cf3", "shasum": "" }, "require": { - "drupal/core-utility": "^8.2", - "php": ">=5.5.9" - }, - "time": "2018-05-08T20:55:21+00:00", - "type": "library", - "autoload": { - "psr-4": { - "Drupal\\Component\\Render\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" + "asm89/stack-cors": "^1.1", + "composer/semver": "^1.0", + "doctrine/annotations": "^1.2", + "doctrine/common": "^2.5", + "easyrdf/easyrdf": "^0.9", + "egulias/email-validator": "^2.0", + "ext-date": "*", + "ext-dom": "*", + "ext-filter": "*", + "ext-gd": "*", + "ext-hash": "*", + "ext-json": "*", + "ext-pcre": "*", + "ext-pdo": "*", + "ext-session": "*", + "ext-simplexml": "*", + "ext-spl": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "guzzlehttp/guzzle": "^6.2.1", + "masterminds/html5": "^2.1", + "paragonie/random_compat": "^1.0|^2.0|^9.99.99", + "pear/archive_tar": "^1.4", + "php": "^5.5.9|>=7.0.8", + "stack/builder": "^1.0", + "symfony-cmf/routing": "^1.4", + "symfony/class-loader": "~3.4.0", + "symfony/console": "~3.4.0", + "symfony/dependency-injection": "~3.4.26", + "symfony/event-dispatcher": "~3.4.0", + "symfony/http-foundation": "~3.4.27", + "symfony/http-kernel": "~3.4.14", + "symfony/polyfill-iconv": "^1.0", + "symfony/process": "~3.4.0", + "symfony/psr-http-message-bridge": "^1.1.2", + "symfony/routing": "~3.4.0", + "symfony/serializer": "~3.4.0", + "symfony/translation": "~3.4.0", + "symfony/validator": "~3.4.0", + "symfony/yaml": "~3.4.5", + "twig/twig": "^1.38.2", + "typo3/phar-stream-wrapper": "^2.1.1", + "zendframework/zend-diactoros": "^1.1", + "zendframework/zend-feed": "^2.4" + }, + "conflict": { + "drush/drush": "<8.1.10", + "symfony/dom-crawler": ">=4" + }, + "replace": { + "drupal/action": "self.version", + "drupal/aggregator": "self.version", + "drupal/automated_cron": "self.version", + "drupal/ban": "self.version", + "drupal/bartik": "self.version", + "drupal/basic_auth": "self.version", + "drupal/big_pipe": "self.version", + "drupal/block": "self.version", + "drupal/block_content": "self.version", + "drupal/block_place": "self.version", + "drupal/book": "self.version", + "drupal/breakpoint": "self.version", + "drupal/ckeditor": "self.version", + "drupal/classy": "self.version", + "drupal/color": "self.version", + "drupal/comment": "self.version", + "drupal/config": "self.version", + "drupal/config_translation": "self.version", + "drupal/contact": "self.version", + "drupal/content_moderation": "self.version", + "drupal/content_translation": "self.version", + "drupal/contextual": "self.version", + "drupal/core-annotation": "self.version", + "drupal/core-assertion": "self.version", + "drupal/core-bridge": "self.version", + "drupal/core-class-finder": "self.version", + "drupal/core-datetime": "self.version", + "drupal/core-dependency-injection": "self.version", + "drupal/core-diff": "self.version", + "drupal/core-discovery": "self.version", + "drupal/core-event-dispatcher": "self.version", + "drupal/core-file-cache": "self.version", + "drupal/core-filesystem": "self.version", + "drupal/core-gettext": "self.version", + "drupal/core-graph": "self.version", + "drupal/core-http-foundation": "self.version", + "drupal/core-php-storage": "self.version", + "drupal/core-plugin": "self.version", + "drupal/core-proxy-builder": "self.version", + "drupal/core-render": "self.version", + "drupal/core-serialization": "self.version", + "drupal/core-transliteration": "self.version", + "drupal/core-utility": "self.version", + "drupal/core-uuid": "self.version", + "drupal/core-version": "self.version", + "drupal/datetime": "self.version", + "drupal/datetime_range": "self.version", + "drupal/dblog": "self.version", + "drupal/dynamic_page_cache": "self.version", + "drupal/editor": "self.version", + "drupal/entity_reference": "self.version", + "drupal/field": "self.version", + "drupal/field_layout": "self.version", + "drupal/field_ui": "self.version", + "drupal/file": "self.version", + "drupal/filter": "self.version", + "drupal/forum": "self.version", + "drupal/hal": "self.version", + "drupal/help": "self.version", + "drupal/history": "self.version", + "drupal/image": "self.version", + "drupal/inline_form_errors": "self.version", + "drupal/jsonapi": "self.version", + "drupal/language": "self.version", + "drupal/layout_builder": "self.version", + "drupal/layout_discovery": "self.version", + "drupal/link": "self.version", + "drupal/locale": "self.version", + "drupal/media": "self.version", + "drupal/media_library": "self.version", + "drupal/menu_link_content": "self.version", + "drupal/menu_ui": "self.version", + "drupal/migrate": "self.version", + "drupal/migrate_drupal": "self.version", + "drupal/migrate_drupal_multilingual": "self.version", + "drupal/migrate_drupal_ui": "self.version", + "drupal/minimal": "self.version", + "drupal/node": "self.version", + "drupal/options": "self.version", + "drupal/page_cache": "self.version", + "drupal/path": "self.version", + "drupal/quickedit": "self.version", + "drupal/rdf": "self.version", + "drupal/responsive_image": "self.version", + "drupal/rest": "self.version", + "drupal/search": "self.version", + "drupal/serialization": "self.version", + "drupal/settings_tray": "self.version", + "drupal/seven": "self.version", + "drupal/shortcut": "self.version", + "drupal/simpletest": "self.version", + "drupal/standard": "self.version", + "drupal/stark": "self.version", + "drupal/statistics": "self.version", + "drupal/syslog": "self.version", + "drupal/system": "self.version", + "drupal/taxonomy": "self.version", + "drupal/telephone": "self.version", + "drupal/text": "self.version", + "drupal/toolbar": "self.version", + "drupal/tour": "self.version", + "drupal/tracker": "self.version", + "drupal/update": "self.version", + "drupal/user": "self.version", + "drupal/views": "self.version", + "drupal/views_ui": "self.version", + "drupal/workflows": "self.version", + "drupal/workspaces": "self.version" + }, + "require-dev": { + "behat/mink": "1.7.x-dev", + "behat/mink-goutte-driver": "^1.2", + "behat/mink-selenium2-driver": "1.3.x-dev", + "drupal/coder": "^8.3.1", + "jcalderonzumba/gastonjs": "^1.0.2", + "jcalderonzumba/mink-phantomjs-driver": "^0.3.1", + "justinrainbow/json-schema": "^5.2", + "mikey179/vfsstream": "^1.2", + "phpspec/prophecy": "^1.7", + "phpunit/phpunit": "^4.8.35 || ^6.5", + "symfony/css-selector": "^3.4.0", + "symfony/debug": "^3.4.0", + "symfony/phpunit-bridge": "^3.4.3" + }, + "time": "2019-11-06T18:00:38+00:00", + "type": "drupal-core", + "extra": { + "merge-plugin": { + "require": [ + "core/lib/Drupal/Component/Annotation/composer.json", + "core/lib/Drupal/Component/Assertion/composer.json", + "core/lib/Drupal/Component/Bridge/composer.json", + "core/lib/Drupal/Component/ClassFinder/composer.json", + "core/lib/Drupal/Component/Datetime/composer.json", + "core/lib/Drupal/Component/DependencyInjection/composer.json", + "core/lib/Drupal/Component/Diff/composer.json", + "core/lib/Drupal/Component/Discovery/composer.json", + "core/lib/Drupal/Component/EventDispatcher/composer.json", + "core/lib/Drupal/Component/FileCache/composer.json", + "core/lib/Drupal/Component/FileSystem/composer.json", + "core/lib/Drupal/Component/Gettext/composer.json", + "core/lib/Drupal/Component/Graph/composer.json", + "core/lib/Drupal/Component/HttpFoundation/composer.json", + "core/lib/Drupal/Component/PhpStorage/composer.json", + "core/lib/Drupal/Component/Plugin/composer.json", + "core/lib/Drupal/Component/ProxyBuilder/composer.json", + "core/lib/Drupal/Component/Render/composer.json", + "core/lib/Drupal/Component/Serialization/composer.json", + "core/lib/Drupal/Component/Transliteration/composer.json", + "core/lib/Drupal/Component/Utility/composer.json", + "core/lib/Drupal/Component/Uuid/composer.json", + "core/lib/Drupal/Component/Version/composer.json" + ], + "recurse": false, + "replace": false, + "merge-extra": false + } + }, + "autoload": { + "psr-4": { + "Drupal\\Core\\": "lib/Drupal/Core", + "Drupal\\Component\\": "lib/Drupal/Component", + "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver" + }, + "classmap": [ + "lib/Drupal.php", + "lib/Drupal/Component/Utility/Timer.php", + "lib/Drupal/Component/Utility/Unicode.php", + "lib/Drupal/Core/Database/Database.php", + "lib/Drupal/Core/DrupalKernel.php", + "lib/Drupal/Core/DrupalKernelInterface.php", + "lib/Drupal/Core/Site/Settings.php" + ] + }, +======= + } + }, + "drupal/core-recommended": { + "8.8.1": { + "name": "drupal/core-recommended", + "version": "8.8.1", + "version_normalized": "8.8.1.0", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-recommended.git", + "reference": "a2215237489ccb456219bd30b26649e6899b6f35" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/a2215237489ccb456219bd30b26649e6899b6f35", + "reference": "a2215237489ccb456219bd30b26649e6899b6f35", + "shasum": "" + }, + "require": { + "asm89/stack-cors": "1.2.0", + "composer/installers": "v1.7.0", + "composer/semver": "1.5.0", + "doctrine/annotations": "v1.4.0", + "doctrine/cache": "v1.6.2", + "doctrine/collections": "v1.4.0", + "doctrine/common": "v2.7.3", + "doctrine/inflector": "v1.2.0", + "doctrine/lexer": "1.0.2", + "drupal/core": "8.8.1", + "easyrdf/easyrdf": "0.9.1", + "egulias/email-validator": "2.1.11", + "guzzlehttp/guzzle": "6.3.3", + "guzzlehttp/promises": "v1.3.1", + "guzzlehttp/psr7": "1.6.1", + "masterminds/html5": "2.3.0", + "paragonie/random_compat": "v9.99.99", + "pear/archive_tar": "1.4.9", + "pear/console_getopt": "v1.4.2", + "pear/pear-core-minimal": "v1.10.9", + "pear/pear_exception": "v1.0.0", + "psr/container": "1.0.0", + "psr/http-message": "1.0.1", + "psr/log": "1.1.0", + "ralouphie/getallheaders": "3.0.3", + "stack/builder": "v1.0.5", + "symfony-cmf/routing": "1.4.1", + "symfony/class-loader": "v3.4.35", + "symfony/console": "v3.4.35", + "symfony/debug": "v3.4.35", + "symfony/dependency-injection": "v3.4.35", + "symfony/event-dispatcher": "v3.4.35", + "symfony/http-foundation": "v3.4.35", + "symfony/http-kernel": "v3.4.35", + "symfony/polyfill-ctype": "v1.12.0", + "symfony/polyfill-iconv": "v1.12.0", + "symfony/polyfill-mbstring": "v1.12.0", + "symfony/polyfill-php56": "v1.12.0", + "symfony/polyfill-php70": "v1.12.0", + "symfony/polyfill-util": "v1.12.0", + "symfony/process": "v3.4.35", + "symfony/psr-http-message-bridge": "v1.1.2", + "symfony/routing": "v3.4.35", + "symfony/serializer": "v3.4.35", + "symfony/translation": "v3.4.35", + "symfony/validator": "v3.4.35", + "symfony/yaml": "v3.4.35", + "twig/twig": "v1.42.3", + "typo3/phar-stream-wrapper": "v3.1.3", + "zendframework/zend-diactoros": "1.8.7", + "zendframework/zend-escaper": "2.6.1", + "zendframework/zend-feed": "2.12.0", + "zendframework/zend-stdlib": "3.2.1" + }, + "conflict": { + "webflo/drupal-core-strict": "*" + }, + "time": "2019-12-18T10:34:03+00:00", + "type": "metapackage", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Locked core dependencies; require this project INSTEAD OF drupal/core." + } + }, + "drupal/core-render": { + "8.7.10": { + "name": "drupal/core-render", + "version": "8.7.10", + "version_normalized": "8.7.10.0", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-render.git", + "reference": "088f75280b4357930dc5136c5323cc1641772514" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-render/zipball/088f75280b4357930dc5136c5323cc1641772514", + "reference": "088f75280b4357930dc5136c5323cc1641772514", + "shasum": "" + }, + "require": { + "drupal/core-utility": "^8.2", + "php": ">=5.5.9" + }, + "time": "2018-05-08T20:55:21+00:00", + "type": "library", + "autoload": { + "psr-4": { + "Drupal\\Component\\Render\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Renders placeholder variables for HTML and plain-text display.", + "homepage": "https://www.drupal.org/project/drupal", + "keywords": [ + "drupal" + ] + } + }, + "drupal/core-utility": { + "8.7.10": { + "name": "drupal/core-utility", + "version": "8.7.10", + "version_normalized": "8.7.10.0", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-utility.git", + "reference": "d31513b29161eec6c3dbeb6529b691840ed677c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-utility/zipball/d31513b29161eec6c3dbeb6529b691840ed677c5", + "reference": "d31513b29161eec6c3dbeb6529b691840ed677c5", + "shasum": "" + }, + "require": { + "drupal/core-render": "^8.2", + "paragonie/random_compat": "^1.0|^2.0", + "php": ">=5.5.9", + "symfony/polyfill-iconv": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "time": "2019-09-09T10:55:36+00:00", + "type": "library", + "autoload": { + "psr-4": { + "Drupal\\Component\\Utility\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Mostly static utility classes for string, xss, array, image, and other commonly needed manipulations.", + "homepage": "https://www.drupal.org/project/drupal", + "keywords": [ + "drupal" + ] + } + }, + "drupal/crop": { + "2.0.0": { + "name": "drupal/crop", + "version": "2.0.0", + "version_normalized": "2.0.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/crop.git", + "reference": "8.x-2.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.0.zip", + "reference": "8.x-2.0", + "shasum": "7e948d35f5d8c0a24515d3b7e37391da4d0b19d8" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, + "drupal": { + "version": "8.x-2.0", + "datestamp": "1578492183", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Drupal Media Team", + "homepage": "https://www.drupal.org/user/3260690" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + }, + { + "name": "woprrr", + "homepage": "https://www.drupal.org/user/858604" + } + ], + "description": "Provides storage and API for image crops.", + "homepage": "https://www.drupal.org/project/crop", + "support": { + "source": "https://git.drupalcode.org/project/crop", + "issues": "https://www.drupal.org/project/issues/crop" + } + } + }, + "drupal/ctools": { + "3.2.0": { + "name": "drupal/ctools", + "version": "3.2.0", + "version_normalized": "3.2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ctools.git", + "reference": "8.x-3.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip", + "reference": "8.x-3.2", + "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091" + }, + "require": { + "drupal/core": "^8.5" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.2", + "datestamp": "1550728386", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Kris Vanderwater (EclipseGc)", + "homepage": "https://www.drupal.org/u/eclipsegc", + "role": "Maintainer" + }, + { + "name": "Jakob Perry (japerry)", + "homepage": "https://www.drupal.org/u/japerry", + "role": "Maintainer" + }, + { + "name": "Tim Plunkett (tim.plunkett)", + "homepage": "https://www.drupal.org/u/timplunkett", + "role": "Maintainer" + }, + { + "name": "James Gilliland (neclimdul)", + "homepage": "https://www.drupal.org/u/neclimdul", + "role": "Maintainer" + }, + { + "name": "Daniel Wehner (dawehner)", + "homepage": "https://www.drupal.org/u/dawehner", + "role": "Maintainer" + }, + { + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" + }, + { + "name": "merlinofchaos", + "homepage": "https://www.drupal.org/user/26979" + }, + { + "name": "neclimdul", + "homepage": "https://www.drupal.org/user/48673" + }, + { + "name": "sdboyer", + "homepage": "https://www.drupal.org/user/146719" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "tim.plunkett", + "homepage": "https://www.drupal.org/user/241634" + } + ], + "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.", + "homepage": "https://www.drupal.org/project/ctools", + "support": { + "source": "http://cgit.drupalcode.org/ctools", + "issues": "https://www.drupal.org/project/issues/ctools" + } + } + }, + "drupal/ctools_block": { + "3.2.0": { + "name": "drupal/ctools_block", + "version": "3.2.0", + "version_normalized": "3.2.0.0", + "require": { + "drupal/core": "~8.0", + "drupal/ctools": "self.version" + }, + "type": "metapackage", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.2", + "datestamp": "1550728386", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "EclipseGc", + "homepage": "https://www.drupal.org/user/61203" + }, + { + "name": "damiankloip", + "homepage": "https://www.drupal.org/user/1037976" + }, + { + "name": "dawehner", + "homepage": "https://www.drupal.org/user/99340" + }, + { + "name": "esmerel", + "homepage": "https://www.drupal.org/user/164022" + }, + { + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" + }, + { + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" + }, + { + "name": "merlinofchaos", + "homepage": "https://www.drupal.org/user/26979" + }, + { + "name": "neclimdul", + "homepage": "https://www.drupal.org/user/48673" + }, + { + "name": "sdboyer", + "homepage": "https://www.drupal.org/user/146719" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "tim.plunkett", + "homepage": "https://www.drupal.org/user/241634" + } + ], + "description": "Provides improvements to blocks that will one day be added to Drupal core.", + "homepage": "https://www.drupal.org/project/ctools", + "support": { + "source": "https://git.drupalcode.org/project/ctools" + } + } + }, + "drupal/devel": { + "2.0.0": { + "name": "drupal/devel", + "version": "2.0.0", + "version_normalized": "2.0.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/devel.git", + "reference": "8.x-2.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.0.zip", + "reference": "8.x-2.0", + "shasum": "cf5fb816f767f3cac4f2e170ab39e982d5e0698b" + }, + "require": { + "drupal/core": "~8.0", + "symfony/var-dumper": "~2.7|^3" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, + "drupal": { + "version": "8.x-2.0", + "datestamp": "1556799496", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Moshe Weitzman", + "homepage": "https://github.com/weitzman", + "email": "weitzman@tejasa.com", + "role": "Maintainer" + }, + { + "name": "Hans Salvisberg", + "homepage": "https://www.drupal.org/u/salvis", + "email": "drupal@salvisberg.com", + "role": "Maintainer" + }, + { + "name": "Luca Lusso", + "homepage": "https://www.drupal.org/u/lussoluca", + "role": "Maintainer" + }, + { + "name": "Marco (willzyx)", + "homepage": "https://www.drupal.org/u/willzyx", + "role": "Maintainer" + }, + { + "name": "See contributors", + "homepage": "https://www.drupal.org/node/3236/committers" + }, + { + "name": "pcambra", + "homepage": "https://www.drupal.org/user/122101" + }, + { + "name": "salvis", + "homepage": "https://www.drupal.org/user/82964" + }, + { + "name": "willzyx", + "homepage": "https://www.drupal.org/user/1043862" + } + ], + "description": "Various blocks, pages, and functions for developers.", + "homepage": "http://drupal.org/project/devel", + "support": { + "source": "http://cgit.drupalcode.org/devel", + "issues": "http://drupal.org/project/devel", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + } + }, + "drupal/diff": { + "1.0.0-rc2": { + "name": "drupal/diff", + "version": "1.0.0-rc2", + "version_normalized": "1.0.0.0-RC2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/diff.git", + "reference": "8.x-1.0-rc2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.0-rc2.zip", + "reference": "8.x-1.0-rc2", + "shasum": "2e8f4efe6e7d355a3d07d33531f077348b13f68d" + }, + "require": { + "drupal/core": "~8.0", + "mkalkbrenner/php-htmldiff-advanced": "~0.0.8" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-rc2", + "datestamp": "1578322688", + "security-coverage": { + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Miro Dietiker (miro_dietiker)", + "homepage": "https://www.drupal.org/u/miro_dietiker", + "role": "Maintainer" + }, + { + "name": "Juampy NR (juampynr)", + "homepage": "https://www.drupal.org/u/juampynr", + "role": "Maintainer" + }, + { + "name": "Lucian Hangea (lhangea)", + "homepage": "https://www.drupal.org/u/lhangea", + "role": "Maintainer" + }, + { + "name": "Alan D.", + "homepage": "https://www.drupal.org/u/alan-d.", + "role": "Maintainer" + }, + { + "name": "Brian Gilbert (realityloop).", + "homepage": "https://www.drupal.org/u/realityloop", + "role": "Maintainer" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "realityloop", + "homepage": "https://www.drupal.org/user/139189" + }, + { + "name": "rötzi", + "homepage": "https://www.drupal.org/user/73064" + }, + { + "name": "yhahn", + "homepage": "https://www.drupal.org/user/264833" + } + ], + "description": "Compares two entity revisions", + "homepage": "https://www.drupal.org/project/diff", + "support": { + "source": "http://cgit.drupalcode.org/diff", + "issues": "https://www.drupal.org/project/issues/diff" + } + } + }, + "drupal/dropzonejs": { + "2.0.0-alpha3": { + "name": "drupal/dropzonejs", + "version": "2.0.0-alpha3", + "version_normalized": "2.0.0.0-alpha3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/dropzonejs.git", + "reference": "8.x-2.0-alpha3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/dropzonejs-8.x-2.0-alpha3.zip", + "reference": "8.x-2.0-alpha3", + "shasum": "a11f37e8f37b211d7065b0fd8adb1cc85b47e691" + }, + "require": { + "drupal/core": "*" + }, + "require-dev": { + "drupal/entity_browser": "*" + }, + "suggest": { + "enyo/dropzone": "Required to user drupal/dropzonejs. Dropzone is an easy to use drag'n'drop library." + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, + "drupal": { + "version": "8.x-2.0-alpha3", + "datestamp": "1555407785", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Janez Urevc", + "homepage": "https://drupal.org/u/slashrsm", + "role": "Maintainer" + }, + { + "name": "Christian Fritsch", + "homepage": "https://drupal.org/u/chrfritsch", + "role": "Maintainer" + }, + { + "name": "Primoz Hmeljak", + "homepage": "https://drupal.org/u/Primsi", + "role": "Maintainer" + }, + { + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/1998478/committers", + "role": "contributor" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + }, + { + "name": "wouters_f", + "homepage": "https://www.drupal.org/user/721548" + }, + { + "name": "zkday", + "homepage": "https://www.drupal.org/user/888644" + } + ], + "description": "Drupal integration for DropzoneJS - An open source library that provides drag’n’drop file uploads with image previews.", + "homepage": "https://www.drupal.org/project/dropzonejs", + "keywords": [ + "DropzoneJS", + "Drupal" + ], + "support": { + "source": "https://www.drupal.org/project/dropzonejs", + "issues": "https://www.drupal.org/project/issues/dropzonejs", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + } + }, + "drupal/drupal-driver": { + "v1.4.0": { + "name": "drupal/drupal-driver", + "version": "v1.4.0", + "version_normalized": "1.4.0.0", + "source": { + "type": "git", + "url": "https://github.com/jhedstrom/DrupalDriver.git", + "reference": "919c6a39ef6a17bdcaf81dcff97b117ecfb6061c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jhedstrom/DrupalDriver/zipball/919c6a39ef6a17bdcaf81dcff97b117ecfb6061c", + "reference": "919c6a39ef6a17bdcaf81dcff97b117ecfb6061c", + "shasum": "" + }, + "require": { + "drupal/core-utility": "^8.4", + "php": ">=5.5.9", + "symfony/dependency-injection": "~2.6|~3.0", + "symfony/process": "~2.5|~3.0" + }, + "require-dev": { + "drupal/coder": "~8.2.0", + "drush-ops/behat-drush-endpoint": "*", + "jakub-onderka/php-parallel-lint": "^0.9.2", + "mockery/mockery": "0.9.4", + "phpspec/phpspec": "~2.0", + "phpunit/phpunit": "~4.0" + }, + "time": "2018-02-09T18:02:28+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-0": { + "Drupal\\Driver": "src/", + "Drupal\\Tests\\Driver": "tests/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Jonathan Hedstrom", + "email": "jhedstrom@gmail.com" + } + ], + "description": "A collection of reusable Drupal drivers", + "homepage": "http://github.com/jhedstrom/DrupalDriver", + "keywords": [ + "drupal", + "test", + "web" + ] + } + }, + "drupal/drupal-extension": { + "v3.4.1": { + "name": "drupal/drupal-extension", + "version": "v3.4.1", + "version_normalized": "3.4.1.0", + "source": { + "type": "git", + "url": "https://github.com/jhedstrom/drupalextension.git", + "reference": "50ff0f413f0dc4732f49638e743f86f45e835e50" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jhedstrom/drupalextension/zipball/50ff0f413f0dc4732f49638e743f86f45e835e50", + "reference": "50ff0f413f0dc4732f49638e743f86f45e835e50", + "shasum": "" + }, + "require": { + "behat/behat": "~3.2", + "behat/mink": "~1.5", + "behat/mink-extension": "~2.0", + "behat/mink-goutte-driver": "~1.0", + "behat/mink-selenium2-driver": "~1.1", + "drupal/drupal-driver": "~1.3", + "symfony/dependency-injection": "~2.7|~3.0", + "symfony/event-dispatcher": "~2.7|~3.0" + }, + "require-dev": { + "behat/mink-zombie-driver": "^1.2", + "jakub-onderka/php-parallel-lint": "^0.9.2", + "phpspec/phpspec": "~2.0", + "phpunit/phpunit": "3.7.*" + }, + "time": "2017-12-06T20:35:40+00:00", + "type": "behat-extension", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-0": { + "Drupal\\Drupal": "src/", + "Drupal\\Exception": "src/", + "Drupal\\DrupalExtension": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Jonathan Hedstrom", + "email": "jhedstrom@gmail.com" + }, + { + "name": "Melissa Anderson", + "homepage": "https://github.com/eliza411" + }, + { + "name": "Pieter Frenssen", + "homepage": "https://github.com/pfrenssen" + } + ], + "description": "Drupal extension for Behat", + "homepage": "http://drupal.org/project/drupalextension", + "keywords": [ + "drupal", + "test", + "web" + ] + } + }, + "drupal/ds": { + "3.2.0": { + "name": "drupal/ds", + "version": "3.2.0", + "version_normalized": "3.2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ds.git", + "reference": "8.x-3.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.2.zip", + "reference": "8.x-3.2", + "shasum": "c5171e3e59d5ec666e5b5a53baf8f92c01956998" + }, + "require": { + "drupal/core": "^8.3" + }, + "require-dev": { + "drupal/devel": "*", + "drupal/field_group": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.2", + "datestamp": "1551355085", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Bram Goffings", + "homepage": "https://www.drupal.org/user/172527", + "role": "Maintainer" + }, + { + "name": "Kristof De Jaeger", + "homepage": "http://realize.be/", + "role": "Maintainer" + }, + { + "name": "Brecht Ceyssens", + "homepage": "https://www.drupal.org/user/591438", + "role": "Maintainer" + }, + { + "name": "swentel", + "homepage": "https://www.drupal.org/user/107403" + } + ], + "description": "Extend the display options for every entity type.", + "homepage": "https://www.drupal.org/project/ds", + "keywords": [ + "drupal", + "layout", + "php" + ], + "support": { + "source": "http://git.drupal.org/project/ds.git", + "issues": "https://www.drupal.org/project/issues/ds", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + } + }, + "drupal/dynamic_entity_reference": { + "1.7.0": { + "name": "drupal/dynamic_entity_reference", + "version": "1.7.0", + "version_normalized": "1.7.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git", + "reference": "8.x-1.7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "48473adb20413babb548a2501e396e66f13c30f2" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.7", + "datestamp": "1565737269", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Lee Rowlands", + "homepage": "https://www.drupal.org/u/larowlan", + "role": "Maintainer" + }, + { + "name": "Jibran Ijaz", + "homepage": "https://www.drupal.org/u/jibran", + "role": "Maintainer" + }, + { + "name": "larowlan", + "homepage": "https://www.drupal.org/user/395439" + } + ], + "description": "Provides a field that allows an entity-reference field to reference more than one entity type.", + "homepage": "http://drupal.org/project/dynamic_entity_reference", + "support": { + "source": "http://cgit.drupalcode.org/dynamic_entity_reference", + "issues": "http://drupal.org/project/dynamic_entity_reference", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + }, + "1.8.0": { + "name": "drupal/dynamic_entity_reference", + "version": "1.8.0", + "version_normalized": "1.8.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git", + "reference": "8.x-1.8" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "97c6f9fb0652343eab24443e8e4ed9a33037db53" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.8", + "datestamp": "1575458288", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Lee Rowlands", + "homepage": "https://www.drupal.org/u/larowlan", + "role": "Maintainer" + }, + { + "name": "Jibran Ijaz", + "homepage": "https://www.drupal.org/u/jibran", + "role": "Maintainer" + }, + { + "name": "larowlan", + "homepage": "https://www.drupal.org/user/395439" + } + ], + "description": "Provides a field that allows an entity-reference field to reference more than one entity type.", + "homepage": "http://drupal.org/project/dynamic_entity_reference", + "support": { + "source": "http://cgit.drupalcode.org/dynamic_entity_reference", + "issues": "http://drupal.org/project/dynamic_entity_reference", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + } + }, + "drupal/embed": { + "1.0.0": { + "name": "drupal/embed", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/embed.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a" + }, + "require": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "drupal/core": "~8.0" +======= + "drupal/core": "^8 || ^9" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0", + "datestamp": "1490755685", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "Devin Carlson", + "homepage": "https://www.drupal.org/user/290182" + }, + { + "name": "Drupal Media Team", + "homepage": "https://www.drupal.org/user/3260690" + }, + { + "name": "cs_shadow", + "homepage": "https://www.drupal.org/user/2828287" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + } + ], + "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.", + "homepage": "https://www.drupal.org/project/embed", + "support": { + "source": "https://git.drupalcode.org/project/embed", + "issues": "https://www.drupal.org/project/issues/embed", + "irc": "irc://irc.freenode.org/drupal-media" + } + } + }, + "drupal/entity_browser": { + "2.1.0": { + "name": "drupal/entity_browser", + "version": "2.1.0", + "version_normalized": "2.1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/entity_browser.git", + "reference": "8.x-2.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "56cf190f3ea3fc0af71becbc44af5954a71f216b" + }, + "require": { + "drupal/core": "~8.0" + }, + "require-dev": { + "drupal/inline_entity_form": "*", + "drupal/paragraphs": "*", + "drupal/token": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev", + "dev-8.x-1.x": "8.1.x-dev" + }, + "drupal": { + "version": "8.x-2.1", + "datestamp": "1562240585", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Janez Urevc", + "homepage": "https://github.com/slashrsm", + "role": "Maintainer" + }, + { + "name": "Primoz Hmeljak", + "homepage": "https://github.com/primsi", + "role": "Maintainer" + }, + { + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/1943336/committers", + "role": "contributor" + }, + { + "name": "Drupal Media Team", + "homepage": "https://www.drupal.org/user/3260690" + }, + { + "name": "Primsi", + "homepage": "https://www.drupal.org/user/282629" + }, + { + "name": "marcingy", + "homepage": "https://www.drupal.org/user/77320" + }, + { + "name": "oknate", + "homepage": "https://www.drupal.org/user/471638" + }, + { + "name": "samuel.mortenson", + "homepage": "https://www.drupal.org/user/2582268" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + } + ], + "description": "Entity browsing and selecting component.", + "homepage": "http://drupal.org/project/entity_browser", + "support": { + "source": "http://cgit.drupalcode.org/entity_browser", + "issues": "http://drupal.org/project/issues/entity_browser", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + } + }, + "drupal/entity_class_formatter": { + "1.1.0": { + "name": "drupal/entity_class_formatter", + "version": "1.1.0", + "version_normalized": "1.1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/entity_class_formatter.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/entity_class_formatter-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "0857e4c1c9f7d77a9d8a75fb786a4833a11343ac" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.1", + "datestamp": "1572616685", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "honzapara", + "homepage": "https://www.drupal.org/user/3272000" + }, + { + "name": "kyberman", + "homepage": "https://www.drupal.org/user/402924" + }, + { + "name": "martin_klima", + "homepage": "https://www.drupal.org/user/2784335" + }, + { + "name": "murrayw", + "homepage": "https://www.drupal.org/user/595658" + } + ], + "description": "Apply class on the entity if it's field is using this formatter.", + "homepage": "https://www.drupal.org/project/entity_class_formatter", + "support": { + "source": "https://git.drupalcode.org/project/entity_class_formatter" + } + } + }, + "drupal/entity_embed": { + "1.0.0": { + "name": "drupal/entity_embed", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/entity_embed.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "abd37a54162a702cf696ef0e5f8b2b1082263c21" + }, + "require": { + "drupal/core": "^8.4.0", + "drupal/embed": "*" + }, + "require-dev": { + "drupal/entity_browser": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0", + "datestamp": "1562161679", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "Devin Carlson", + "homepage": "https://www.drupal.org/user/290182" + }, + { + "name": "Drupal Media Team", + "homepage": "https://www.drupal.org/user/3260690" + }, + { + "name": "Wim Leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "cs_shadow", + "homepage": "https://www.drupal.org/user/2828287" + }, + { + "name": "oknate", + "homepage": "https://www.drupal.org/user/471638" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + } + ], + "description": "Allows any entity to be embedded within a text area using a WYSIWYG editor.", + "homepage": "https://www.drupal.org/project/entity_embed", + "support": { + "source": "https://git.drupalcode.org/project/entity_embed", + "issues": "https://www.drupal.org/project/issues/entity_embed", + "irc": "irc://irc.freenode.org/drupal-media" + } + } + }, + "drupal/entity_reference_display": { + "1.2.0": { + "name": "drupal/entity_reference_display", + "version": "1.2.0", + "version_normalized": "1.2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/entity_reference_display.git", + "reference": "8.x-1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/entity_reference_display-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "0598f6f6121fb8d768fdb9a777b0062f94cbef64" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.2", + "datestamp": "1527517384", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "kyberman", + "homepage": "https://www.drupal.org/user/402924" + }, + { + "name": "murrayw", + "homepage": "https://www.drupal.org/user/595658" + }, + { + "name": "wiifm", + "homepage": "https://www.drupal.org/user/358731" + } + ], + "description": "Defines a field type for display mode selection for entity reference fields.", + "homepage": "https://www.drupal.org/project/entity_reference_display", + "support": { + "source": "https://git.drupalcode.org/project/entity_reference_display" + } + } + }, + "drupal/entity_reference_revisions": { + "1.6.0": { + "name": "drupal/entity_reference_revisions", + "version": "1.6.0", + "version_normalized": "1.6.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", + "reference": "8.x-1.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "82d515de04d3a75fb677ed82241a6aff3f54ab47" + }, + "require": { + "drupal/core": "~8.0" + }, + "require-dev": { + "drupal/diff": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.6", + "datestamp": "1570284187", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Frans", + "homepage": "https://www.drupal.org/user/514222" + }, + { + "name": "jeroen.b", + "homepage": "https://www.drupal.org/user/1853532" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" + } + ], + "description": "Adds a Entity Reference field type with revision support.", + "homepage": "https://www.drupal.org/project/entity_reference_revisions", + "support": { + "source": "https://git.drupalcode.org/project/entity_reference_revisions" + } + }, + "1.7.0": { + "name": "drupal/entity_reference_revisions", + "version": "1.7.0", + "version_normalized": "1.7.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", + "reference": "8.x-1.7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "4e3b849b0d984cd3c0a4330c9aa4cb16bf1f79f6" + }, + "require": { + "drupal/core": "~8.0" + }, + "require-dev": { + "drupal/diff": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.7", + "datestamp": "1570284187", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Frans", + "homepage": "https://www.drupal.org/user/514222" + }, + { + "name": "jeroen.b", + "homepage": "https://www.drupal.org/user/1853532" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" + } + ], + "description": "Adds a Entity Reference field type with revision support.", + "homepage": "https://www.drupal.org/project/entity_reference_revisions", + "support": { + "source": "https://git.drupalcode.org/project/entity_reference_revisions" + } + } + }, + "drupal/environment_indicator": { + "3.5.0": { + "name": "drupal/environment_indicator", + "version": "3.5.0", + "version_normalized": "3.5.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/environment_indicator.git", + "reference": "8.x-3.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/environment_indicator-8.x-3.5.zip", + "reference": "8.x-3.5", + "shasum": "637ceea8bc1dc690f12cdcc5d1285986b6037c92" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.5", + "datestamp": "1553405885", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "e0ipso", + "homepage": "https://www.drupal.org/user/550110" + }, + { + "name": "mrfelton", + "homepage": "https://www.drupal.org/user/305669" + } + ], + "description": "Adds a color indicator for the different environments.", + "homepage": "https://www.drupal.org/project/environment_indicator", + "support": { + "source": "https://git.drupalcode.org/project/environment_indicator" + } + } + }, + "drupal/events_log_track": { + "1.1.0": { + "name": "drupal/events_log_track", + "version": "1.1.0", + "version_normalized": "1.1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/events_log_track.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/events_log_track-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "559e0d34414dd881e7e7a7d33916232e13c28df5" + }, + "require": { + "drupal/core": "~8.0" + }, + "require-dev": { + "drupal/event_log_track": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.1", + "datestamp": "1487851984", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "kumaratulesh", + "homepage": "https://www.drupal.org/user/1840602" + } + ], + "homepage": "https://www.drupal.org/project/events_log_track", + "support": { + "source": "https://git.drupalcode.org/project/events_log_track" + } + } + }, + "drupal/facets": { + "1.3.0": { + "name": "drupal/facets", + "version": "1.3.0", + "version_normalized": "1.3.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/facets.git", + "reference": "8.x-1.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "2ca517094a34112e8168746123d337a25da6a227" + }, + "require": { + "drupal/core": "~8.0" + }, + "require-dev": { + "drupal/search_api": "~1.5" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.3", + "datestamp": "1556645881", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "See all contributors", + "homepage": "https://www.drupal.org/node/2348769/committers" + }, + { + "name": "StryKaizer", + "homepage": "https://www.drupal.org/user/462700" + }, + { + "name": "borisson_", + "homepage": "https://www.drupal.org/user/2393360" + } + ], + "description": "The Facet module allows site builders to easily create and manage faceted search interfaces.", + "homepage": "https://www.drupal.org/project/facets", + "support": { + "source": "git://git.drupal.org/project/facets.git", + "issues": "https://www.drupal.org/project/issues/facets", + "irc": "irc://irc.freenode.org/drupal-search-api" + } + } + }, + "drupal/fast_404": { + "1.0.0-alpha4": { + "name": "drupal/fast_404", + "version": "1.0.0-alpha4", + "version_normalized": "1.0.0.0-alpha4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/fast_404.git", + "reference": "8.x-1.0-alpha4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/fast_404-8.x-1.0-alpha4.zip", + "reference": "8.x-1.0-alpha4", + "shasum": "2bc6a47b79d179ad970525fd0293651f5f2428ce" + }, + "require": { + "drupal/core": "~8.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-alpha4", + "datestamp": "1546823580", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "adammalone", + "homepage": "https://www.drupal.org/user/1295980" + }, + { + "name": "bonus", + "homepage": "https://www.drupal.org/user/360002" + }, + { + "name": "naveenvalecha", + "homepage": "https://www.drupal.org/user/2665733" + }, + { + "name": "neetu morwani", + "homepage": "https://www.drupal.org/user/2632025" + }, + { + "name": "soyarma", + "homepage": "https://www.drupal.org/user/286273" + } + ], + "homepage": "https://www.drupal.org/project/fast_404", + "support": { + "source": "https://git.drupalcode.org/project/fast_404" + } + } + }, + "drupal/features": { + "3.8.0": { + "name": "drupal/features", + "version": "3.8.0", + "version_normalized": "3.8.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/features.git", + "reference": "8.x-3.8" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip", + "reference": "8.x-3.8", + "shasum": "15cebd00e38d63c0d946682e76327a03499c27be" + }, + "require": { + "drupal/config_update": "^1.4", + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.8", + "datestamp": "1536512284", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "dawehner", + "homepage": "https://www.drupal.org/user/99340" + }, + { + "name": "e2thex", + "homepage": "https://www.drupal.org/user/189123" + }, + { + "name": "febbraro", + "homepage": "https://www.drupal.org/user/43670" + }, + { + "name": "jmiccolis", + "homepage": "https://www.drupal.org/user/31731" + }, + { + "name": "joseph.olstad", + "homepage": "https://www.drupal.org/user/1321830" + }, + { + "name": "mpotter", + "homepage": "https://www.drupal.org/user/616192" + }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, + { + "name": "tim.plunkett", + "homepage": "https://www.drupal.org/user/241634" + } + ], + "description": "Enables administrators to package configuration into modules", + "homepage": "https://www.drupal.org/project/features", + "support": { + "source": "https://git.drupalcode.org/project/features" + } + } + }, + "drupal/field_group": { + "3.0.0-rc1": { + "name": "drupal/field_group", + "version": "3.0.0-rc1", + "version_normalized": "3.0.0.0-RC1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/field_group.git", + "reference": "8.x-3.0-rc1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-rc1.zip", + "reference": "8.x-3.0-rc1", + "shasum": "e291b5468c834a344e9aa6cafd3a76171d473a22" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.0-rc1", + "datestamp": "1574200085", + "security-coverage": { + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Hydra", + "homepage": "https://www.drupal.org/user/647364" + }, + { + "name": "Stalski", + "homepage": "https://www.drupal.org/user/322618" + }, + { + "name": "jyve", + "homepage": "https://www.drupal.org/user/591438" + }, + { + "name": "nils.destoop", + "homepage": "https://www.drupal.org/user/361625" + }, + { + "name": "swentel", + "homepage": "https://www.drupal.org/user/107403" + } + ], + "description": "Provides the field_group module.", + "homepage": "https://www.drupal.org/project/field_group", + "support": { + "source": "https://git.drupalcode.org/project/field_group" + } + } + }, + "drupal/focal_point": { + "1.2.0": { + "name": "drupal/focal_point", + "version": "1.2.0", + "version_normalized": "1.2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/focal_point.git", + "reference": "8.x-1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/focal_point-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "b274a5f4484ce99dece492dc7ae7149b34982244" + }, + "require": { + "drupal/core": "*", + "drupal/crop": "*" + }, + "require-dev": { + "drupal/crop": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.2", + "datestamp": "1569333485", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bleen", + "homepage": "https://www.drupal.org/user/77375" + } + ], + "description": "Allows users to specify the focal point of an image for use during cropping.", + "homepage": "https://www.drupal.org/project/focal_point", + "support": { + "source": "https://git.drupalcode.org/project/focal_point" + } + } + }, + "drupal/google_analytics": { + "3.0.0": { + "name": "drupal/google_analytics", + "version": "3.0.0", + "version_normalized": "3.0.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/google_analytics.git", + "reference": "8.x-3.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/google_analytics-8.x-3.0.zip", + "reference": "8.x-3.0", + "shasum": "18179854152cae44be2a5ed5de5550bc6e131c70" + }, + "require": { + "drupal/core": "~8.5" + }, + "require-dev": { + "drupal/php": "*", + "drupal/token": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.0", + "datestamp": "1548968580", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "hass", + "homepage": "https://www.drupal.org/u/hass" + }, + { + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/49388/committers" + } + ], + "description": "Allows your site to be tracked by Google Analytics by adding a Javascript tracking code to every page.", + "homepage": "https://www.drupal.org/project/google_analytics", + "support": { + "source": "https://git.drupal.org/project/google_analytics.git", + "issues": "https://www.drupal.org/project/issues/google_analytics" + } + } + }, + "drupal/govcms8_ui": { + "1.0.0-alpha1": { + "name": "drupal/govcms8_ui", + "version": "1.0.0-alpha1", + "version_normalized": "1.0.0.0-alpha1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/govcms8_ui.git", + "reference": "8.x-1.0-alpha1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/govcms8_ui-8.x-1.0-alpha1.zip", + "reference": "8.x-1.0-alpha1", + "shasum": "ec17e9f9e105cf2b3356866c5a5aab6e133321c7" + }, + "require": { + "drupal/core": "~8.0" + }, + "type": "drupal-theme", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-alpha1", + "datestamp": "1513834687", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Joseph Zhao", + "homepage": "https://www.drupal.org/user/1987218" + }, + { + "name": "govcms", + "homepage": "https://www.drupal.org/user/3141265" + }, + { + "name": "tobybellwood", + "homepage": "https://www.drupal.org/user/3529537" + } + ], + "homepage": "https://www.drupal.org/project/govcms8_ui", + "support": { + "source": "https://git.drupalcode.org/project/govcms8_ui" + } + } + }, + "drupal/govcms8_uikit_starter": { + "1.0.0-alpha2": { + "name": "drupal/govcms8_uikit_starter", + "version": "1.0.0-alpha2", + "version_normalized": "1.0.0.0-alpha2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/govcms8_uikit_starter.git", + "reference": "8.x-1.0-alpha2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/govcms8_uikit_starter-8.x-1.0-alpha2.zip", + "reference": "8.x-1.0-alpha2", + "shasum": "009d5574f166d5e9aaa223e98e3ccd7510e842d3" + }, + "require": { + "drupal/core": "~8.0" + }, + "type": "drupal-theme", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-alpha2", + "datestamp": "1554762181", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Joseph Zhao", + "homepage": "https://www.drupal.org/user/1987218" + }, + { + "name": "courdo", + "homepage": "https://www.drupal.org/user/3162961" + }, + { + "name": "fubarhouse", + "homepage": "https://www.drupal.org/user/2190626" + }, + { + "name": "ruwanl", + "homepage": "https://www.drupal.org/user/2906813" + }, + { + "name": "tobybellwood", + "homepage": "https://www.drupal.org/user/3529537" + } + ], + "description": "Provides uikit starter theme to govCMS8", + "homepage": "https://www.drupal.org/project/govcms8_uikit_starter", + "support": { + "source": "https://git.drupalcode.org/project/govcms8_uikit_starter" + } + } + }, + "drupal/graphql": { + "3.0.0-rc2": { + "name": "drupal/graphql", + "version": "3.0.0-rc2", + "version_normalized": "3.0.0.0-RC2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/graphql.git", + "reference": "8.x-3.0-rc2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/graphql-8.x-3.0-rc2.zip", + "reference": "8.x-3.0-rc2", + "shasum": "99c229003fddc058fe7f213f9753ad7109c3e4d7" + }, + "require": { + "drupal/core": "~8.0", + "webonyx/graphql-php": "^0.12.5" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.0-rc2", + "datestamp": "1555138081", + "security-coverage": { + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "fubhy", + "homepage": "https://www.drupal.org/user/761344" + }, + { + "name": "klausi", + "homepage": "https://www.drupal.org/user/262198" + }, + { + "name": "pmelab", + "homepage": "https://www.drupal.org/user/555322" + } + ], + "description": "Exposes your Drupal data model through a GraphQL schema.", + "homepage": "http://drupal.org/project/graphql", + "support": { + "source": "https://git.drupalcode.org/project/graphql" + } + } + }, + "drupal/honeypot": { + "1.29.0": { + "name": "drupal/honeypot", + "version": "1.29.0", + "version_normalized": "1.29.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/honeypot.git", + "reference": "8.x-1.29" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip", + "reference": "8.x-1.29", + "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487" + }, + "require": { + "drupal/core": "~8.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.29", + "datestamp": "1536179280", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Jeff Geerling", + "homepage": "https://www.drupal.org/user/213194", + "email": "geerlingguy@mac.com" + }, + { + "name": "geerlingguy", + "homepage": "https://www.drupal.org/user/389011" + }, + { + "name": "vijaycs85", + "homepage": "https://www.drupal.org/user/93488" + } ], - "description": "Renders placeholder variables for HTML and plain-text display.", - "homepage": "https://www.drupal.org/project/drupal", + "description": "Mitigates spam form submissions using the honeypot method.", + "homepage": "https://www.drupal.org/project/honeypot", "keywords": [ - "drupal" - ] + "deterrent", + "form", + "honeypot", + "honeytrap", + "php", + "spam" + ], + "support": { + "source": "https://git.drupalcode.org/project/honeypot" + } } }, - "drupal/core-utility": { - "8.7.10": { - "name": "drupal/core-utility", - "version": "8.7.10", - "version_normalized": "8.7.10.0", + "drupal/inline_entity_form": { + "1.0.0-rc1": { + "name": "drupal/inline_entity_form", + "version": "1.0.0-rc1", + "version_normalized": "1.0.0.0-RC1", "source": { "type": "git", - "url": "https://github.com/drupal/core-utility.git", - "reference": "d31513b29161eec6c3dbeb6529b691840ed677c5" + "url": "https://git.drupalcode.org/project/inline_entity_form.git", + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-utility/zipball/d31513b29161eec6c3dbeb6529b691840ed677c5", - "reference": "d31513b29161eec6c3dbeb6529b691840ed677c5", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9" }, "require": { - "drupal/core-render": "^8.2", - "paragonie/random_compat": "^1.0|^2.0", - "php": ">=5.5.9", - "symfony/polyfill-iconv": "~1.0", - "symfony/polyfill-mbstring": "~1.0" + "drupal/core": "~8.0" }, - "time": "2019-09-09T10:55:36+00:00", - "type": "library", - "autoload": { - "psr-4": { - "Drupal\\Component\\Utility\\": "" + "require-dev": { + "drupal/entity_reference_revisions": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-rc1", + "datestamp": "1568446684", + "security-coverage": { + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "dawehner", + "homepage": "https://www.drupal.org/user/99340" + }, + { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" + }, + { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "name": "joachim", + "homepage": "https://www.drupal.org/user/107701" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "kaythay", + "homepage": "https://www.drupal.org/user/2182186" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + }, + { + "name": "webflo", + "homepage": "https://www.drupal.org/user/254778" + } + ], + "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.", + "homepage": "https://www.drupal.org/project/inline_entity_form", + "support": { + "source": "https://git.drupalcode.org/project/inline_entity_form" + } + } + }, + "drupal/lagoon_logs": { + "1.0.0": { + "name": "drupal/lagoon_logs", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/lagoon_logs.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/lagoon_logs-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "7d5a3c306c4bd9106c9011d82e2e4d178dec6ff9" + }, + "require": { + "drupal/core": "~8.0", + "monolog/monolog": "~1.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0", + "datestamp": "1542589980", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Blaize Kaye", + "homepage": "https://www.drupal.org/u/bomoko", + "role": "Maintainer" + }, + { + "name": "bryangruneberg", + "homepage": "https://www.drupal.org/user/2600012" + } + ], + "description": "Lagoon_logs D8 is a convenience wrapper for monolog.", + "homepage": "https://www.drupal.org/project/lagoon_logs", + "support": { + "source": "https://git.drupalcode.org/project/lagoon_logs" + } + } + }, + "drupal/linked_field": { + "1.1.0": { + "name": "drupal/linked_field", + "version": "1.1.0", + "version_normalized": "1.1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/linked_field.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "99c877b15e814e8275a38d5b161fc5db444dd69d" + }, + "require": { + "drupal/core": "~8.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.1", + "datestamp": "1493495342", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "hubdrop", + "homepage": "https://www.drupal.org/user/2750597" + }, + { + "name": "yannickoo", + "homepage": "https://www.drupal.org/user/531118" + } + ], + "description": "Adds the functionality to link fields to a specific destination.", + "homepage": "https://www.drupal.org/project/linked_field", + "support": { + "source": "https://git.drupalcode.org/project/linked_field" + } + } + }, + "drupal/linkit": { + "5.0.0-beta9": { + "name": "drupal/linkit", + "version": "5.0.0-beta9", + "version_normalized": "5.0.0.0-beta9", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/linkit.git", + "reference": "8.x-5.0-beta9" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta9.zip", + "reference": "8.x-5.0-beta9", + "shasum": "150291dd87a4f65027492020c28635e2b5249d1a" + }, + "require": { + "drupal/core": "~8.0" + }, + "require-dev": { + "drupal/imce": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-5.x": "5.x-dev" + }, + "drupal": { + "version": "8.x-5.0-beta9", + "datestamp": "1573783085", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], - "description": "Mostly static utility classes for string, xss, array, image, and other commonly needed manipulations.", - "homepage": "https://www.drupal.org/project/drupal", - "keywords": [ - "drupal" - ] + "authors": [ + { + "name": "Emil Stjerneman", + "homepage": "https://stjerneman.com", + "email": "emil@stjerneman.com", + "role": "Maintainer" + } + ], + "description": "Linkit - Enriched linking experience", + "homepage": "http://drupal.org/project/linkit", + "support": { + "source": "http://cgit.drupalcode.org/linkit", + "issues": "http://drupal.org/project/linkit" + } } }, - "drupal/crop": { + "drupal/login_security": { "1.5.0": { - "name": "drupal/crop", + "name": "drupal/login_security", "version": "1.5.0", "version_normalized": "1.5.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/crop.git", + "url": "https://git.drupalcode.org/project/login_security.git", "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/crop-8.x-1.5.zip", + "url": "https://ftp.drupal.org/files/projects/login_security-8.x-1.5.zip", "reference": "8.x-1.5", - "shasum": "bb275293508cb3988ca6ab766dc1f6ecc22cc03d" + "shasum": "f903d4335282a178f6c73bb4f580ac876852ba73" }, "require": { "drupal/core": "*" @@ -5044,7 +8261,7 @@ }, "drupal": { "version": "8.x-1.5", - "datestamp": "1516357085", + "datestamp": "1528723384", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5053,61 +8270,68 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Drupal Media Team", - "homepage": "https://www.drupal.org/user/3260690" + "name": "cYu", + "homepage": "https://www.drupal.org/user/202205" }, { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" + "name": "deekayen", + "homepage": "https://www.drupal.org/user/972" }, { - "name": "slashrsm", - "homepage": "https://www.drupal.org/user/744628" + "name": "deetergp", + "homepage": "https://www.drupal.org/user/1134002" }, { - "name": "woprrr", - "homepage": "https://www.drupal.org/user/858604" + "name": "ilo", + "homepage": "https://www.drupal.org/user/118449" + }, + { + "name": "jribeiro", + "homepage": "https://www.drupal.org/user/1975716" + }, + { + "name": "shrop", + "homepage": "https://www.drupal.org/user/14767" } ], - "description": "Provides storage and API for image crops.", - "homepage": "https://www.drupal.org/project/crop", + "description": "Enable security options in the login flow of the site.", + "homepage": "https://www.drupal.org/project/login_security", "support": { - "source": "https://git.drupalcode.org/project/crop", - "issues": "https://www.drupal.org/project/issues/crop" + "source": "https://git.drupalcode.org/project/login_security" } } }, - "drupal/ctools": { - "3.2.0": { - "name": "drupal/ctools", - "version": "3.2.0", - "version_normalized": "3.2.0.0", + "drupal/mailsystem": { + "4.2.0": { + "name": "drupal/mailsystem", + "version": "4.2.0", + "version_normalized": "4.2.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "8.x-3.2" + "url": "https://git.drupalcode.org/project/mailsystem.git", + "reference": "8.x-4.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091" + "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.2.zip", + "reference": "8.x-4.2", + "shasum": "51d3f4831cdc3fd2748efc750d4946ddb5b50c3c" }, "require": { - "drupal/core": "^8.5" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev" + "dev-4.x": "4.x-dev" }, "drupal": { - "version": "8.x-3.2", - "datestamp": "1550728386", + "version": "8.x-4.2", + "datestamp": "1574194688", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5120,80 +8344,64 @@ ], "authors": [ { - "name": "Kris Vanderwater (EclipseGc)", - "homepage": "https://www.drupal.org/u/eclipsegc", - "role": "Maintainer" - }, - { - "name": "Jakob Perry (japerry)", - "homepage": "https://www.drupal.org/u/japerry", - "role": "Maintainer" - }, - { - "name": "Tim Plunkett (tim.plunkett)", - "homepage": "https://www.drupal.org/u/timplunkett", - "role": "Maintainer" - }, - { - "name": "James Gilliland (neclimdul)", - "homepage": "https://www.drupal.org/u/neclimdul", - "role": "Maintainer" - }, - { - "name": "Daniel Wehner (dawehner)", - "homepage": "https://www.drupal.org/u/dawehner", - "role": "Maintainer" - }, - { - "name": "joelpittet", - "homepage": "https://www.drupal.org/user/160302" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "name": "merlinofchaos", - "homepage": "https://www.drupal.org/user/26979" + "name": "Les Lim", + "homepage": "https://www.drupal.org/user/84263" }, { - "name": "neclimdul", - "homepage": "https://www.drupal.org/user/48673" + "name": "Manuel Garcia", + "homepage": "https://www.drupal.org/user/213194" }, { - "name": "sdboyer", - "homepage": "https://www.drupal.org/user/146719" + "name": "Nafes", + "homepage": "https://www.drupal.org/user/2489926" }, { - "name": "sun", - "homepage": "https://www.drupal.org/user/54136" + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" }, { - "name": "tim.plunkett", - "homepage": "https://www.drupal.org/user/241634" + "name": "pillarsdotnet", + "homepage": "https://www.drupal.org/user/36148" } ], - "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.", - "homepage": "https://www.drupal.org/project/ctools", + "description": "Mail System", + "homepage": "https://www.drupal.org/project/mailsystem", "support": { - "source": "http://cgit.drupalcode.org/ctools", - "issues": "https://www.drupal.org/project/issues/ctools" + "source": "https://git.drupalcode.org/project/mailsystem" } } }, - "drupal/ctools_block": { - "3.2.0": { - "name": "drupal/ctools_block", - "version": "3.2.0", - "version_normalized": "3.2.0.0", + "drupal/memcache": { + "2.0.0": { + "name": "drupal/memcache", + "version": "2.0.0", + "version_normalized": "2.0.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/memcache.git", + "reference": "8.x-2.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/memcache-8.x-2.0.zip", + "reference": "8.x-2.0", + "shasum": "78c09097c42781343f4069b4823dce7acd98a8b1" + }, "require": { - "drupal/core": "~8.0", - "drupal/ctools": "self.version" + "drupal/core": "~8.0" }, - "type": "metapackage", + "type": "drupal-module", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev" + "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-3.2", - "datestamp": "1550728386", + "version": "8.x-2.0", + "datestamp": "1540546681", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5202,172 +8410,216 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "EclipseGc", - "homepage": "https://www.drupal.org/user/61203" + "name": "Fabianx", + "homepage": "https://www.drupal.org/user/693738" + }, + { + "name": "Jeremy", + "homepage": "https://www.drupal.org/user/409" + }, + { + "name": "bdragon", + "homepage": "https://www.drupal.org/user/53081" + }, + { + "name": "catch", + "homepage": "https://www.drupal.org/user/35733" }, { "name": "damiankloip", "homepage": "https://www.drupal.org/user/1037976" }, { - "name": "dawehner", - "homepage": "https://www.drupal.org/user/99340" + "name": "jvandyk", + "homepage": "https://www.drupal.org/user/2375" + }, + { + "name": "robertDouglass", + "homepage": "https://www.drupal.org/user/5449" + } + ], + "description": "High performance integration with memcache.", + "homepage": "http://drupal.org/project/memcache", + "support": { + "source": "https://git.drupalcode.org/project/memcache", + "issues": "https://www.drupal.org/project/issues/memcache" + } + } + }, + "drupal/menu_block": { + "1.5.0": { + "name": "drupal/menu_block", + "version": "1.5.0", + "version_normalized": "1.5.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/menu_block.git", + "reference": "8.x-1.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" }, + "drupal": { + "version": "8.x-1.5", + "datestamp": "1525200184", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ { - "name": "esmerel", - "homepage": "https://www.drupal.org/user/164022" + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" }, { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" + "name": "JohnAlbin", + "homepage": "https://www.drupal.org/user/32095" }, { "name": "joelpittet", "homepage": "https://www.drupal.org/user/160302" }, { - "name": "merlinofchaos", - "homepage": "https://www.drupal.org/user/26979" - }, - { - "name": "neclimdul", - "homepage": "https://www.drupal.org/user/48673" - }, - { - "name": "sdboyer", - "homepage": "https://www.drupal.org/user/146719" - }, - { - "name": "sun", - "homepage": "https://www.drupal.org/user/54136" + "name": "kim.pepper", + "homepage": "https://www.drupal.org/user/370574" }, { - "name": "tim.plunkett", - "homepage": "https://www.drupal.org/user/241634" + "name": "rrrob", + "homepage": "https://www.drupal.org/user/273533" } ], - "description": "Provides improvements to blocks that will one day be added to Drupal core.", - "homepage": "https://www.drupal.org/project/ctools", + "description": "Provides configurable blocks of menu links.", + "homepage": "https://www.drupal.org/project/menu_block", "support": { - "source": "https://git.drupalcode.org/project/ctools" + "source": "https://git.drupalcode.org/project/menu_block" } } }, - "drupal/devel": { - "2.0.0": { - "name": "drupal/devel", - "version": "2.0.0", - "version_normalized": "2.0.0.0", + "drupal/menu_trail_by_path": { + "1.1.0": { + "name": "drupal/menu_trail_by_path", + "version": "1.1.0", + "version_normalized": "1.1.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/devel.git", - "reference": "8.x-2.0" + "url": "https://git.drupalcode.org/project/menu_trail_by_path.git", + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.0.zip", - "reference": "8.x-2.0", - "shasum": "cf5fb816f767f3cac4f2e170ab39e982d5e0698b" + "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "52261e3ad3630e88bfc2a147e3056844f5584f62" }, "require": { - "drupal/core": "~8.0", - "symfony/var-dumper": "~2.7|^3" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-2.x": "2.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-2.0", - "datestamp": "1556799496", + "version": "8.x-1.1", + "datestamp": "1482006782", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "Moshe Weitzman", - "homepage": "https://github.com/weitzman", - "email": "weitzman@tejasa.com", - "role": "Maintainer" - }, - { - "name": "Hans Salvisberg", - "homepage": "https://www.drupal.org/u/salvis", - "email": "drupal@salvisberg.com", - "role": "Maintainer" - }, - { - "name": "Luca Lusso", - "homepage": "https://www.drupal.org/u/lussoluca", - "role": "Maintainer" - }, - { - "name": "Marco (willzyx)", - "homepage": "https://www.drupal.org/u/willzyx", - "role": "Maintainer" - }, - { - "name": "See contributors", - "homepage": "https://www.drupal.org/node/3236/committers" - }, - { - "name": "pcambra", - "homepage": "https://www.drupal.org/user/122101" + "name": "SeriousMatters", + "homepage": "https://www.drupal.org/user/290439" }, { - "name": "salvis", - "homepage": "https://www.drupal.org/user/82964" + "name": "davy-r", + "homepage": "https://www.drupal.org/user/3278771" }, { - "name": "willzyx", - "homepage": "https://www.drupal.org/user/1043862" + "name": "redndahead", + "homepage": "https://www.drupal.org/user/160320" } ], - "description": "Various blocks, pages, and functions for developers.", - "homepage": "http://drupal.org/project/devel", + "description": "Expand menus and set active-trail according to the current path.", + "homepage": "https://www.drupal.org/project/menu_trail_by_path", "support": { - "source": "http://cgit.drupalcode.org/devel", - "issues": "http://drupal.org/project/devel", - "irc": "irc://irc.freenode.org/drupal-contribute" + "source": "https://git.drupalcode.org/project/menu_trail_by_path" } } }, - "drupal/diff": { - "1.0.0-rc2": { - "name": "drupal/diff", - "version": "1.0.0-rc2", - "version_normalized": "1.0.0.0-RC2", + "drupal/metatag": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "1.10.0": { + "name": "drupal/metatag", + "version": "1.10.0", + "version_normalized": "1.10.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/diff.git", - "reference": "8.x-1.0-rc2" + "url": "https://git.drupalcode.org/project/metatag.git", + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.0-rc2.zip", - "reference": "8.x-1.0-rc2", - "shasum": "2e8f4efe6e7d355a3d07d33531f077348b13f68d" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc" +======= + "1.11.0": { + "name": "drupal/metatag", + "version": "1.11.0", + "version_normalized": "1.11.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/metatag.git", + "reference": "8.x-1.11" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "9acb04a741d80b4ab468d118a242271169d11f00" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json }, "require": { - "drupal/core": "~8.0", - "mkalkbrenner/php-htmldiff-advanced": "~0.0.8" + "drupal/core": "*", + "drupal/token": "^1.0" + }, + "require-dev": { + "drupal/devel": "^2.0", + "drupal/metatag_dc": "*", + "drupal/metatag_open_graph": "*", + "drupal/page_manager": "^4.0", + "drupal/redirect": "^1.0", + "drupal/restui": "^1.0", + "drupal/schema_metatag": "^1.0", + "drupal/schema_web_page": "*" }, "type": "drupal-module", "extra": { @@ -5375,11 +8627,16 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-rc2", - "datestamp": "1530178424", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "version": "8.x-1.10", + "datestamp": "1567099985", +======= + "version": "8.x-1.11", + "datestamp": "1576870683", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -5389,95 +8646,66 @@ ], "authors": [ { - "name": "Miro Dietiker (miro_dietiker)", - "homepage": "https://www.drupal.org/u/miro_dietiker", - "role": "Maintainer" - }, - { - "name": "Juampy NR (juampynr)", - "homepage": "https://www.drupal.org/u/juampynr", - "role": "Maintainer" - }, - { - "name": "Lucian Hangea (lhangea)", - "homepage": "https://www.drupal.org/u/lhangea", - "role": "Maintainer" - }, - { - "name": "Alan D.", - "homepage": "https://www.drupal.org/u/alan-d.", - "role": "Maintainer" - }, - { - "name": "Brian Gilbert (realityloop).", - "homepage": "https://www.drupal.org/u/realityloop", - "role": "Maintainer" - }, - { - "name": "miro_dietiker", - "homepage": "https://www.drupal.org/user/227761" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "realityloop", - "homepage": "https://www.drupal.org/user/139189" - }, - { - "name": "rötzi", - "homepage": "https://www.drupal.org/user/73064" + "name": "See contributors", + "homepage": "https://www.drupal.org/node/640498/committers", + "role": "Developer" }, { - "name": "yhahn", - "homepage": "https://www.drupal.org/user/264833" + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" } ], - "description": "Compares two entity revisions", - "homepage": "https://www.drupal.org/project/diff", + "description": "Manage meta tags for all entities.", + "homepage": "https://www.drupal.org/project/metatag", + "keywords": [ + "Drupal", + "seo" + ], "support": { - "source": "http://cgit.drupalcode.org/diff", - "issues": "https://www.drupal.org/project/issues/diff" + "source": "http://cgit.drupalcode.org/metatag", + "issues": "http://drupal.org/project/issues/metatag" } - } - }, - "drupal/dropzonejs": { - "2.0.0-alpha3": { - "name": "drupal/dropzonejs", - "version": "2.0.0-alpha3", - "version_normalized": "2.0.0.0-alpha3", + }, + "1.9.0": { + "name": "drupal/metatag", + "version": "1.9.0", + "version_normalized": "1.9.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/dropzonejs.git", - "reference": "8.x-2.0-alpha3" + "url": "https://git.drupalcode.org/project/metatag.git", + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dropzonejs-8.x-2.0-alpha3.zip", - "reference": "8.x-2.0-alpha3", - "shasum": "a11f37e8f37b211d7065b0fd8adb1cc85b47e691" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "230960752c5afa17337fb69bae853bccb1a26ecd" }, "require": { - "drupal/core": "*" + "drupal/core": "*", + "drupal/token": "^1.0" }, "require-dev": { - "drupal/entity_browser": "*" - }, - "suggest": { - "enyo/dropzone": "Required to user drupal/dropzonejs. Dropzone is an easy to use drag'n'drop library." + "drupal/devel": "^1.0", + "drupal/metatag_dc": "*", + "drupal/metatag_open_graph": "*", + "drupal/page_manager": "^4.0", + "drupal/redirect": "^1.0", + "drupal/restui": "^1.0", + "drupal/schema_metatag": "^1.0", + "drupal/schema_web_page": "*" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-2.x": "2.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-2.0-alpha3", - "datestamp": "1555407785", + "version": "8.x-1.9", + "datestamp": "1567099985", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -5487,220 +8715,187 @@ ], "authors": [ { - "name": "Janez Urevc", - "homepage": "https://drupal.org/u/slashrsm", - "role": "Maintainer" - }, - { - "name": "Christian Fritsch", - "homepage": "https://drupal.org/u/chrfritsch", - "role": "Maintainer" - }, - { - "name": "Primoz Hmeljak", - "homepage": "https://drupal.org/u/Primsi", - "role": "Maintainer" - }, - { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/1998478/committers", - "role": "contributor" - }, - { - "name": "slashrsm", - "homepage": "https://www.drupal.org/user/744628" - }, - { - "name": "wouters_f", - "homepage": "https://www.drupal.org/user/721548" + "name": "See contributors", + "homepage": "https://www.drupal.org/node/640498/committers", + "role": "Developer" }, { - "name": "zkday", - "homepage": "https://www.drupal.org/user/888644" + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" } ], - "description": "Drupal integration for DropzoneJS - An open source library that provides drag’n’drop file uploads with image previews.", - "homepage": "https://www.drupal.org/project/dropzonejs", + "description": "Manage meta tags for all entities.", + "homepage": "https://www.drupal.org/project/metatag", "keywords": [ - "DropzoneJS", - "Drupal" + "Drupal", + "seo" ], "support": { - "source": "https://www.drupal.org/project/dropzonejs", - "issues": "https://www.drupal.org/project/issues/dropzonejs", - "irc": "irc://irc.freenode.org/drupal-contribute" + "source": "http://cgit.drupalcode.org/metatag", + "issues": "http://drupal.org/project/issues/metatag" } } }, - "drupal/drupal-driver": { - "v1.4.0": { - "name": "drupal/drupal-driver", - "version": "v1.4.0", - "version_normalized": "1.4.0.0", + "drupal/modifiers": { + "1.3.0": { + "name": "drupal/modifiers", + "version": "1.3.0", + "version_normalized": "1.3.0.0", "source": { "type": "git", - "url": "https://github.com/jhedstrom/DrupalDriver.git", - "reference": "919c6a39ef6a17bdcaf81dcff97b117ecfb6061c" + "url": "https://git.drupalcode.org/project/modifiers.git", + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhedstrom/DrupalDriver/zipball/919c6a39ef6a17bdcaf81dcff97b117ecfb6061c", - "reference": "919c6a39ef6a17bdcaf81dcff97b117ecfb6061c", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/modifiers-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "5255690f5e0e1186755ada8296713f8d076de3e4" }, "require": { - "drupal/core-utility": "^8.4", - "php": ">=5.5.9", - "symfony/dependency-injection": "~2.6|~3.0", - "symfony/process": "~2.5|~3.0" + "drupal/core": "~8.0" }, - "require-dev": { - "drupal/coder": "~8.2.0", - "drush-ops/behat-drush-endpoint": "*", - "jakub-onderka/php-parallel-lint": "^0.9.2", - "mockery/mockery": "0.9.4", - "phpspec/phpspec": "~2.0", - "phpunit/phpunit": "~4.0" + "suggest": { + "drupal/look": "Provides Look entity management for usage with Modifiers.", + "drupal/modifiers_pack": "Provides a set of basic Modifier plugins." }, - "time": "2018-02-09T18:02:28+00:00", - "type": "library", + "type": "drupal-module", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" - } - }, - "autoload": { - "psr-0": { - "Drupal\\Driver": "src/", - "Drupal\\Tests\\Driver": "tests/" + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.3", + "datestamp": "1556650981", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "Jonathan Hedstrom", - "email": "jhedstrom@gmail.com" + "name": "honzapara", + "homepage": "https://www.drupal.org/user/3272000" + }, + { + "name": "kyberman", + "homepage": "https://www.drupal.org/user/402924" + }, + { + "name": "martin_klima", + "homepage": "https://www.drupal.org/user/2784335" + }, + { + "name": "murrayw", + "homepage": "https://www.drupal.org/user/595658" + }, + { + "name": "radimklaska", + "homepage": "https://www.drupal.org/user/229127" } ], - "description": "A collection of reusable Drupal drivers", - "homepage": "http://github.com/jhedstrom/DrupalDriver", - "keywords": [ - "drupal", - "test", - "web" - ] + "description": "Integrates Modifier plugins into the page and into entities.", + "homepage": "https://www.drupal.org/project/modifiers", + "support": { + "source": "https://github.com/morpht/modifiers", + "issues": "https://www.drupal.org/project/issues/modifiers" + } } }, - "drupal/drupal-extension": { - "v3.4.1": { - "name": "drupal/drupal-extension", - "version": "v3.4.1", - "version_normalized": "3.4.1.0", + "drupal/module_filter": { + "3.1.0": { + "name": "drupal/module_filter", + "version": "3.1.0", + "version_normalized": "3.1.0.0", "source": { "type": "git", - "url": "https://github.com/jhedstrom/drupalextension.git", - "reference": "50ff0f413f0dc4732f49638e743f86f45e835e50" + "url": "https://git.drupalcode.org/project/module_filter.git", + "reference": "8.x-3.1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhedstrom/drupalextension/zipball/50ff0f413f0dc4732f49638e743f86f45e835e50", - "reference": "50ff0f413f0dc4732f49638e743f86f45e835e50", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/module_filter-8.x-3.1.zip", + "reference": "8.x-3.1", + "shasum": "39d627ce60280ae54bcf9beae217b85cce1969e4" }, "require": { - "behat/behat": "~3.2", - "behat/mink": "~1.5", - "behat/mink-extension": "~2.0", - "behat/mink-goutte-driver": "~1.0", - "behat/mink-selenium2-driver": "~1.1", - "drupal/drupal-driver": "~1.3", - "symfony/dependency-injection": "~2.7|~3.0", - "symfony/event-dispatcher": "~2.7|~3.0" - }, - "require-dev": { - "behat/mink-zombie-driver": "^1.2", - "jakub-onderka/php-parallel-lint": "^0.9.2", - "phpspec/phpspec": "~2.0", - "phpunit/phpunit": "3.7.*" + "drupal/core": "~8.0" }, - "time": "2017-12-06T20:35:40+00:00", - "type": "behat-extension", + "type": "drupal-module", "extra": { "branch-alias": { - "dev-master": "4.0.x-dev" - } - }, - "autoload": { - "psr-0": { - "Drupal\\Drupal": "src/", - "Drupal\\Exception": "src/", - "Drupal\\DrupalExtension": "src/" + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.1", + "datestamp": "1507650844", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Jonathan Hedstrom", - "email": "jhedstrom@gmail.com" + "name": "greenSkin", + "homepage": "https://www.drupal.org/user/173855" }, { - "name": "Melissa Anderson", - "homepage": "https://github.com/eliza411" + "name": "realityloop", + "homepage": "https://www.drupal.org/user/139189" }, { - "name": "Pieter Frenssen", - "homepage": "https://github.com/pfrenssen" + "name": "shumushin", + "homepage": "https://www.drupal.org/user/22093" } ], - "description": "Drupal extension for Behat", - "homepage": "http://drupal.org/project/drupalextension", - "keywords": [ - "drupal", - "test", - "web" - ] + "description": "Filter the modules list.", + "homepage": "https://www.drupal.org/project/module_filter", + "support": { + "source": "https://git.drupalcode.org/project/module_filter" + } } }, - "drupal/ds": { - "3.2.0": { - "name": "drupal/ds", - "version": "3.2.0", - "version_normalized": "3.2.0.0", + "drupal/page_manager": { + "4.0.0-beta4": { + "name": "drupal/page_manager", + "version": "4.0.0-beta4", + "version_normalized": "4.0.0.0-beta4", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/ds.git", - "reference": "8.x-3.2" + "url": "https://git.drupalcode.org/project/page_manager.git", + "reference": "8.x-4.0-beta4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "c5171e3e59d5ec666e5b5a53baf8f92c01956998" + "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-beta4.zip", + "reference": "8.x-4.0-beta4", + "shasum": "f77d57fa0f0a734c26d9119850672a51e2760d5f" }, "require": { - "drupal/core": "^8.3" - }, - "require-dev": { - "drupal/devel": "*", - "drupal/field_group": "*" + "drupal/core": "~8.5", + "drupal/ctools": "~3.1" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev" + "dev-4.x": "4.x-dev" }, "drupal": { - "version": "8.x-3.2", - "datestamp": "1551355085", + "version": "8.x-4.0-beta4", + "datestamp": "1559135889", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" } } }, @@ -5710,66 +8905,67 @@ ], "authors": [ { - "name": "Bram Goffings", - "homepage": "https://www.drupal.org/user/172527", + "name": "Tim Plunkett", + "homepage": "https://www.drupal.org/u/tim.plunkett", "role": "Maintainer" }, { - "name": "Kristof De Jaeger", - "homepage": "http://realize.be/", - "role": "Maintainer" + "name": "dsnopek", + "homepage": "https://www.drupal.org/user/266527" }, { - "name": "Brecht Ceyssens", - "homepage": "https://www.drupal.org/user/591438", - "role": "Maintainer" + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" }, { - "name": "swentel", - "homepage": "https://www.drupal.org/user/107403" + "name": "manuel.adan", + "homepage": "https://www.drupal.org/user/516420" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" } ], - "description": "Extend the display options for every entity type.", - "homepage": "https://www.drupal.org/project/ds", - "keywords": [ - "drupal", - "layout", - "php" - ], + "description": "Provides a way to place blocks on a custom page.", + "homepage": "https://www.drupal.org/project/page_manager", "support": { - "source": "http://git.drupal.org/project/ds.git", - "issues": "https://www.drupal.org/project/issues/ds", + "source": "https://git.drupal.org/project/page_manager.git", + "issues": "https://www.drupal.org/project/issues/page_manager", "irc": "irc://irc.freenode.org/drupal-contribute" } } }, - "drupal/dynamic_entity_reference": { - "1.7.0": { - "name": "drupal/dynamic_entity_reference", - "version": "1.7.0", - "version_normalized": "1.7.0.0", + "drupal/panelizer": { + "4.1.0": { + "name": "drupal/panelizer", + "version": "4.1.0", + "version_normalized": "4.1.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git", - "reference": "8.x-1.7" + "url": "https://git.drupalcode.org/project/panelizer.git", + "reference": "8.x-4.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-8.x-1.7.zip", - "reference": "8.x-1.7", - "shasum": "48473adb20413babb548a2501e396e66f13c30f2" + "url": "https://ftp.drupal.org/files/projects/panelizer-8.x-4.1.zip", + "reference": "8.x-4.1", + "shasum": "056f236f171305c32d5cfecbfb77a5c7398749d8" }, "require": { - "drupal/core": "*" + "drupal/core": "*", + "drupal/ctools": ">=3.0.0-beta1", + "drupal/ctools_block": "*", + "drupal/panels": ">=4.0.0-alpha1", + "drupal/panels_ipe": ">=4.0.0-alpha1" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-4.x": "4.x-dev" }, "drupal": { - "version": "8.x-1.7", - "datestamp": "1565737269", + "version": "8.x-4.1", + "datestamp": "1578071889", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5782,56 +8978,78 @@ ], "authors": [ { - "name": "Lee Rowlands", - "homepage": "https://www.drupal.org/u/larowlan", - "role": "Maintainer" + "name": "Damien McKenna", + "homepage": "https://www.drupal.org/u/damienmckenna" }, { - "name": "Jibran Ijaz", - "homepage": "https://www.drupal.org/u/jibran", - "role": "Maintainer" + "name": "Kris Vanderwater", + "homepage": "https://www.drupal.org/u/eclipsegc" }, { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" + "name": "David Snopek", + "homepage": "https://www.drupal.org/u/dsnopek" + }, + { + "name": "Jakob Perry", + "homepage": "https://www.drupal.org/u/japerry" + }, + { + "name": "Earl Miles", + "homepage": "https://www.drupal.org/u/merlinofchaos" + }, + { + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/1072922/committers" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "tim.plunkett", + "homepage": "https://www.drupal.org/user/241634" } ], - "description": "Provides a field that allows an entity-reference field to reference more than one entity type.", - "homepage": "http://drupal.org/project/dynamic_entity_reference", + "description": "Allow any entity view mode to be rendered using a Panels display.", + "homepage": "https://www.drupal.org/project/panelizer", "support": { - "source": "http://cgit.drupalcode.org/dynamic_entity_reference", - "issues": "http://drupal.org/project/dynamic_entity_reference", - "irc": "irc://irc.freenode.org/drupal-contribute" + "source": "http://git.drupal.org/project/panelizer.git", + "issues": "https://www.drupal.org/project/issues/panelizer", + "irc": "irc://irc.freenode.org/drupal-scotch" } } }, - "drupal/embed": { - "1.0.0": { - "name": "drupal/embed", - "version": "1.0.0", - "version_normalized": "1.0.0.0", + "drupal/panels": { + "4.4.0": { + "name": "drupal/panels", + "version": "4.4.0", + "version_normalized": "4.4.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/embed.git", - "reference": "8.x-1.0" + "url": "https://git.drupalcode.org/project/panels.git", + "reference": "8.x-4.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a" + "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.4.zip", + "reference": "8.x-4.4", + "shasum": "5fca771d5a6d25dc955192cab95a603f00cde8ee" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.3", + "drupal/ctools": ">=3.0.0" + }, + "require-dev": { + "drupal/page_manager": "*" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-4.x": "4.x-dev" }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1490755685", + "version": "8.x-4.4", + "datestamp": "1553565784", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5844,68 +9062,68 @@ ], "authors": [ { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" + "name": "Jakob Perry", + "homepage": "https://www.drupal.org/u/japerry" }, { - "name": "Devin Carlson", - "homepage": "https://www.drupal.org/user/290182" + "name": "Samuel Mortenson", + "homepage": "https://www.drupal.org/u/samuel.mortenson" }, { - "name": "Drupal Media Team", - "homepage": "https://www.drupal.org/user/3260690" + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/74958/committers" }, { - "name": "cs_shadow", - "homepage": "https://www.drupal.org/user/2828287" + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" }, { - "name": "slashrsm", - "homepage": "https://www.drupal.org/user/744628" + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" + }, + { + "name": "merlinofchaos", + "homepage": "https://www.drupal.org/user/26979" + }, + { + "name": "neclimdul", + "homepage": "https://www.drupal.org/user/48673" + }, + { + "name": "samuel.mortenson", + "homepage": "https://www.drupal.org/user/2582268" + }, + { + "name": "tim.plunkett", + "homepage": "https://www.drupal.org/user/241634" } ], - "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.", - "homepage": "https://www.drupal.org/project/embed", + "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.", + "homepage": "https://www.drupal.org/project/panels", "support": { - "source": "https://git.drupalcode.org/project/embed", - "issues": "https://www.drupal.org/project/issues/embed", - "irc": "irc://irc.freenode.org/drupal-media" + "source": "http://git.drupal.org/project/panels.git", + "issues": "https://www.drupal.org/project/issues/panels", + "irc": "irc://irc.freenode.org/drupal-scotch" } } }, - "drupal/entity_browser": { - "2.1.0": { - "name": "drupal/entity_browser", - "version": "2.1.0", - "version_normalized": "2.1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/entity_browser.git", - "reference": "8.x-2.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.1.zip", - "reference": "8.x-2.1", - "shasum": "56cf190f3ea3fc0af71becbc44af5954a71f216b" - }, + "drupal/panels_ipe": { + "4.4.0": { + "name": "drupal/panels_ipe", + "version": "4.4.0", + "version_normalized": "4.4.0.0", "require": { - "drupal/core": "~8.0" - }, - "require-dev": { - "drupal/inline_entity_form": "*", - "drupal/paragraphs": "*", - "drupal/token": "*" + "drupal/core": "*", + "drupal/panels": "self.version" }, - "type": "drupal-module", + "type": "metapackage", "extra": { "branch-alias": { - "dev-2.x": "2.x-dev", - "dev-8.x-1.x": "8.1.x-dev" + "dev-4.x": "4.x-dev" }, "drupal": { - "version": "8.x-2.1", - "datestamp": "1562240585", + "version": "8.x-4.4", + "datestamp": "1553565784", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5914,76 +9132,88 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ - { - "name": "Janez Urevc", - "homepage": "https://github.com/slashrsm", - "role": "Maintainer" + { + "name": "EclipseGc", + "homepage": "https://www.drupal.org/user/61203" }, { - "name": "Primoz Hmeljak", - "homepage": "https://github.com/primsi", - "role": "Maintainer" + "name": "Letharion", + "homepage": "https://www.drupal.org/user/373603" }, { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/1943336/committers", - "role": "contributor" + "name": "esmerel", + "homepage": "https://www.drupal.org/user/164022" }, { - "name": "Drupal Media Team", - "homepage": "https://www.drupal.org/user/3260690" + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" }, { - "name": "Primsi", - "homepage": "https://www.drupal.org/user/282629" + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" }, { - "name": "marcingy", - "homepage": "https://www.drupal.org/user/77320" + "name": "merlinofchaos", + "homepage": "https://www.drupal.org/user/26979" }, { - "name": "oknate", - "homepage": "https://www.drupal.org/user/471638" + "name": "neclimdul", + "homepage": "https://www.drupal.org/user/48673" }, { "name": "samuel.mortenson", "homepage": "https://www.drupal.org/user/2582268" }, { - "name": "slashrsm", - "homepage": "https://www.drupal.org/user/744628" + "name": "tim.plunkett", + "homepage": "https://www.drupal.org/user/241634" } ], - "description": "Entity browsing and selecting component.", - "homepage": "http://drupal.org/project/entity_browser", + "description": "Panels In-place editor.", + "homepage": "https://www.drupal.org/project/panels", "support": { - "source": "http://cgit.drupalcode.org/entity_browser", - "issues": "http://drupal.org/project/issues/entity_browser", - "irc": "irc://irc.freenode.org/drupal-contribute" + "source": "https://git.drupalcode.org/project/panels" } } }, - "drupal/entity_class_formatter": { - "1.1.0": { - "name": "drupal/entity_class_formatter", - "version": "1.1.0", - "version_normalized": "1.1.0.0", + "drupal/paragraphs": { + "1.6.0": { + "name": "drupal/paragraphs", + "version": "1.6.0", + "version_normalized": "1.6.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/entity_class_formatter.git", - "reference": "8.x-1.1" + "url": "https://git.drupalcode.org/project/paragraphs.git", + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_class_formatter-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "0857e4c1c9f7d77a9d8a75fb786a4833a11343ac" + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "cd93e244f3a78dabdcf362adc31e59aad25b3fae" }, "require": { - "drupal/core": "*" + "drupal/core": "~8", + "drupal/entity_reference_revisions": "~1.3" + }, + "require-dev": { + "drupal/block_field": "~1.0", + "drupal/ctools": "3.x-dev", + "drupal/diff": "~1.0", + "drupal/entity_browser": "1.x-dev", + "drupal/entity_usage": "2.x-dev", + "drupal/field_group": "~1.0", + "drupal/inline_entity_form": "~1.0", + "drupal/paragraphs-paragraphs_library": "*", + "drupal/replicate": "~1.0", + "drupal/search_api": "~1.0", + "drupal/search_api_db": "*" + }, + "suggest": { + "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module" }, "type": "drupal-module", "extra": { @@ -5991,8 +9221,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1572616685", + "version": "8.x-1.6", + "datestamp": "1553087589", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6001,135 +9231,128 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0" ], "authors": [ { - "name": "honzapara", - "homepage": "https://www.drupal.org/user/3272000" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "name": "kyberman", - "homepage": "https://www.drupal.org/user/402924" + "name": "Frans", + "homepage": "https://www.drupal.org/user/514222" }, { - "name": "martin_klima", - "homepage": "https://www.drupal.org/user/2784335" + "name": "Primsi", + "homepage": "https://www.drupal.org/user/282629" }, { - "name": "murrayw", - "homepage": "https://www.drupal.org/user/595658" + "name": "jeroen.b", + "homepage": "https://www.drupal.org/user/1853532" + }, + { + "name": "jstoller", + "homepage": "https://www.drupal.org/user/99012" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" } ], - "description": "Apply class on the entity if it's field is using this formatter.", - "homepage": "https://www.drupal.org/project/entity_class_formatter", + "description": "Enables the creation of Paragraphs entities.", + "homepage": "https://www.drupal.org/project/paragraphs", "support": { - "source": "https://git.drupalcode.org/project/entity_class_formatter" + "source": "https://git.drupalcode.org/project/paragraphs" } } }, - "drupal/entity_embed": { - "1.0.0": { - "name": "drupal/entity_embed", - "version": "1.0.0", - "version_normalized": "1.0.0.0", + "drupal/password_policy": { + "3.0.0-alpha4": { + "name": "drupal/password_policy", + "version": "3.0.0-alpha4", + "version_normalized": "3.0.0.0-alpha4", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/entity_embed.git", - "reference": "8.x-1.0" + "url": "https://git.drupalcode.org/project/password_policy.git", + "reference": "8.x-3.0-alpha4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "abd37a54162a702cf696ef0e5f8b2b1082263c21" + "url": "https://ftp.drupal.org/files/projects/password_policy-8.x-3.0-alpha4.zip", + "reference": "8.x-3.0-alpha4", + "shasum": "79997599fbce390e79eda0aba10f403324c48b99" }, "require": { - "drupal/core": "^8.4.0", - "drupal/embed": "*" - }, - "require-dev": { - "drupal/entity_browser": "*" + "drupal/core": "*", + "drupal/ctools": "*" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-3.x": "3.x-dev" }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1562161679", + "version": "8.x-3.0-alpha4", + "datestamp": "1559915584", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "Devin Carlson", - "homepage": "https://www.drupal.org/user/290182" - }, - { - "name": "Drupal Media Team", - "homepage": "https://www.drupal.org/user/3260690" - }, - { - "name": "Wim Leers", - "homepage": "https://www.drupal.org/user/99777" + "name": "AohRveTPV", + "homepage": "https://www.drupal.org/user/2760115" }, { - "name": "cs_shadow", - "homepage": "https://www.drupal.org/user/2828287" + "name": "deekayen", + "homepage": "https://www.drupal.org/user/972" }, { - "name": "oknate", - "homepage": "https://www.drupal.org/user/471638" + "name": "miglius", + "homepage": "https://www.drupal.org/user/18741" }, { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" + "name": "nerdstein", + "homepage": "https://www.drupal.org/user/1557710" }, { - "name": "slashrsm", - "homepage": "https://www.drupal.org/user/744628" + "name": "shrop", + "homepage": "https://www.drupal.org/user/14767" } ], - "description": "Allows any entity to be embedded within a text area using a WYSIWYG editor.", - "homepage": "https://www.drupal.org/project/entity_embed", + "description": "Sets up constraints and expiration of passwords.", + "homepage": "https://www.drupal.org/project/password_policy", "support": { - "source": "https://git.drupalcode.org/project/entity_embed", - "issues": "https://www.drupal.org/project/issues/entity_embed", - "irc": "irc://irc.freenode.org/drupal-media" + "source": "https://git.drupalcode.org/project/password_policy" } } }, - "drupal/entity_reference_display": { - "1.2.0": { - "name": "drupal/entity_reference_display", - "version": "1.2.0", - "version_normalized": "1.2.0.0", + "drupal/pathauto": { + "1.6.0": { + "name": "drupal/pathauto", + "version": "1.6.0", + "version_normalized": "1.6.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/entity_reference_display.git", - "reference": "8.x-1.2" + "url": "https://git.drupalcode.org/project/pathauto.git", + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_display-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "0598f6f6121fb8d768fdb9a777b0062f94cbef64" + "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "eb976ae110d73c06fafb1b657adb967dd2cb8246" }, "require": { - "drupal/core": "*" + "drupal/core": "^8.6", + "drupal/ctools": "*", + "drupal/token": "*" }, "type": "drupal-module", "extra": { @@ -6137,8 +9360,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.2", - "datestamp": "1527517384", + "version": "8.x-1.6", + "datestamp": "1575467285", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6151,55 +9374,56 @@ ], "authors": [ { - "name": "kyberman", - "homepage": "https://www.drupal.org/user/402924" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "name": "murrayw", - "homepage": "https://www.drupal.org/user/595658" + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" }, { - "name": "wiifm", - "homepage": "https://www.drupal.org/user/358731" + "name": "Freso", + "homepage": "https://www.drupal.org/user/27504" + }, + { + "name": "greggles", + "homepage": "https://www.drupal.org/user/36762" } ], - "description": "Defines a field type for display mode selection for entity reference fields.", - "homepage": "https://www.drupal.org/project/entity_reference_display", + "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.", + "homepage": "https://www.drupal.org/project/pathauto", "support": { - "source": "https://git.drupalcode.org/project/entity_reference_display" + "source": "https://git.drupalcode.org/project/pathauto" } } }, - "drupal/entity_reference_revisions": { - "1.6.0": { - "name": "drupal/entity_reference_revisions", - "version": "1.6.0", - "version_normalized": "1.6.0.0", + "drupal/permissions_by_term": { + "2.12.0": { + "name": "drupal/permissions_by_term", + "version": "2.12.0", + "version_normalized": "2.12.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", - "reference": "8.x-1.6" + "url": "https://git.drupalcode.org/project/permissions_by_term.git", + "reference": "8.x-2.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "82d515de04d3a75fb677ed82241a6aff3f54ab47" + "url": "https://ftp.drupal.org/files/projects/permissions_by_term-8.x-2.12.zip", + "reference": "8.x-2.12", + "shasum": "e0992054ba1712bef3ab603d33e8a0d00ce6572b" }, "require": { - "drupal/core": "~8.0" - }, - "require-dev": { - "drupal/diff": "*" + "drupal/core": "^8.0" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-1.6", - "datestamp": "1570284187", + "version": "8.x-2.12", + "datestamp": "1577477888", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6208,60 +9432,58 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "Berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "Frans", - "homepage": "https://www.drupal.org/user/514222" + "name": "Peter Majmesku", + "homepage": "https://www.drupal.org/user/786132", + "email": "p.majmesku@gmail.com" }, { - "name": "jeroen.b", - "homepage": "https://www.drupal.org/user/1853532" + "name": "SaschaHannes", + "homepage": "https://www.drupal.org/user/3536189" }, { - "name": "miro_dietiker", - "homepage": "https://www.drupal.org/user/227761" + "name": "marcoliver", + "homepage": "https://www.drupal.org/user/1529744" } ], - "description": "Adds a Entity Reference field type with revision support.", - "homepage": "https://www.drupal.org/project/entity_reference_revisions", + "description": "Restricts access to nodes by taxonomy terms in relation to users and their roles.", + "homepage": "https://www.drupal.org/project/permissions_by_term", "support": { - "source": "https://git.drupalcode.org/project/entity_reference_revisions" + "source": "https://git.drupalcode.org/project/permissions_by_term" } } }, - "drupal/environment_indicator": { - "3.5.0": { - "name": "drupal/environment_indicator", - "version": "3.5.0", - "version_normalized": "3.5.0.0", + "drupal/recaptcha": { + "2.4.0": { + "name": "drupal/recaptcha", + "version": "2.4.0", + "version_normalized": "2.4.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/environment_indicator.git", - "reference": "8.x-3.5" + "url": "https://git.drupalcode.org/project/recaptcha.git", + "reference": "8.x-2.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/environment_indicator-8.x-3.5.zip", - "reference": "8.x-3.5", - "shasum": "637ceea8bc1dc690f12cdcc5d1285986b6037c92" + "url": "https://ftp.drupal.org/files/projects/recaptcha-8.x-2.4.zip", + "reference": "8.x-2.4", + "shasum": "ee68020dc33f880313b83d8bbcb159ef85285c7a" }, "require": { - "drupal/core": "*" + "drupal/captcha": "^1.0.0-alpha1", + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev" + "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-3.5", - "datestamp": "1553405885", + "version": "8.x-2.4", + "datestamp": "1548967980", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6270,46 +9492,56 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "e0ipso", - "homepage": "https://www.drupal.org/user/550110" + "name": "hass", + "homepage": "https://www.drupal.org/u/hass" }, { - "name": "mrfelton", - "homepage": "https://www.drupal.org/user/305669" + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/147903/committers" + }, + { + "name": "diolan", + "homepage": "https://www.drupal.org/user/2336786" + }, + { + "name": "hass", + "homepage": "https://www.drupal.org/user/85918" + }, + { + "name": "id.medion", + "homepage": "https://www.drupal.org/user/2542592" } ], - "description": "Adds a color indicator for the different environments.", - "homepage": "https://www.drupal.org/project/environment_indicator", + "description": "Protect your website from spam and abuse while letting real people pass through with ease.", + "homepage": "https://www.drupal.org/project/recaptcha", "support": { - "source": "https://git.drupalcode.org/project/environment_indicator" + "source": "https://git.drupal.org/project/recaptcha.git", + "issues": "https://www.drupal.org/project/issues/recaptcha" } } }, - "drupal/events_log_track": { - "1.1.0": { - "name": "drupal/events_log_track", - "version": "1.1.0", - "version_normalized": "1.1.0.0", + "drupal/redirect": { + "1.3.0": { + "name": "drupal/redirect", + "version": "1.3.0", + "version_normalized": "1.3.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/events_log_track.git", - "reference": "8.x-1.1" + "url": "https://git.drupalcode.org/project/redirect.git", + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/events_log_track-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "559e0d34414dd881e7e7a7d33916232e13c28df5" + "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7" }, "require": { - "drupal/core": "~8.0" - }, - "require-dev": { - "drupal/event_log_track": "*" + "drupal/core": "~8" }, "type": "drupal-module", "extra": { @@ -6317,8 +9549,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1487851984", + "version": "8.x-1.3", + "datestamp": "1561757585", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6327,41 +9559,50 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "kumaratulesh", - "homepage": "https://www.drupal.org/user/1840602" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "pifagor", + "homepage": "https://www.drupal.org/user/2375692" } ], - "homepage": "https://www.drupal.org/project/events_log_track", + "description": "Allows users to redirect from old URLs to new URLs.", + "homepage": "https://www.drupal.org/project/redirect", "support": { - "source": "https://git.drupalcode.org/project/events_log_track" + "source": "https://git.drupalcode.org/project/redirect" } } }, - "drupal/facets": { - "1.3.0": { - "name": "drupal/facets", - "version": "1.3.0", - "version_normalized": "1.3.0.0", + "drupal/redis": { + "1.1.0": { + "name": "drupal/redis", + "version": "1.1.0", + "version_normalized": "1.1.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/facets.git", - "reference": "8.x-1.3" + "url": "https://git.drupalcode.org/project/redis.git", + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "2ca517094a34112e8168746123d337a25da6a227" + "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77" }, "require": { "drupal/core": "~8.0" }, - "require-dev": { - "drupal/search_api": "~1.5" + "suggest": { + "predis/predis": "^1.1.1" }, "type": "drupal-module", "extra": { @@ -6369,59 +9610,58 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.3", - "datestamp": "1556645881", + "version": "8.x-1.1", + "datestamp": "1568275684", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } } }, + "autoload": { + "psr-4": { + "Drupal\\redis\\": "src" + } + }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0" ], "authors": [ { - "name": "See all contributors", - "homepage": "https://www.drupal.org/node/2348769/committers" - }, - { - "name": "StryKaizer", - "homepage": "https://www.drupal.org/user/462700" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "name": "borisson_", - "homepage": "https://www.drupal.org/user/2393360" + "name": "pounard", + "homepage": "https://www.drupal.org/user/240164" } ], - "description": "The Facet module allows site builders to easily create and manage faceted search interfaces.", - "homepage": "https://www.drupal.org/project/facets", + "description": "Provide a module placeholder, for using as dependency for module that needs Redis.", + "homepage": "https://www.drupal.org/project/redis", "support": { - "source": "git://git.drupal.org/project/facets.git", - "issues": "https://www.drupal.org/project/issues/facets", - "irc": "irc://irc.freenode.org/drupal-search-api" + "source": "https://git.drupalcode.org/project/redis" } } }, - "drupal/fast_404": { - "1.0.0-alpha4": { - "name": "drupal/fast_404", - "version": "1.0.0-alpha4", - "version_normalized": "1.0.0.0-alpha4", + "drupal/restui": { + "1.16.0": { + "name": "drupal/restui", + "version": "1.16.0", + "version_normalized": "1.16.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/fast_404.git", - "reference": "8.x-1.0-alpha4" + "url": "https://git.drupalcode.org/project/restui.git", + "reference": "8.x-1.16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fast_404-8.x-1.0-alpha4.zip", - "reference": "8.x-1.0-alpha4", - "shasum": "2bc6a47b79d179ad970525fd0293651f5f2428ce" + "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.16.zip", + "reference": "8.x-1.16", + "shasum": "60d2c7ecf6bb439e528c367753df9c94684b8894" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.2.0" }, "type": "drupal-module", "extra": { @@ -6429,11 +9669,11 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-alpha4", - "datestamp": "1546823580", + "version": "8.x-1.16", + "datestamp": "1557845661", "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -6443,69 +9683,60 @@ ], "authors": [ { - "name": "adammalone", - "homepage": "https://www.drupal.org/user/1295980" - }, - { - "name": "bonus", - "homepage": "https://www.drupal.org/user/360002" + "name": "-enzo-", + "homepage": "https://www.drupal.org/user/294937" }, { - "name": "naveenvalecha", - "homepage": "https://www.drupal.org/user/2665733" + "name": "clemens.tolboom", + "homepage": "https://www.drupal.org/user/125814" }, { - "name": "neetu morwani", - "homepage": "https://www.drupal.org/user/2632025" + "name": "juampynr", + "homepage": "https://www.drupal.org/user/682736" }, { - "name": "soyarma", - "homepage": "https://www.drupal.org/user/286273" + "name": "klausi", + "homepage": "https://www.drupal.org/user/262198" } ], - "homepage": "https://www.drupal.org/project/fast_404", + "description": "Provides a user interface to manage REST resources", + "homepage": "https://www.drupal.org/project/restui", "support": { - "source": "https://git.drupalcode.org/project/fast_404" + "source": "https://git.drupalcode.org/project/restui" } } }, - "drupal/features": { - "3.8.0": { - "name": "drupal/features", - "version": "3.8.0", - "version_normalized": "3.8.0.0", + "drupal/robotstxt": { + "1.2.0": { + "name": "drupal/robotstxt", + "version": "1.2.0", + "version_normalized": "1.2.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/features.git", - "reference": "8.x-3.8" + "url": "https://git.drupalcode.org/project/robotstxt.git", + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip", - "reference": "8.x-3.8", - "shasum": "15cebd00e38d63c0d946682e76327a03499c27be" + "url": "https://ftp.drupal.org/files/projects/robotstxt-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "d520a92abfd67b55fbffdead510a57f9c9abf46b" }, "require": { - "drupal/config_update": "^1.4", - "drupal/core": "*" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-3.8", - "datestamp": "1536512284", + "version": "8.x-1.2", + "datestamp": "1529154524", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -6514,133 +9745,111 @@ ], "authors": [ { - "name": "dawehner", - "homepage": "https://www.drupal.org/user/99340" - }, - { - "name": "e2thex", - "homepage": "https://www.drupal.org/user/189123" - }, - { - "name": "febbraro", - "homepage": "https://www.drupal.org/user/43670" - }, - { - "name": "jmiccolis", - "homepage": "https://www.drupal.org/user/31731" - }, - { - "name": "joseph.olstad", - "homepage": "https://www.drupal.org/user/1321830" + "name": "hass", + "homepage": "https://www.drupal.org/u/hass" }, { - "name": "mpotter", - "homepage": "https://www.drupal.org/user/616192" + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/53579/committers" }, { - "name": "nedjo", - "homepage": "https://www.drupal.org/user/4481" + "name": "ccjjmartin", + "homepage": "https://www.drupal.org/user/3210801" }, { - "name": "tim.plunkett", - "homepage": "https://www.drupal.org/user/241634" + "name": "mikeegoulding", + "homepage": "https://www.drupal.org/user/2867877" } ], - "description": "Enables administrators to package configuration into modules", - "homepage": "https://www.drupal.org/project/features", + "description": "Generates the robots.txt file dynamically and gives you the chance to edit it, on a per-site basis, from the web UI.", + "homepage": "https://www.drupal.org/project/robotstxt", "support": { - "source": "https://git.drupalcode.org/project/features" + "source": "http://git.drupal.org/project/robotstxt.git", + "issues": "https://www.drupal.org/project/issues/robotstxt" } } }, - "drupal/field_group": { - "3.0.0-rc1": { - "name": "drupal/field_group", - "version": "3.0.0-rc1", - "version_normalized": "3.0.0.0-RC1", + "drupal/scheduled_transitions": { + "1.0.0-rc1": { + "name": "drupal/scheduled_transitions", + "version": "1.0.0-rc1", + "version_normalized": "1.0.0.0-RC1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/field_group.git", - "reference": "8.x-3.0-rc1" + "url": "https://git.drupalcode.org/project/scheduled_transitions.git", + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-rc1.zip", - "reference": "8.x-3.0-rc1", - "shasum": "e291b5468c834a344e9aa6cafd3a76171d473a22" + "url": "https://ftp.drupal.org/files/projects/scheduled_transitions-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "4fbfdbc8c5713672f0cdbc1fc06b343d1bd55838" }, "require": { - "drupal/core": "*" + "drupal/core": "^8.6", + "drupal/dynamic_entity_reference": "*", + "php": ">=7.1.0" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-3.0-rc1", - "datestamp": "1574200085", + "version": "8.x-1.0-rc1", + "datestamp": "1564755488", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Hydra", - "homepage": "https://www.drupal.org/user/647364" - }, - { - "name": "Stalski", - "homepage": "https://www.drupal.org/user/322618" - }, - { - "name": "jyve", - "homepage": "https://www.drupal.org/user/591438" - }, - { - "name": "swentel", - "homepage": "https://www.drupal.org/user/107403" - }, - { - "name": "zuuperman", - "homepage": "https://www.drupal.org/user/361625" + "name": "dpi", + "homepage": "https://www.drupal.org/user/81431" } ], - "description": "Provides the field_group module.", - "homepage": "https://www.drupal.org/project/field_group", + "description": "Allows users to schedule a revision to change state.", + "homepage": "https://www.drupal.org/project/scheduled_transitions", "support": { - "source": "https://git.drupalcode.org/project/field_group" + "source": "https://git.drupalcode.org/project/scheduled_transitions" } } }, - "drupal/focal_point": { - "1.2.0": { - "name": "drupal/focal_point", - "version": "1.2.0", - "version_normalized": "1.2.0.0", + "drupal/schema_metatag": { + "1.4.0": { + "name": "drupal/schema_metatag", + "version": "1.4.0", + "version_normalized": "1.4.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/focal_point.git", - "reference": "8.x-1.2" + "url": "https://git.drupalcode.org/project/schema_metatag.git", + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/focal_point-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "b274a5f4484ce99dece492dc7ae7149b34982244" + "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "5d0a677608e30a7c8ffb43d98759b19cf5be17f6" }, "require": { - "drupal/core": "*", - "drupal/crop": "*" + "drupal/core": "~8.0", + "drupal/metatag": "*" }, "require-dev": { - "drupal/crop": "*" + "drupal/metatag_views": "*", + "drupal/schema_article": "*", + "drupal/schema_organization": "*" }, "type": "drupal-module", "extra": { @@ -6648,8 +9857,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.2", - "datestamp": "1569333485", + "version": "8.x-1.4", + "datestamp": "1563033785", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6658,56 +9867,70 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "bleen", - "homepage": "https://www.drupal.org/user/77375" + "name": "KarenS", + "homepage": "https://www.drupal.org/user/45874" } ], - "description": "Allows users to specify the focal point of an image for use during cropping.", - "homepage": "https://www.drupal.org/project/focal_point", + "description": "Metatag implementation of Schema.org structured data (JSON-LD)", + "homepage": "https://www.drupal.org/project/schema_metatag", + "keywords": [ + "Drupal" + ], "support": { - "source": "https://git.drupalcode.org/project/focal_point" + "source": "http://cgit.drupalcode.org/schema_metatag", + "issues": "https://www.drupal.org/project/issues/schema_metatag" } } }, - "drupal/google_analytics": { - "3.0.0": { - "name": "drupal/google_analytics", - "version": "3.0.0", - "version_normalized": "3.0.0.0", + "drupal/search_api": { + "1.11.0": { + "name": "drupal/search_api", + "version": "1.11.0", + "version_normalized": "1.11.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/google_analytics.git", - "reference": "8.x-3.0" + "url": "https://git.drupalcode.org/project/search_api.git", + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_analytics-8.x-3.0.zip", - "reference": "8.x-3.0", - "shasum": "18179854152cae44be2a5ed5de5550bc6e131c70" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "d2bf92afa2ee760977dde1fadcb5bb64a4c2d7c1" }, "require": { - "drupal/core": "~8.5" + "drupal/core": "^8.5" }, "require-dev": { - "drupal/php": "*", - "drupal/token": "*" + "drupal/search_api_autocomplete": "@dev", + "drupal/search_api_db": "*" + }, + "suggest": { + "drupal/facets": "Adds the ability to create faceted searches.", + "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.", + "drupal/search_api_solr": "Adds support for using Apache Solr as a backend." }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-3.0", - "datestamp": "1548968580", + "version": "8.x-1.11", + "datestamp": "1552334285", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -6716,109 +9939,134 @@ ], "authors": [ { - "name": "hass", - "homepage": "https://www.drupal.org/u/hass" + "name": "Thomas Seidl", + "homepage": "https://www.drupal.org/u/drunken-monkey" + }, + { + "name": "Nick Veenhof", + "homepage": "https://www.drupal.org/u/nick_vh" }, { "name": "See other contributors", - "homepage": "https://www.drupal.org/node/49388/committers" + "homepage": "https://www.drupal.org/node/790418/committers" } ], - "description": "Allows your site to be tracked by Google Analytics by adding a Javascript tracking code to every page.", - "homepage": "https://www.drupal.org/project/google_analytics", + "description": "Provides a generic framework for modules offering search capabilities.", + "homepage": "https://www.drupal.org/project/search_api", "support": { - "source": "https://git.drupal.org/project/google_analytics.git", - "issues": "https://www.drupal.org/project/issues/google_analytics" + "source": "http://git.drupal.org/project/search_api.git", + "issues": "https://www.drupal.org/project/issues/search_api", + "irc": "irc://irc.freenode.org/drupal-search-api" } - } - }, - "drupal/govcms8_ui": { - "1.0.0-alpha1": { - "name": "drupal/govcms8_ui", - "version": "1.0.0-alpha1", - "version_normalized": "1.0.0.0-alpha1", + }, + "1.15.0": { + "name": "drupal/search_api", + "version": "1.15.0", + "version_normalized": "1.15.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/govcms8_ui.git", - "reference": "8.x-1.0-alpha1" + "url": "https://git.drupalcode.org/project/search_api.git", + "reference": "8.x-1.15" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/govcms8_ui-8.x-1.0-alpha1.zip", - "reference": "8.x-1.0-alpha1", - "shasum": "ec17e9f9e105cf2b3356866c5a5aab6e133321c7" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.15.zip", + "reference": "8.x-1.15", + "shasum": "12c13141adb6b687fe36781ac9269a49ef810323" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.6" }, - "type": "drupal-theme", + "conflict": { + "drupal/search_api_solr": "2.* || 3.0 || 3.1" + }, + "require-dev": { + "drupal/language_fallback_fix": "@dev", + "drupal/search_api_autocomplete": "@dev", + "drupal/search_api_db": "*" + }, + "suggest": { + "drupal/facets": "Adds the ability to create faceted searches.", + "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.", + "drupal/search_api_solr": "Adds support for using Apache Solr as a backend." + }, + "type": "drupal-module", "extra": { "branch-alias": { "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-alpha1", - "datestamp": "1513834687", + "version": "8.x-1.15", + "datestamp": "1573122785", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "Joseph Zhao", - "homepage": "https://www.drupal.org/user/1987218" + "name": "Thomas Seidl", + "homepage": "https://www.drupal.org/u/drunken-monkey" }, { - "name": "govcms", - "homepage": "https://www.drupal.org/user/3141265" + "name": "Nick Veenhof", + "homepage": "https://www.drupal.org/u/nick_vh" }, { - "name": "tobybellwood", - "homepage": "https://www.drupal.org/user/3529537" + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/790418/committers" } ], - "homepage": "https://www.drupal.org/project/govcms8_ui", + "description": "Provides a generic framework for modules offering search capabilities.", + "homepage": "https://www.drupal.org/project/search_api", "support": { - "source": "https://git.drupalcode.org/project/govcms8_ui" + "source": "http://git.drupal.org/project/search_api.git", + "issues": "https://www.drupal.org/project/issues/search_api", + "irc": "irc://irc.freenode.org/drupal-search-api" } } }, - "drupal/govcms8_uikit_starter": { - "1.0.0-alpha2": { - "name": "drupal/govcms8_uikit_starter", - "version": "1.0.0-alpha2", - "version_normalized": "1.0.0.0-alpha2", + "drupal/search_api_attachments": { + "1.0.0-beta13": { + "name": "drupal/search_api_attachments", + "version": "1.0.0-beta13", + "version_normalized": "1.0.0.0-beta13", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/govcms8_uikit_starter.git", - "reference": "8.x-1.0-alpha2" + "url": "https://git.drupalcode.org/project/search_api_attachments.git", + "reference": "8.x-1.0-beta13" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/govcms8_uikit_starter-8.x-1.0-alpha2.zip", - "reference": "8.x-1.0-alpha2", - "shasum": "009d5574f166d5e9aaa223e98e3ccd7510e842d3" + "url": "https://ftp.drupal.org/files/projects/search_api_attachments-8.x-1.0-beta13.zip", + "reference": "8.x-1.0-beta13", + "shasum": "14835458d83b66adb499a020d41dbaa1c1e27800" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "~8.0", + "drupal/search_api": "*" }, - "type": "drupal-theme", + "type": "drupal-module", "extra": { "branch-alias": { "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-alpha2", - "datestamp": "1554762181", + "version": "8.x-1.0-beta13", + "datestamp": "1562252286", "security-coverage": { "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -6828,64 +10076,68 @@ ], "authors": [ { - "name": "Joseph Zhao", - "homepage": "https://www.drupal.org/user/1987218" - }, - { - "name": "courdo", - "homepage": "https://www.drupal.org/user/3162961" - }, - { - "name": "fubarhouse", - "homepage": "https://www.drupal.org/user/2190626" - }, - { - "name": "ruwanl", - "homepage": "https://www.drupal.org/user/2906813" - }, - { - "name": "tobybellwood", - "homepage": "https://www.drupal.org/user/3529537" + "name": "izus", + "homepage": "https://www.drupal.org/user/514568" } ], - "description": "Provides uikit starter theme to govCMS8", - "homepage": "https://www.drupal.org/project/govcms8_uikit_starter", + "description": "Extract and index file fields content.", + "homepage": "https://www.drupal.org/project/search_api_attachments", "support": { - "source": "https://git.drupalcode.org/project/govcms8_uikit_starter" + "source": "https://git.drupalcode.org/project/search_api_attachments" } } }, - "drupal/graphql": { - "3.0.0-rc2": { - "name": "drupal/graphql", - "version": "3.0.0-rc2", - "version_normalized": "3.0.0.0-RC2", + "drupal/search_api_solr": { + "2.2.0": { + "name": "drupal/search_api_solr", + "version": "2.2.0", + "version_normalized": "2.2.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/graphql.git", - "reference": "8.x-3.0-rc2" + "url": "https://git.drupalcode.org/project/search_api_solr.git", + "reference": "8.x-2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/graphql-8.x-3.0-rc2.zip", - "reference": "8.x-3.0-rc2", - "shasum": "99c229003fddc058fe7f213f9753ad7109c3e4d7" + "url": "https://ftp.drupal.org/files/projects/search_api_solr-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "c740d9983d6fb34b27ba0d680de2bb9ade3754eb" }, "require": { - "drupal/core": "~8.0", - "webonyx/graphql-php": "^0.12.5" + "drupal/core": "^8.5", + "drupal/search_api": "~1.9", + "maennchen/zipstream-php": "0.4.*", + "php": "^7.0", + "solarium/solarium": "~4.1.0" + }, + "conflict": { + "drupal/core": "<8.5", + "drupal/search_api_solr_multilingual": "*" + }, + "require-dev": { + "drupal/devel": "*", + "drupal/facets": "1.x-dev", + "drupal/geofield": "1.x-dev", + "drupal/search_api_autocomplete": "1.x-dev", + "drupal/search_api_location": "1.x-dev", + "phayes/geophp": "^1.2" + }, + "suggest": { + "drupal/facets": "Provides facetted search.", + "drupal/search_api_autocomplete": "Provides auto complete for search boxes.", + "drupal/search_api_location": "Provides location searches." }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev" + "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-3.0-rc2", - "datestamp": "1555138081", + "version": "8.x-2.2", + "datestamp": "1543072380", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -6895,40 +10147,54 @@ ], "authors": [ { - "name": "fubhy", - "homepage": "https://www.drupal.org/user/761344" + "name": "Markus Kalkbrenner", + "homepage": "https://www.drupal.org/u/mkalkbrenner" }, { - "name": "klausi", - "homepage": "https://www.drupal.org/user/262198" + "name": "Other contributors", + "homepage": "https://www.drupal.org/node/982682/committers" }, { - "name": "pmelab", - "homepage": "https://www.drupal.org/user/555322" + "name": "amateescu", + "homepage": "https://www.drupal.org/user/729614" + }, + { + "name": "cspitzlay", + "homepage": "https://www.drupal.org/user/419305" + }, + { + "name": "drunken monkey", + "homepage": "https://www.drupal.org/user/205582" + }, + { + "name": "mkalkbrenner", + "homepage": "https://www.drupal.org/user/124705" } ], - "description": "Exposes your Drupal data model through a GraphQL schema.", - "homepage": "http://drupal.org/project/graphql", + "description": "Offers an implementation of the Search API that uses an Apache Solr server for indexing content.", + "homepage": "https://www.drupal.org/project/search_api_solr", "support": { - "source": "https://git.drupalcode.org/project/graphql" + "source": "http://git.drupal.org/project/search_api_solr.git", + "issues": "https://www.drupal.org/project/issues/search_api_solr", + "irc": "irc://irc.freenode.org/drupal-search-api" } } }, - "drupal/honeypot": { - "1.29.0": { - "name": "drupal/honeypot", - "version": "1.29.0", - "version_normalized": "1.29.0.0", + "drupal/seckit": { + "1.1.0": { + "name": "drupal/seckit", + "version": "1.1.0", + "version_normalized": "1.1.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/honeypot.git", - "reference": "8.x-1.29" + "url": "https://git.drupalcode.org/project/seckit.git", + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip", - "reference": "8.x-1.29", - "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487" + "url": "https://ftp.drupal.org/files/projects/seckit-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "bf7756d1a6a2d64ff35147b7a464cbd7f1acffcc" }, "require": { "drupal/core": "~8.0" @@ -6939,8 +10205,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.29", - "datestamp": "1536179280", + "version": "8.x-1.1", + "datestamp": "1561463889", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6953,254 +10219,255 @@ ], "authors": [ { - "name": "Jeff Geerling", - "homepage": "https://www.drupal.org/user/213194", - "email": "geerlingguy@mac.com" + "name": "badjava", + "homepage": "https://www.drupal.org/user/83372" }, { - "name": "geerlingguy", - "homepage": "https://www.drupal.org/user/389011" + "name": "jweowu", + "homepage": "https://www.drupal.org/user/152788" }, { - "name": "vijaycs85", - "homepage": "https://www.drupal.org/user/93488" + "name": "mcdruid", + "homepage": "https://www.drupal.org/user/255969" + }, + { + "name": "p0deje", + "homepage": "https://www.drupal.org/user/529960" } ], - "description": "Mitigates spam form submissions using the honeypot method.", - "homepage": "https://www.drupal.org/project/honeypot", + "description": "SecKit provides Drupal with various security-hardening options.", + "homepage": "https://www.drupal.org/project/seckit", "keywords": [ - "deterrent", - "form", - "honeypot", - "honeytrap", - "php", - "spam" + "Drupal", + "security" ], "support": { - "source": "https://git.drupalcode.org/project/honeypot" + "source": "http://cgit.drupalcode.org/seckit", + "issues": "http://drupal.org/project/issues/seckit" } } }, - "drupal/inline_entity_form": { - "1.0.0-rc1": { - "name": "drupal/inline_entity_form", - "version": "1.0.0-rc1", - "version_normalized": "1.0.0.0-RC1", + "drupal/shield": { + "1.2.0": { + "name": "drupal/shield", + "version": "1.2.0", + "version_normalized": "1.2.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/inline_entity_form.git", - "reference": "8.x-1.0-rc1" + "url": "https://git.drupalcode.org/project/shield.git", + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip", - "reference": "8.x-1.0-rc1", - "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9" + "url": "https://ftp.drupal.org/files/projects/shield-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "bf16d39209c0443635aa11e4da62e37262bc66b7" }, "require": { "drupal/core": "~8.0" }, - "require-dev": { - "drupal/entity_reference_revisions": "*" - }, "type": "drupal-module", "extra": { "branch-alias": { "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-rc1", - "datestamp": "1568446684", + "version": "8.x-1.2", + "datestamp": "1519345980", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, - { - "name": "dawehner", - "homepage": "https://www.drupal.org/user/99340" + "name": "axel.rutz", + "homepage": "https://www.drupal.org/user/229048" }, { - "name": "joachim", - "homepage": "https://www.drupal.org/user/107701" + "name": "badjava", + "homepage": "https://www.drupal.org/user/83372" }, { - "name": "kaythay", - "homepage": "https://www.drupal.org/user/2182186" + "name": "chx", + "homepage": "https://www.drupal.org/user/9446" }, { - "name": "rszrama", - "homepage": "https://www.drupal.org/user/49344" + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" }, { - "name": "slashrsm", - "homepage": "https://www.drupal.org/user/744628" + "name": "kalman.hosszu", + "homepage": "https://www.drupal.org/user/267481" }, { - "name": "webflo", - "homepage": "https://www.drupal.org/user/254778" + "name": "pkiraly", + "homepage": "https://www.drupal.org/user/352587" } ], - "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.", - "homepage": "https://www.drupal.org/project/inline_entity_form", + "description": "Creates a general shield for the site.", + "homepage": "https://www.drupal.org/project/shield", "support": { - "source": "https://git.drupalcode.org/project/inline_entity_form" + "source": "https://git.drupalcode.org/project/shield" } } }, - "drupal/lagoon_logs": { - "1.0.0": { - "name": "drupal/lagoon_logs", - "version": "1.0.0", - "version_normalized": "1.0.0.0", + "drupal/simple_oauth": { + "3.14.0": { + "name": "drupal/simple_oauth", + "version": "3.14.0", + "version_normalized": "3.14.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/lagoon_logs.git", - "reference": "8.x-1.0" + "url": "https://git.drupalcode.org/project/simple_oauth.git", + "reference": "8.x-3.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/lagoon_logs-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "7d5a3c306c4bd9106c9011d82e2e4d178dec6ff9" + "url": "https://ftp.drupal.org/files/projects/simple_oauth-8.x-3.14.zip", + "reference": "8.x-3.14", + "shasum": "825f726e7f033150d4702ad773259ab7deb3fb6c" }, "require": { - "drupal/core": "~8.0", - "monolog/monolog": "~1.0" + "drupal/consumers": "^1.2", + "drupal/core": "^8.3", + "league/oauth2-server": "^7.1" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-3.x": "3.x-dev" }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1542589980", + "version": "8.x-3.14", + "datestamp": "1556659981", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "Blaize Kaye", - "homepage": "https://www.drupal.org/u/bomoko", - "role": "Maintainer" + "name": "Mateu Aguiló Bosch", + "homepage": "https://www.drupal.org/user/550110", + "email": "mateu.aguilo.bosch@gmail.com" }, { - "name": "bryangruneberg", - "homepage": "https://www.drupal.org/user/2600012" + "name": "pcambra", + "homepage": "https://www.drupal.org/user/122101" } ], - "description": "Lagoon_logs D8 is a convenience wrapper for monolog.", - "homepage": "https://www.drupal.org/project/lagoon_logs", + "description": "The Simple OAuth module for Drupal", + "homepage": "https://www.drupal.org/project/simple_oauth", "support": { - "source": "https://git.drupalcode.org/project/lagoon_logs" + "source": "https://git.drupalcode.org/project/simple_oauth" } } }, - "drupal/linked_field": { - "1.1.0": { - "name": "drupal/linked_field", - "version": "1.1.0", - "version_normalized": "1.1.0.0", + "drupal/simple_sitemap": { + "3.0.0": { + "name": "drupal/simple_sitemap", + "version": "3.0.0", + "version_normalized": "3.0.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/linked_field.git", - "reference": "8.x-1.1" + "url": "https://git.drupalcode.org/project/simple_sitemap.git", + "reference": "8.x-3.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "99c877b15e814e8275a38d5b161fc5db444dd69d" + "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.0.zip", + "reference": "8.x-3.0", + "shasum": "9c3d1fb78d4693dd4f3258e8870b173650c828cd" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "~8.0", + "ext-xmlwriter": "*" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-3.x": "3.x-dev" }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1493495342", + "version": "8.x-3.0", + "datestamp": "1552141685", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "hubdrop", - "homepage": "https://www.drupal.org/user/2750597" + "name": "Pawel Ginalski (gbyte.co)", + "homepage": "https://www.drupal.org/u/gbyte.co", + "email": "contact@gbyte.co", + "role": "Maintainer" }, { - "name": "yannickoo", - "homepage": "https://www.drupal.org/user/531118" + "name": "gbyte.co", + "homepage": "https://www.drupal.org/user/2381352" } ], - "description": "Adds the functionality to link fields to a specific destination.", - "homepage": "https://www.drupal.org/project/linked_field", + "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.", + "homepage": "https://drupal.org/project/simple_sitemap", "support": { - "source": "https://git.drupalcode.org/project/linked_field" + "source": "https://cgit.drupalcode.org/simple_sitemap", + "issues": "https://drupal.org/project/issues/simple_sitemap", + "irc": "irc://irc.freenode.org/drupal-contribute" } } }, - "drupal/linkit": { - "5.0.0-beta9": { - "name": "drupal/linkit", - "version": "5.0.0-beta9", - "version_normalized": "5.0.0.0-beta9", + "drupal/stage_file_proxy": { + "1.0.0-alpha3": { + "name": "drupal/stage_file_proxy", + "version": "1.0.0-alpha3", + "version_normalized": "1.0.0.0-alpha3", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/linkit.git", - "reference": "8.x-5.0-beta9" + "url": "https://git.drupalcode.org/project/stage_file_proxy.git", + "reference": "8.x-1.0-alpha3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta9.zip", - "reference": "8.x-5.0-beta9", - "shasum": "150291dd87a4f65027492020c28635e2b5249d1a" + "url": "https://ftp.drupal.org/files/projects/stage_file_proxy-8.x-1.0-alpha3.zip", + "reference": "8.x-1.0-alpha3", + "shasum": "0eb1fc47fa1437c2db623a57c2b2cdbecab5b350" }, "require": { "drupal/core": "~8.0" }, - "require-dev": { - "drupal/imce": "*" - }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-5.x": "5.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-5.0-beta9", - "datestamp": "1573783085", + "version": "8.x-1.0-alpha3", + "datestamp": "1555515785", "security-coverage": { "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "message": "Alpha releases are not covered by Drupal security advisories." } } }, @@ -7210,38 +10477,66 @@ ], "authors": [ { - "name": "Emil Stjerneman", - "homepage": "https://stjerneman.com", - "email": "emil@stjerneman.com", - "role": "Maintainer" + "name": "BarisW", + "homepage": "https://www.drupal.org/user/107229" + }, + { + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" + }, + { + "name": "greggles", + "homepage": "https://www.drupal.org/user/36762" + }, + { + "name": "markdorison", + "homepage": "https://www.drupal.org/user/346106" + }, + { + "name": "moshe weitzman", + "homepage": "https://www.drupal.org/user/23" + }, + { + "name": "msonnabaum", + "homepage": "https://www.drupal.org/user/75278" + }, + { + "name": "netaustin", + "homepage": "https://www.drupal.org/user/199298" + }, + { + "name": "robwilmshurst", + "homepage": "https://www.drupal.org/user/144488" } ], - "description": "Linkit - Enriched linking experience", - "homepage": "http://drupal.org/project/linkit", + "description": "Provides stage_file_proxy module.", + "homepage": "https://www.drupal.org/project/stage_file_proxy", "support": { - "source": "http://cgit.drupalcode.org/linkit", - "issues": "http://drupal.org/project/linkit" + "source": "https://git.drupalcode.org/project/stage_file_proxy" } } - }, - "drupal/login_security": { - "1.5.0": { - "name": "drupal/login_security", - "version": "1.5.0", - "version_normalized": "1.5.0.0", + }, + "drupal/swiftmailer": { + "1.0.0-beta2": { + "name": "drupal/swiftmailer", + "version": "1.0.0-beta2", + "version_normalized": "1.0.0.0-beta2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/login_security.git", - "reference": "8.x-1.5" + "url": "https://git.drupalcode.org/project/swiftmailer.git", + "reference": "8.x-1.0-beta2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/login_security-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "f903d4335282a178f6c73bb4f580ac876852ba73" + "url": "https://ftp.drupal.org/files/projects/swiftmailer-8.x-1.0-beta2.zip", + "reference": "8.x-1.0-beta2", + "shasum": "a63a91e7816a06bf8e52ac9b5e48a892a1e6b1d4" }, "require": { - "drupal/core": "*" + "drupal/core": "~8.0", + "drupal/mailsystem": "*", + "html2text/html2text": "~4.0.1", + "swiftmailer/swiftmailer": "~5.4.5" }, "type": "drupal-module", "extra": { @@ -7249,78 +10544,66 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.5", - "datestamp": "1528723384", + "version": "8.x-1.0-beta2", + "datestamp": "1519655459", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "cYu", - "homepage": "https://www.drupal.org/user/202205" - }, - { - "name": "deekayen", - "homepage": "https://www.drupal.org/user/972" - }, - { - "name": "deetergp", - "homepage": "https://www.drupal.org/user/1134002" - }, - { - "name": "ilo", - "homepage": "https://www.drupal.org/user/118449" + "name": "B-Prod", + "homepage": "https://www.drupal.org/user/407852" }, { - "name": "jribeiro", - "homepage": "https://www.drupal.org/user/1975716" + "name": "sbrattla", + "homepage": "https://www.drupal.org/user/53422" }, { - "name": "shrop", - "homepage": "https://www.drupal.org/user/14767" + "name": "webflo", + "homepage": "https://www.drupal.org/user/254778" } ], - "description": "Enable security options in the login flow of the site.", - "homepage": "https://www.drupal.org/project/login_security", + "description": "Swiftmailer", + "homepage": "https://www.drupal.org/project/swiftmailer", "support": { - "source": "https://git.drupalcode.org/project/login_security" + "source": "https://git.drupalcode.org/project/swiftmailer" } } }, - "drupal/mailsystem": { - "4.2.0": { - "name": "drupal/mailsystem", - "version": "4.2.0", - "version_normalized": "4.2.0.0", + "drupal/token": { + "1.5.0": { + "name": "drupal/token", + "version": "1.5.0", + "version_normalized": "1.5.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/mailsystem.git", - "reference": "8.x-4.2" + "url": "https://git.drupalcode.org/project/token.git", + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.2.zip", - "reference": "8.x-4.2", - "shasum": "51d3f4831cdc3fd2748efc750d4946ddb5b50c3c" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.5" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-4.x": "4.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-4.2", - "datestamp": "1574194688", + "version": "8.x-1.5", + "datestamp": "1577708583", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7329,7 +10612,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -7337,64 +10620,67 @@ "homepage": "https://www.drupal.org/user/214652" }, { - "name": "Les Lim", - "homepage": "https://www.drupal.org/user/84263" + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" }, { - "name": "Manuel Garcia", - "homepage": "https://www.drupal.org/user/213194" + "name": "eaton", + "homepage": "https://www.drupal.org/user/16496" }, { - "name": "Nafes", - "homepage": "https://www.drupal.org/user/2489926" + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" }, { - "name": "miro_dietiker", - "homepage": "https://www.drupal.org/user/227761" + "name": "greggles", + "homepage": "https://www.drupal.org/user/36762" }, { - "name": "pillarsdotnet", - "homepage": "https://www.drupal.org/user/36148" + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" } ], - "description": "Mail System", - "homepage": "https://www.drupal.org/project/mailsystem", + "description": "Provides a user interface for the Token API and some missing core tokens.", + "homepage": "https://www.drupal.org/project/token", "support": { - "source": "https://git.drupalcode.org/project/mailsystem" + "source": "https://git.drupalcode.org/project/token" } - } - }, - "drupal/memcache": { - "2.0.0": { - "name": "drupal/memcache", - "version": "2.0.0", - "version_normalized": "2.0.0.0", + }, + "1.6.0": { + "name": "drupal/token", + "version": "1.6.0", + "version_normalized": "1.6.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/memcache.git", - "reference": "8.x-2.0" + "url": "https://git.drupalcode.org/project/token.git", + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/memcache-8.x-2.0.zip", - "reference": "8.x-2.0", - "shasum": "78c09097c42781343f4069b4823dce7acd98a8b1" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "22039a3d927220609e708932ac5c501b90ca4925" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-2.x": "2.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-2.0", - "datestamp": "1540546681", + "version": "8.x-1.6", + "datestamp": "1577708583", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -7403,60 +10689,55 @@ ], "authors": [ { - "name": "Fabianx", - "homepage": "https://www.drupal.org/user/693738" - }, - { - "name": "Jeremy", - "homepage": "https://www.drupal.org/user/409" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "name": "bdragon", - "homepage": "https://www.drupal.org/user/53081" + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" }, { - "name": "catch", - "homepage": "https://www.drupal.org/user/35733" + "name": "eaton", + "homepage": "https://www.drupal.org/user/16496" }, { - "name": "damiankloip", - "homepage": "https://www.drupal.org/user/1037976" + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" }, { - "name": "jvandyk", - "homepage": "https://www.drupal.org/user/2375" + "name": "greggles", + "homepage": "https://www.drupal.org/user/36762" }, { - "name": "robertDouglass", - "homepage": "https://www.drupal.org/user/5449" + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" } ], - "description": "High performance integration with memcache.", - "homepage": "http://drupal.org/project/memcache", + "description": "Provides a user interface for the Token API, some missing core tokens.", + "homepage": "https://www.drupal.org/project/token", "support": { - "source": "https://git.drupalcode.org/project/memcache", - "issues": "https://www.drupal.org/project/issues/memcache" + "source": "https://git.drupalcode.org/project/token" } } }, - "drupal/menu_block": { - "1.5.0": { - "name": "drupal/menu_block", - "version": "1.5.0", - "version_normalized": "1.5.0.0", + "drupal/update_notifications_disable": { + "1.0.0": { + "name": "drupal/update_notifications_disable", + "version": "1.0.0", + "version_normalized": "1.0.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/menu_block.git", - "reference": "8.x-1.5" + "url": "https://git.drupalcode.org/project/update_notifications_disable.git", + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b" + "url": "https://ftp.drupal.org/files/projects/update_notifications_disable-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "415211f61ac96621822312e85db567945883195e" }, "require": { - "drupal/core": "*" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { @@ -7464,8 +10745,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.5", - "datestamp": "1525200184", + "version": "8.x-1.0", + "datestamp": "1495750385", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7478,48 +10759,35 @@ ], "authors": [ { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "JohnAlbin", - "homepage": "https://www.drupal.org/user/32095" - }, - { - "name": "joelpittet", - "homepage": "https://www.drupal.org/user/160302" - }, - { - "name": "kim.pepper", - "homepage": "https://www.drupal.org/user/370574" + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" }, { - "name": "rrrob", - "homepage": "https://www.drupal.org/user/273533" + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" } ], - "description": "Provides configurable blocks of menu links.", - "homepage": "https://www.drupal.org/project/menu_block", + "homepage": "https://www.drupal.org/project/update_notifications_disable", "support": { - "source": "https://git.drupalcode.org/project/menu_block" + "source": "https://git.drupalcode.org/project/update_notifications_disable" } } }, - "drupal/menu_trail_by_path": { - "1.1.0": { - "name": "drupal/menu_trail_by_path", - "version": "1.1.0", - "version_normalized": "1.1.0.0", + "drupal/username_enumeration_prevention": { + "1.0.0-beta2": { + "name": "drupal/username_enumeration_prevention", + "version": "1.0.0-beta2", + "version_normalized": "1.0.0.0-beta2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/menu_trail_by_path.git", - "reference": "8.x-1.1" + "url": "https://git.drupalcode.org/project/username_enumeration_prevention.git", + "reference": "8.x-1.0-beta2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "52261e3ad3630e88bfc2a147e3056844f5584f62" + "url": "https://ftp.drupal.org/files/projects/username_enumeration_prevention-8.x-1.0-beta2.zip", + "reference": "8.x-1.0-beta2", + "shasum": "76567c56a86fc2f2510cf204d74b4ed0aa5a3fbd" }, "require": { "drupal/core": "~8.0" @@ -7530,81 +10798,68 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1482006782", + "version": "8.x-1.0-beta2", + "datestamp": "1533049984", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "SeriousMatters", - "homepage": "https://www.drupal.org/user/290439" - }, - { - "name": "davy-r", - "homepage": "https://www.drupal.org/user/3278771" - }, - { - "name": "redndahead", - "homepage": "https://www.drupal.org/user/160320" + "name": "nicksanta", + "homepage": "https://www.drupal.org/user/87915" } ], - "description": "Expand menus and set active-trail according to the current path.", - "homepage": "https://www.drupal.org/project/menu_trail_by_path", + "description": "Prevents username enumeration on password reset and user pages.", + "homepage": "https://www.drupal.org/project/username_enumeration_prevention", "support": { - "source": "https://git.drupalcode.org/project/menu_trail_by_path" + "source": "https://git.drupalcode.org/project/username_enumeration_prevention" } } }, - "drupal/metatag": { - "1.10.0": { - "name": "drupal/metatag", - "version": "1.10.0", - "version_normalized": "1.10.0.0", + "drupal/video_embed_field": { + "2.0.0": { + "name": "drupal/video_embed_field", + "version": "2.0.0", + "version_normalized": "2.0.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "8.x-1.10" + "url": "https://git.drupalcode.org/project/video_embed_field.git", + "reference": "8.x-2.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc" + "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0.zip", + "reference": "8.x-2.0", + "shasum": "e864f090b3cb9405376ca324d81ace83613e2019" }, "require": { - "drupal/core": "*", - "drupal/token": "^1.0" + "drupal/core": "*" }, "require-dev": { - "drupal/devel": "^2.0", - "drupal/metatag_dc": "*", - "drupal/metatag_open_graph": "*", - "drupal/page_manager": "^4.0", - "drupal/redirect": "^1.0", - "drupal/restui": "^1.0", - "drupal/schema_metatag": "^1.0", - "drupal/schema_web_page": "*" + "drupal/colorbox": "*", + "drupal/media_entity": "*", + "drupal/media_entity_embeddable_video": "*" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-1.10", - "datestamp": "1567099985", + "version": "8.x-1.x", + "datestamp": "1557724385", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" - } + }, + "package": "Field types" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -7613,67 +10868,73 @@ ], "authors": [ { - "name": "See contributors", - "homepage": "https://www.drupal.org/node/640498/committers", - "role": "Developer" + "name": "Sam152", + "homepage": "https://www.drupal.org/user/1485048" }, { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" + "name": "jec006", + "homepage": "https://www.drupal.org/user/855980" + }, + { + "name": "plopesc", + "homepage": "https://www.drupal.org/user/282415" } ], - "description": "Manage meta tags for all entities.", - "homepage": "https://www.drupal.org/project/metatag", - "keywords": [ - "Drupal", - "seo" - ], + "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.", + "homepage": "https://www.drupal.org/project/video_embed_field", "support": { - "source": "http://cgit.drupalcode.org/metatag", - "issues": "http://drupal.org/project/issues/metatag" + "source": "https://git.drupalcode.org/project/video_embed_field" } - }, - "1.9.0": { - "name": "drupal/metatag", - "version": "1.9.0", - "version_normalized": "1.9.0.0", + } + }, + "drupal/webform": { + "5.1.0": { + "name": "drupal/webform", + "version": "5.1.0", + "version_normalized": "5.1.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "8.x-1.9" + "url": "https://git.drupalcode.org/project/webform.git", + "reference": "8.x-5.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "230960752c5afa17337fb69bae853bccb1a26ecd" + "url": "https://ftp.drupal.org/files/projects/webform-8.x-5.1.zip", + "reference": "8.x-5.1", + "shasum": "d04743f078dc154685f9532253e6b5ea8dda1a56" }, "require": { - "drupal/core": "*", - "drupal/token": "^1.0" + "drupal/core": "*" }, "require-dev": { - "drupal/devel": "^1.0", - "drupal/metatag_dc": "*", - "drupal/metatag_open_graph": "*", - "drupal/page_manager": "^4.0", - "drupal/redirect": "^1.0", - "drupal/restui": "^1.0", - "drupal/schema_metatag": "^1.0", - "drupal/schema_web_page": "*" + "drupal/address": "~1.4", + "drupal/chosen": "~2.6", + "drupal/devel": "*", + "drupal/jsonapi": "~2.0", + "drupal/select2": "~1.1", + "drupal/token": "~1.3", + "drupal/webform_access": "*", + "drupal/webform_node": "*", + "drupal/webform_scheduled_email": "*", + "drupal/webform_ui": "*" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-5.x": "5.x-dev" }, "drupal": { - "version": "8.x-1.9", - "datestamp": "1567099985", + "version": "8.x-5.1", + "datestamp": "1557418608", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -7682,3460 +10943,3289 @@ ], "authors": [ { - "name": "See contributors", - "homepage": "https://www.drupal.org/node/640498/committers", - "role": "Developer" + "name": "Jacob Rockowitz (jrockowitz)", + "homepage": "https://www.drupal.org/u/jrockowitz", + "role": "Maintainer" }, { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" + "name": "Alexander Trotsenko (bucefal91)", + "homepage": "https://www.drupal.org/u/bucefal91", + "role": "Co-maintainer" + }, + { + "name": "bucefal91", + "homepage": "https://www.drupal.org/user/504128" + }, + { + "name": "fenstrat", + "homepage": "https://www.drupal.org/user/362649" + }, + { + "name": "jrockowitz", + "homepage": "https://www.drupal.org/user/371407" + }, + { + "name": "podarok", + "homepage": "https://www.drupal.org/user/116002" + }, + { + "name": "quicksketch", + "homepage": "https://www.drupal.org/user/35821" + }, + { + "name": "sanchiz", + "homepage": "https://www.drupal.org/user/1671246" + }, + { + "name": "tedbow", + "homepage": "https://www.drupal.org/user/240860" + }, + { + "name": "torotil", + "homepage": "https://www.drupal.org/user/865256" } ], - "description": "Manage meta tags for all entities.", - "homepage": "https://www.drupal.org/project/metatag", - "keywords": [ - "Drupal", - "seo" - ], + "description": "Enables the creation of webforms and questionnaires.", + "homepage": "https://drupal.org/project/webform", "support": { - "source": "http://cgit.drupalcode.org/metatag", - "issues": "http://drupal.org/project/issues/metatag" + "source": "http://cgit.drupalcode.org/webform", + "issues": "https://www.drupal.org/project/issues/webform?version=8.x", + "docs": "https://www.drupal.org/docs/8/modules/webform", + "forum": "https://drupal.stackexchange.com/questions/tagged/webform" } } }, - "drupal/modifiers": { - "1.3.0": { - "name": "drupal/modifiers", - "version": "1.3.0", - "version_normalized": "1.3.0.0", + "drush/drush": { + "9.7.1": { + "name": "drush/drush", + "version": "9.7.1", + "version_normalized": "9.7.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/modifiers.git", - "reference": "8.x-1.3" + "url": "https://github.com/drush-ops/drush.git", + "reference": "6f9a8d235daec06fd6f47b2d84da675750566479" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/modifiers-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "5255690f5e0e1186755ada8296713f8d076de3e4" + "url": "https://api.github.com/repos/drush-ops/drush/zipball/6f9a8d235daec06fd6f47b2d84da675750566479", + "reference": "6f9a8d235daec06fd6f47b2d84da675750566479", + "shasum": "" }, "require": { - "drupal/core": "~8.0" + "chi-teck/drupal-code-generator": "^1.28.1", + "composer/semver": "^1.4", + "consolidation/annotated-command": "^2.12", + "consolidation/config": "^1.2", + "consolidation/filter-via-dot-access-data": "^1", + "consolidation/output-formatters": "^3.3.1", + "consolidation/robo": "^1.4.6", + "consolidation/site-alias": "^3.0.0@stable", + "consolidation/site-process": "^2.0.3", + "ext-dom": "*", + "grasmash/yaml-expander": "^1.1.1", + "league/container": "~2", + "php": ">=5.6.0", + "psr/log": "~1.0", + "psy/psysh": "~0.6", + "symfony/console": "^3.4", + "symfony/event-dispatcher": "^3.4", + "symfony/finder": "^3.4 || ^4.0", + "symfony/process": "^3.4", + "symfony/var-dumper": "^3.4 || ^4.0", + "symfony/yaml": "^3.4", + "webflo/drupal-finder": "^1.1", + "webmozart/path-util": "^2.1.0" }, - "suggest": { - "drupal/look": "Provides Look entity management for usage with Modifiers.", - "drupal/modifiers_pack": "Provides a set of basic Modifier plugins." + "require-dev": { + "composer/installers": "^1.2", + "cweagans/composer-patches": "~1.0", + "drupal/alinks": "1.0.0", + "drupal/devel": "^2", + "drupal/empty_theme": "1.0", + "g1a/composer-test-scenarios": "^3", + "lox/xhprof": "dev-master", + "phpunit/phpunit": "^4.8.36 || ^6.1", + "squizlabs/php_codesniffer": "^2.7 || ^3", + "vlucas/phpdotenv": "^2.4", + "webflo/drupal-core-require-dev": "8.7.x-dev", + "webflo/drupal-core-strict": "8.7.x-dev" }, - "type": "drupal-module", + "time": "2019-06-30T19:46:39+00:00", + "bin": [ + "drush" + ], + "type": "library", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" + "installer-paths": { + "sut/core": [ + "type:drupal-core" + ], + "sut/libraries/{$name}": [ + "type:drupal-library" + ], + "sut/modules/unish/{$name}": [ + "drupal/devel" + ], + "sut/themes/unish/{$name}": [ + "drupal/empty_theme" + ], + "sut/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "sut/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "sut/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "sut/drush/contrib/{$name}": [ + "type:drupal-drush" + ] }, - "drupal": { - "version": "8.x-1.3", - "datestamp": "1556650981", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "scenarios": { + "php5": { + "config": { + "platform": { + "php": "5.6.38" + } + }, + "require-dev": { + "webflo/drupal-core-strict": "8.6.x-dev", + "webflo/drupal-core-require-dev": "8.6.x-dev" + } } + }, + "branch-alias": { + "dev-master": "9.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Drush\\": "src/", + "Drush\\Internal\\": "src/internal-forks" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "honzapara", - "homepage": "https://www.drupal.org/user/3272000" + "name": "Moshe Weitzman", + "email": "weitzman@tejasa.com" }, { - "name": "kyberman", - "homepage": "https://www.drupal.org/user/402924" + "name": "Owen Barton", + "email": "drupal@owenbarton.com" }, { - "name": "martin_klima", - "homepage": "https://www.drupal.org/user/2784335" + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" }, { - "name": "murrayw", - "homepage": "https://www.drupal.org/user/595658" + "name": "Jonathan Araña Cruz", + "email": "jonhattan@faita.net" }, { - "name": "radimklaska", - "homepage": "https://www.drupal.org/user/229127" + "name": "Jonathan Hedstrom", + "email": "jhedstrom@gmail.com" + }, + { + "name": "Christopher Gervais", + "email": "chris@ergonlogic.com" + }, + { + "name": "Dave Reid", + "email": "dave@davereid.net" + }, + { + "name": "Damian Lee", + "email": "damiankloip@googlemail.com" } ], - "description": "Integrates Modifier plugins into the page and into entities.", - "homepage": "https://www.drupal.org/project/modifiers", - "support": { - "source": "https://github.com/morpht/modifiers", - "issues": "https://www.drupal.org/project/issues/modifiers" - } + "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.", + "homepage": "http://www.drush.org" } }, - "drupal/module_filter": { - "3.1.0": { - "name": "drupal/module_filter", - "version": "3.1.0", - "version_normalized": "3.1.0.0", + "easyrdf/easyrdf": { + "0.9.1": { + "name": "easyrdf/easyrdf", + "version": "0.9.1", + "version_normalized": "0.9.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/module_filter.git", - "reference": "8.x-3.1" + "url": "https://github.com/njh/easyrdf.git", + "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/module_filter-8.x-3.1.zip", - "reference": "8.x-3.1", - "shasum": "39d627ce60280ae54bcf9beae217b85cce1969e4" + "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566", + "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566", + "shasum": "" }, "require": { - "drupal/core": "~8.0" + "ext-mbstring": "*", + "ext-pcre": "*", + "php": ">=5.2.8" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-3.x": "3.x-dev" - }, - "drupal": { - "version": "8.x-3.1", - "datestamp": "1507650844", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "require-dev": { + "phpunit/phpunit": "~3.5", + "sami/sami": "~1.4", + "squizlabs/php_codesniffer": "~1.4.3" + }, + "suggest": { + "ml/json-ld": "~1.0" + }, + "time": "2015-02-27T09:45:49+00:00", + "type": "library", + "autoload": { + "psr-0": { + "EasyRdf_": "lib/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "BSD-3-Clause" ], "authors": [ { - "name": "greenSkin", - "homepage": "https://www.drupal.org/user/173855" - }, - { - "name": "realityloop", - "homepage": "https://www.drupal.org/user/139189" + "name": "Nicholas Humfrey", + "email": "njh@aelius.com", + "homepage": "http://www.aelius.com/njh/", + "role": "Developer" }, { - "name": "shumushin", - "homepage": "https://www.drupal.org/user/22093" + "name": "Alexey Zakhlestin", + "email": "indeyets@gmail.com", + "role": "Developer" } ], - "description": "Filter the modules list.", - "homepage": "https://www.drupal.org/project/module_filter", - "support": { - "source": "https://git.drupalcode.org/project/module_filter" - } + "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.", + "homepage": "http://www.easyrdf.org/", + "keywords": [ + "Linked Data", + "RDF", + "Semantic Web", + "Turtle", + "rdfa", + "sparql" + ] } }, - "drupal/page_manager": { - "4.0.0-beta4": { - "name": "drupal/page_manager", - "version": "4.0.0-beta4", - "version_normalized": "4.0.0.0-beta4", + "egulias/email-validator": { + "2.1.11": { + "name": "egulias/email-validator", + "version": "2.1.11", + "version_normalized": "2.1.11.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/page_manager.git", - "reference": "8.x-4.0-beta4" + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-beta4.zip", - "reference": "8.x-4.0-beta4", - "shasum": "f77d57fa0f0a734c26d9119850672a51e2760d5f" + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23", + "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23", + "shasum": "" }, "require": { - "drupal/core": "~8.5", - "drupal/ctools": "~3.1" + "doctrine/lexer": "^1.0.1", + "php": ">= 5.5" }, - "type": "drupal-module", + "require-dev": { + "dominicsayers/isemail": "dev-master", + "phpunit/phpunit": "^4.8.35||^5.7||^6.0", + "satooshi/php-coveralls": "^1.0.1", + "symfony/phpunit-bridge": "^4.4@dev" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "time": "2019-08-13T17:33:27+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-4.x": "4.x-dev" - }, - "drupal": { - "version": "8.x-4.0-beta4", - "datestamp": "1559135889", - "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" - } + "dev-master": "2.1.x-dev" } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Tim Plunkett", - "homepage": "https://www.drupal.org/u/tim.plunkett", - "role": "Maintainer" - }, - { - "name": "dsnopek", - "homepage": "https://www.drupal.org/user/266527" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "EmailValidator" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ { - "name": "manuel.adan", - "homepage": "https://www.drupal.org/user/516420" + "name": "Eduardo Gulias Davis" } ], - "description": "Provides a way to place blocks on a custom page.", - "homepage": "https://www.drupal.org/project/page_manager", - "support": { - "source": "https://git.drupal.org/project/page_manager.git", - "issues": "https://www.drupal.org/project/issues/page_manager", - "irc": "irc://irc.freenode.org/drupal-contribute" - } - } - }, - "drupal/panelizer": { - "4.1.0": { - "name": "drupal/panelizer", - "version": "4.1.0", - "version_normalized": "4.1.0.0", + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ] + }, + "2.1.14": { + "name": "egulias/email-validator", + "version": "2.1.14", + "version_normalized": "2.1.14.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/panelizer.git", - "reference": "8.x-4.1" + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "c4b8d12921999d8a561004371701dbc2e05b5ece" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/panelizer-8.x-4.1.zip", - "reference": "8.x-4.1", - "shasum": "056f236f171305c32d5cfecbfb77a5c7398749d8" + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c4b8d12921999d8a561004371701dbc2e05b5ece", + "reference": "c4b8d12921999d8a561004371701dbc2e05b5ece", + "shasum": "" }, "require": { - "drupal/core": "*", - "drupal/ctools": ">=3.0.0-beta1", - "drupal/ctools_block": "*", - "drupal/panels": ">=4.0.0-alpha1", - "drupal/panels_ipe": ">=4.0.0-alpha1" + "doctrine/lexer": "^1.0.1", + "php": ">=5.5" }, - "type": "drupal-module", + "require-dev": { + "dominicsayers/isemail": "^3.0.7", + "phpunit/phpunit": "^4.8.36|^7.5.15", + "satooshi/php-coveralls": "^1.0.1" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "time": "2020-01-05T14:11:20+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-4.x": "4.x-dev" - }, - "drupal": { - "version": "8.x-4.1", - "datestamp": "1525714313", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "2.1.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "EmailValidator" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "Damien McKenna", - "homepage": "https://www.drupal.org/u/damienmckenna" - }, - { - "name": "Kris Vanderwater", - "homepage": "https://www.drupal.org/u/eclipsegc" - }, - { - "name": "David Snopek", - "homepage": "https://www.drupal.org/u/dsnopek" - }, - { - "name": "Jakob Perry", - "homepage": "https://www.drupal.org/u/japerry" - }, - { - "name": "Earl Miles", - "homepage": "https://www.drupal.org/u/merlinofchaos" - }, - { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/1072922/committers" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "tim.plunkett", - "homepage": "https://www.drupal.org/user/241634" + "name": "Eduardo Gulias Davis" } ], - "description": "Allow any entity view mode to be rendered using a Panels display.", - "homepage": "https://www.drupal.org/project/panelizer", - "support": { - "source": "http://git.drupal.org/project/panelizer.git", - "issues": "https://www.drupal.org/project/issues/panelizer", - "irc": "irc://irc.freenode.org/drupal-scotch" - } + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ] } }, - "drupal/panels": { - "4.4.0": { - "name": "drupal/panels", - "version": "4.4.0", - "version_normalized": "4.4.0.0", + "ezyang/htmlpurifier": { + "v4.12.0": { + "name": "ezyang/htmlpurifier", + "version": "v4.12.0", + "version_normalized": "4.12.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/panels.git", - "reference": "8.x-4.4" + "url": "https://github.com/ezyang/htmlpurifier.git", + "reference": "a617e55bc62a87eec73bd456d146d134ad716f03" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.4.zip", - "reference": "8.x-4.4", - "shasum": "5fca771d5a6d25dc955192cab95a603f00cde8ee" + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a617e55bc62a87eec73bd456d146d134ad716f03", + "reference": "a617e55bc62a87eec73bd456d146d134ad716f03", + "shasum": "" }, "require": { - "drupal/core": "^8.3", - "drupal/ctools": ">=3.0.0" + "php": ">=5.2" }, "require-dev": { - "drupal/page_manager": "*" + "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-4.x": "4.x-dev" + "time": "2019-10-28T03:44:26+00:00", + "type": "library", + "autoload": { + "psr-0": { + "HTMLPurifier": "library/" }, - "drupal": { - "version": "8.x-4.4", - "datestamp": "1553565784", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } + "files": [ + "library/HTMLPurifier.composer.php" + ] }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "LGPL-2.1-or-later" ], "authors": [ { - "name": "Jakob Perry", - "homepage": "https://www.drupal.org/u/japerry" - }, - { - "name": "Samuel Mortenson", - "homepage": "https://www.drupal.org/u/samuel.mortenson" - }, - { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/74958/committers" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "joelpittet", - "homepage": "https://www.drupal.org/user/160302" - }, - { - "name": "merlinofchaos", - "homepage": "https://www.drupal.org/user/26979" - }, - { - "name": "neclimdul", - "homepage": "https://www.drupal.org/user/48673" - }, - { - "name": "samuel.mortenson", - "homepage": "https://www.drupal.org/user/2582268" - }, - { - "name": "tim.plunkett", - "homepage": "https://www.drupal.org/user/241634" + "name": "Edward Z. Yang", + "email": "admin@htmlpurifier.org", + "homepage": "http://ezyang.com" } ], - "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.", - "homepage": "https://www.drupal.org/project/panels", - "support": { - "source": "http://git.drupal.org/project/panels.git", - "issues": "https://www.drupal.org/project/issues/panels", - "irc": "irc://irc.freenode.org/drupal-scotch" - } + "description": "Standards compliant HTML filter written in PHP", + "homepage": "http://htmlpurifier.org/", + "keywords": [ + "html" + ] } }, - "drupal/panels_ipe": { - "4.4.0": { - "name": "drupal/panels_ipe", - "version": "4.4.0", - "version_normalized": "4.4.0.0", + "fabpot/goutte": { + "v3.2.3": { + "name": "fabpot/goutte", + "version": "v3.2.3", + "version_normalized": "3.2.3.0", + "source": { + "type": "git", + "url": "https://github.com/FriendsOfPHP/Goutte.git", + "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8", + "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8", + "shasum": "" + }, "require": { - "drupal/core": "*", - "drupal/panels": "self.version" + "guzzlehttp/guzzle": "^6.0", + "php": ">=5.5.0", + "symfony/browser-kit": "~2.1|~3.0|~4.0", + "symfony/css-selector": "~2.1|~3.0|~4.0", + "symfony/dom-crawler": "~2.1|~3.0|~4.0" }, - "type": "metapackage", + "require-dev": { + "symfony/phpunit-bridge": "^3.3 || ^4" + }, + "time": "2018-06-29T15:13:57+00:00", + "type": "application", "extra": { "branch-alias": { - "dev-4.x": "4.x-dev" - }, - "drupal": { - "version": "8.x-4.4", - "datestamp": "1553565784", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "3.2-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Goutte\\": "Goutte" + }, + "exclude-from-classmap": [ + "Goutte/Tests" + ] + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "EclipseGc", - "homepage": "https://www.drupal.org/user/61203" - }, - { - "name": "Letharion", - "homepage": "https://www.drupal.org/user/373603" - }, - { - "name": "esmerel", - "homepage": "https://www.drupal.org/user/164022" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "joelpittet", - "homepage": "https://www.drupal.org/user/160302" - }, - { - "name": "merlinofchaos", - "homepage": "https://www.drupal.org/user/26979" - }, - { - "name": "neclimdul", - "homepage": "https://www.drupal.org/user/48673" - }, - { - "name": "samuel.mortenson", - "homepage": "https://www.drupal.org/user/2582268" - }, - { - "name": "tim.plunkett", - "homepage": "https://www.drupal.org/user/241634" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" } ], - "description": "Panels In-place editor.", - "homepage": "https://www.drupal.org/project/panels", - "support": { - "source": "https://git.drupalcode.org/project/panels" - } + "description": "A simple PHP Web Scraper", + "homepage": "https://github.com/FriendsOfPHP/Goutte", + "keywords": [ + "scraper" + ] } }, - "drupal/paragraphs": { - "1.6.0": { - "name": "drupal/paragraphs", - "version": "1.6.0", - "version_normalized": "1.6.0.0", + "govcms/govcms": { + "1.x-dev": { + "name": "govcms/govcms", + "version": "1.x-dev", + "version_normalized": "1.9999999.9999999.9999999-dev", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/paragraphs.git", - "reference": "8.x-1.6" + "url": "https://github.com/govCMS/govCMS8.git", + "reference": "76cfc8895ac8df740e4143a1addd14337b7a3ee2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "cd93e244f3a78dabdcf362adc31e59aad25b3fae" + "url": "https://api.github.com/repos/govCMS/govCMS8/zipball/76cfc8895ac8df740e4143a1addd14337b7a3ee2", + "reference": "76cfc8895ac8df740e4143a1addd14337b7a3ee2", + "shasum": "" }, "require": { - "drupal/core": "~8", - "drupal/entity_reference_revisions": "~1.3" + "bower-asset/chosen": "1.8.7", + "bower-asset/dropzone": "5.5.0", + "cweagans/composer-patches": "^1.6", + "drupal-composer/drupal-scaffold": "^2.4", + "drupal/admin_toolbar": "2.0", + "drupal/adminimal_admin_toolbar": "1.9.0", + "drupal/adminimal_theme": "1.4", + "drupal/chosen": "2.6.0", + "drupal/components": "1.0.0", + "drupal/config_filter": "1.4", + "drupal/config_ignore": "2.1", + "drupal/config_perms": "1.2.0", + "drupal/config_split": "1.4", + "drupal/config_update": "1.6", + "drupal/consumers": "1.9", + "drupal/contact_storage": "1.0-beta9", + "drupal/context": "4.0-beta2", + "drupal/core-recommended": "8.8.1", + "drupal/ctools": "3.2.0", + "drupal/devel": "2.0", + "drupal/diff": "1.0-rc2", + "drupal/dropzonejs": "2.0.0-alpha3", + "drupal/ds": "3.2", + "drupal/dynamic_entity_reference": "1.7.0", + "drupal/entity_browser": "2.1", + "drupal/entity_class_formatter": "1.1.0", + "drupal/entity_embed": "1.0", + "drupal/entity_reference_display": "1.2.0", + "drupal/entity_reference_revisions": "1.6", + "drupal/environment_indicator": "3.5", + "drupal/events_log_track": "1.1", + "drupal/facets": "1.3", + "drupal/features": "3.8", + "drupal/field_group": "3.0-rc1", + "drupal/focal_point": "1.2", + "drupal/google_analytics": "3.0", + "drupal/govcms8_ui": "1.0.0-alpha1", + "drupal/govcms8_uikit_starter": "1.0-alpha2", + "drupal/graphql": "3.0.0-rc2", + "drupal/honeypot": "1.29", + "drupal/inline_entity_form": "1.0-rc1", + "drupal/linked_field": "1.1.0", + "drupal/linkit": "5.0-beta9", + "drupal/login_security": "1.5", + "drupal/memcache": "2.0", + "drupal/menu_block": "1.5", + "drupal/menu_trail_by_path": "1.1", + "drupal/metatag": "1.9", + "drupal/modifiers": "1.3", + "drupal/module_filter": "3.1", + "drupal/page_manager": "4.0-beta4", + "drupal/panelizer": "4.1", + "drupal/panels": "4.4.0", + "drupal/paragraphs": "1.6", + "drupal/password_policy": "3.0-alpha4", + "drupal/pathauto": "1.6.0", + "drupal/permissions_by_term": "2.12", + "drupal/recaptcha": "2.4", + "drupal/redirect": "1.3", + "drupal/restui": "1.16.0", + "drupal/robotstxt": "1.2", + "drupal/scheduled_transitions": "1.0.0-rc1", + "drupal/search_api": "1.11", + "drupal/search_api_attachments": "1.0-beta13", + "drupal/search_api_solr": "2.2", + "drupal/seckit": "1.1", + "drupal/shield": "1.2", + "drupal/simple_oauth": "3.14", + "drupal/simple_sitemap": "3.0", + "drupal/swiftmailer": "1.0-beta2", + "drupal/token": "1.5", + "drupal/update_notifications_disable": "1.0", + "drupal/username_enumeration_prevention": "1.0-beta2", + "drupal/video_embed_field": "2.0", + "drupal/webform": "5.1", + "oomphinc/composer-installers-extender": "^1.1", + "php": "^7.1", + "swiftmailer/swiftmailer": "5.4.12", + "symfony/phpunit-bridge": "^3.4.6", + "zaporylie/composer-drupal-optimizations": "^1.1" + }, + "conflict": { + "drupal/core": "7.*", + "drush/drush": "<8.1.10" }, "require-dev": { - "drupal/block_field": "~1.0", - "drupal/ctools": "3.x-dev", - "drupal/diff": "~1.0", - "drupal/entity_browser": "1.x-dev", - "drupal/entity_usage": "2.x-dev", - "drupal/field_group": "~1.0", - "drupal/inline_entity_form": "~1.0", - "drupal/paragraphs-paragraphs_library": "*", - "drupal/replicate": "~1.0", - "drupal/search_api": "~1.0", - "drupal/search_api_db": "*" + "grasmash/drupal-security-warning": "^1.1", + "phing/phing": "^2.16" }, "suggest": { - "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module" + "hirak/prestissimo": "^0.3" }, - "type": "drupal-module", + "time": "2020-01-16T23:02:42+00:00", + "type": "drupal-profile", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" + "drupal-scaffold": { + "initial": { + "sites/default/default.services.yml": "sites/default/services.yml", + "sites/default/default.settings.php": "sites/default/settings.php" + }, + "excludes": [ + "sites/development.services.yml" + ] }, - "drupal": { - "version": "8.x-1.6", - "datestamp": "1553087589", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "installer-types": [ + "bower-asset", + "npm-asset" + ], + "installer-paths": { + "docroot/core": [ + "type:drupal-core" + ], + "docroot/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "docroot/modules/custom/{$name}": [ + "type:drupal-custom-module" + ], + "docroot/profiles/{$name}": [ + "type:drupal-profile" + ], + "docroot/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "docroot/themes/custom/{$name}": [ + "type:drupal-custom-theme" + ], + "docroot/libraries/{$name}": [ + "type:drupal-library", + "type:bower-asset", + "type:npm-asset" + ], + "drush/contrib/{$name}": [ + "type:drupal-drush" + ] + }, + "enable-patching": true, + "patches": { + "drupal/config_ignore": { + "Offset error within IgnoreFilter::activeReadMultiple() - https://www.drupal.org/project/config_ignore/issues/2972302": "https://www.drupal.org/files/issues/2018-07-31/offset-error-within-2972302-13.patch" + }, + "drupal/panelizer": { + "PanelizerWizardContextForm calls parent constructor without enough arguments under CTools 3.1 - https://www.drupal.org/project/panelizer/issues/3031671": "https://www.drupal.org/files/issues/2019-04-03/3031671-8.patch" + }, + "drupal/metatag": { + "Unset link rel: shortlink, edit-form, version-history and revision, and meta name: Generator, MobileOptimized, HandheldFriendly, viewport from - https://www.drupal.org/project/metatag/issues/2735195#comment-12991008": "https://www.drupal.org/files/issues/2019-02-28/metatag-unset-2735195-42.patch" + }, + "drupal/events_log_track": { + "Events Log Track breaks Entity Browser #5 - https://www.drupal.org/project/events_log_track/issues/2934036": "https://www.drupal.org/files/issues/2018-04-19/2934036-check_empty_submit-5.patch", + "Entities with title longer than 50 characters - https://www.drupal.org/project/events_log_track/issues/2930817": "https://www.drupal.org/files/issues/increase-character-length-2930817-2.patch", + "Event logs for change in workflows - https://www.drupal.org/project/events_log_track/issues/2974170": "https://www.drupal.org/files/issues/2018-06-26/events_log_track-add-workflows-2974170-7.patch", + "Add handlers for file and media entities - https://www.drupal.org/project/events_log_track/issues/2959769": "https://www.drupal.org/files/issues/2018-06-26/events-log-track_add-file-media-2959769-9.patch", + "Skip password logging during failed authentication attempt - https://www.drupal.org/project/events_log_track/issues/3027463": "https://www.drupal.org/files/issues/2019-01-22/event-log-track-auth-3027463-2.patch", + "Fix fatal error when we request password with non-existing users/emails on the Events Log Track User Authentication - https://www.drupal.org/project/events_log_track/issues/3060838#comment-13141212": "https://www.drupal.org/files/issues/2019-06-11/3060838-4.patch" + }, + "drupal/google_analytics": { + "Fatal error when there is a view with the path search/node": "https://www.drupal.org/files/issues/2018-06-18/patch_google_analytics.patch" } } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "govCMS\\Core\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0" - ], - "authors": [ - { - "name": "Berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "Frans", - "homepage": "https://www.drupal.org/user/514222" - }, - { - "name": "Primsi", - "homepage": "https://www.drupal.org/user/282629" - }, - { - "name": "jeroen.b", - "homepage": "https://www.drupal.org/user/1853532" - }, - { - "name": "jstoller", - "homepage": "https://www.drupal.org/user/99012" - }, - { - "name": "miro_dietiker", - "homepage": "https://www.drupal.org/user/227761" - } + "GPL-2.0-or-later" ], - "description": "Enables the creation of Paragraphs entities.", - "homepage": "https://www.drupal.org/project/paragraphs", + "description": "GovCMS8 Drupal Distribution", + "homepage": "https://www.govcms.gov.au", + "keywords": [ + "govCMS", + "govCMS8" + ] + } + }, + "govcms/require-dev": { + "dev-master": { + "name": "govcms/require-dev", + "version": "dev-master", + "version_normalized": "9999999-dev", + "source": { + "type": "git", + "url": "https://github.com/govCMS/require-dev.git", + "reference": "f844f9423e7cd65e0f6db111665a623bbd1cdb7a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/govCMS/require-dev/zipball/f844f9423e7cd65e0f6db111665a623bbd1cdb7a", + "reference": "f844f9423e7cd65e0f6db111665a623bbd1cdb7a", + "shasum": "" + }, + "require": { + "behat/behat": "^3.5", + "behat/gherkin": "^4.5", + "drupal/schema_metatag": "^1.4", + "integratedexperts/behat-screenshot": "^0.7.2", + "jakub-onderka/php-parallel-lint": "^1.0", + "phpmd/phpmd": "2.7.0", + "phpunit/phpunit": "6.5" + }, + "time": "2019-10-14T05:26:17+00:00", + "type": "library", + "description": "Require-dev package definition for GovCMS 8", "support": { - "source": "https://git.drupalcode.org/project/paragraphs" + "source": "https://github.com/govCMS/require-dev/tree/1.0.1", + "issues": "https://github.com/govCMS/require-dev/issues" } } }, - "drupal/password_policy": { - "3.0.0-alpha4": { - "name": "drupal/password_policy", - "version": "3.0.0-alpha4", - "version_normalized": "3.0.0.0-alpha4", + "govcms/scaffold-tooling": { + "dev-master": { + "name": "govcms/scaffold-tooling", + "version": "dev-master", + "version_normalized": "9999999-dev", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/password_policy.git", - "reference": "8.x-3.0-alpha4" + "url": "https://github.com/govCMS/scaffold-tooling.git", + "reference": "5fdf1828b6936d33cb9aea106547b9b302ed16ab" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/password_policy-8.x-3.0-alpha4.zip", - "reference": "8.x-3.0-alpha4", - "shasum": "79997599fbce390e79eda0aba10f403324c48b99" + "url": "https://api.github.com/repos/govCMS/scaffold-tooling/zipball/5fdf1828b6936d33cb9aea106547b9b302ed16ab", + "reference": "5fdf1828b6936d33cb9aea106547b9b302ed16ab", + "shasum": "" }, "require": { - "drupal/core": "*", - "drupal/ctools": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-3.x": "3.x-dev" - }, - "drupal": { - "version": "8.x-3.0-alpha4", - "datestamp": "1559915584", - "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } - } + "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0", + "drupal/chosen_lib": "2.6.0", + "drupal/clamav": "1.1.0", + "drupal/coder": "^8.3", + "drupal/console": "^1.0.2", + "drupal/drupal-extension": "^3.4", + "drupal/fast_404": "^1.0@alpha", + "drupal/lagoon_logs": "^1.0", + "drupal/redis": "1.1.0", + "drupal/stage_file_proxy": "1.0.0-alpha3", + "drush/drush": "^9.0.0", + "phar-io/manifest": "1.0.1", + "phar-io/version": "1.0.1", + "webflo/drupal-finder": "^1.0.0", + "webmozart/path-util": "^2.3", + "zaporylie/composer-drupal-optimizations": "^1.0" }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "AohRveTPV", - "homepage": "https://www.drupal.org/user/2760115" - }, - { - "name": "deekayen", - "homepage": "https://www.drupal.org/user/972" - }, - { - "name": "miglius", - "homepage": "https://www.drupal.org/user/18741" - }, - { - "name": "nerdstein", - "homepage": "https://www.drupal.org/user/1557710" - }, - { - "name": "shrop", - "homepage": "https://www.drupal.org/user/14767" - } + "time": "2019-10-14T04:24:23+00:00", + "bin": [ + "scripts/tests/govcms-audit", + "scripts/tests/govcms-behat", + "scripts/tests/govcms-lint", + "scripts/tests/govcms-lint-distro", + "scripts/tests/govcms-phpunit", + "scripts/tests/govcms-vet", + "scripts/govcms-deploy" ], - "description": "Sets up constraints and expiration of passwords.", - "homepage": "https://www.drupal.org/project/password_policy", + "type": "library", + "description": "A variety of standard config, scripts and packages to support GovCMS scaffold.", "support": { - "source": "https://git.drupalcode.org/project/password_policy" + "source": "https://github.com/govCMS/scaffold-tooling/tree/1.0.0", + "issues": "https://github.com/govCMS/scaffold-tooling/issues" } } }, - "drupal/pathauto": { - "1.3.0": { - "name": "drupal/pathauto", - "version": "1.3.0", - "version_normalized": "1.3.0.0", + "grasmash/drupal-security-warning": { + "1.1.1": { + "name": "grasmash/drupal-security-warning", + "version": "1.1.1", + "version_normalized": "1.1.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/pathauto.git", - "reference": "8.x-1.3" + "url": "https://github.com/grasmash/drupal-security-warning.git", + "reference": "cfc5424c84df02be9d094f491e5b57063c15cd72" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "115d5998d7636a03e26c7ce34261b65809d53965" + "url": "https://api.github.com/repos/grasmash/drupal-security-warning/zipball/cfc5424c84df02be9d094f491e5b57063c15cd72", + "reference": "cfc5424c84df02be9d094f491e5b57063c15cd72", + "shasum": "" }, "require": { - "drupal/core": "^8.5", - "drupal/ctools": "*", - "drupal/token": "*" + "composer-plugin-api": "^1.0" }, - "type": "drupal-module", + "require-dev": { + "composer/composer": "^1.0", + "phpunit/phpunit": "^5.7.0", + "squizlabs/php_codesniffer": "^2.7", + "symfony/filesystem": "^3.2.0", + "symfony/process": "^3.2.0" + }, + "time": "2017-10-10T14:47:08+00:00", + "type": "composer-plugin", "extra": { + "class": "grasmash\\DrupalSecurityWarning\\Composer\\Plugin", "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.3", - "datestamp": "1554239887", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "1.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "grasmash\\DrupalSecurityWarning\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "GPL-2.0" ], "authors": [ { - "name": "Berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "Freso", - "homepage": "https://www.drupal.org/user/27504" - }, - { - "name": "greggles", - "homepage": "https://www.drupal.org/user/36762" + "name": "Matthew Grasmick" } ], - "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.", - "homepage": "https://www.drupal.org/project/pathauto", - "support": { - "source": "https://git.drupalcode.org/project/pathauto" - } + "description": "Warns users installing Drupal project versions not supported by Security Team.", + "keywords": [ + "drupal", + "security" + ] } }, - "drupal/permissions_by_term": { - "2.12.0": { - "name": "drupal/permissions_by_term", - "version": "2.12.0", - "version_normalized": "2.12.0.0", + "grasmash/expander": { + "1.0.0": { + "name": "grasmash/expander", + "version": "1.0.0", + "version_normalized": "1.0.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/permissions_by_term.git", - "reference": "8.x-2.12" + "url": "https://github.com/grasmash/expander.git", + "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/permissions_by_term-8.x-2.12.zip", - "reference": "8.x-2.12", - "shasum": "e0992054ba1712bef3ab603d33e8a0d00ce6572b" + "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f", + "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f", + "shasum": "" }, "require": { - "drupal/core": "^8.0" + "dflydev/dot-access-data": "^1.1.0", + "php": ">=5.4" }, - "type": "drupal-module", + "require-dev": { + "greg-1-anderson/composer-test-scenarios": "^1", + "phpunit/phpunit": "^4|^5.5.4", + "satooshi/php-coveralls": "^1.0.2|dev-master", + "squizlabs/php_codesniffer": "^2.7" + }, + "time": "2017-12-21T22:14:55+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-2.x": "2.x-dev" - }, - "drupal": { - "version": "8.x-2.12", - "datestamp": "1569507486", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "1.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Grasmash\\Expander\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "Peter Majmesku", - "homepage": "https://www.drupal.org/user/786132", - "email": "p.majmesku@gmail.com" - }, - { - "name": "SaschaHannes", - "homepage": "https://www.drupal.org/user/3536189" - }, - { - "name": "marcoliver", - "homepage": "https://www.drupal.org/user/1529744" + "name": "Matthew Grasmick" } ], - "description": "Restricts access to nodes by taxonomy terms in relation to users and their roles.", - "homepage": "https://www.drupal.org/project/permissions_by_term", - "support": { - "source": "https://git.drupalcode.org/project/permissions_by_term" - } + "description": "Expands internal property references in PHP arrays file." } }, - "drupal/recaptcha": { - "2.4.0": { - "name": "drupal/recaptcha", - "version": "2.4.0", - "version_normalized": "2.4.0.0", + "grasmash/yaml-expander": { + "1.4.0": { + "name": "grasmash/yaml-expander", + "version": "1.4.0", + "version_normalized": "1.4.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/recaptcha.git", - "reference": "8.x-2.4" + "url": "https://github.com/grasmash/yaml-expander.git", + "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/recaptcha-8.x-2.4.zip", - "reference": "8.x-2.4", - "shasum": "ee68020dc33f880313b83d8bbcb159ef85285c7a" + "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1", + "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1", + "shasum": "" }, "require": { - "drupal/captcha": "^1.0.0-alpha1", - "drupal/core": "~8.0" + "dflydev/dot-access-data": "^1.1.0", + "php": ">=5.4", + "symfony/yaml": "^2.8.11|^3|^4" }, - "type": "drupal-module", + "require-dev": { + "greg-1-anderson/composer-test-scenarios": "^1", + "phpunit/phpunit": "^4.8|^5.5.4", + "satooshi/php-coveralls": "^1.0.2|dev-master", + "squizlabs/php_codesniffer": "^2.7" + }, + "time": "2017-12-16T16:06:03+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-2.x": "2.x-dev" - }, - "drupal": { - "version": "8.x-2.4", - "datestamp": "1548967980", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "1.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Grasmash\\YamlExpander\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "hass", - "homepage": "https://www.drupal.org/u/hass" - }, - { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/147903/committers" - }, - { - "name": "diolan", - "homepage": "https://www.drupal.org/user/2336786" - }, - { - "name": "hass", - "homepage": "https://www.drupal.org/user/85918" - }, - { - "name": "id.medion", - "homepage": "https://www.drupal.org/user/2542592" + "name": "Matthew Grasmick" } ], - "description": "Protect your website from spam and abuse while letting real people pass through with ease.", - "homepage": "https://www.drupal.org/project/recaptcha", - "support": { - "source": "https://git.drupal.org/project/recaptcha.git", - "issues": "https://www.drupal.org/project/issues/recaptcha" - } + "description": "Expands internal property references in a yaml file." } }, - "drupal/redirect": { - "1.3.0": { - "name": "drupal/redirect", - "version": "1.3.0", - "version_normalized": "1.3.0.0", + "guzzlehttp/guzzle": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "6.4.1": { + "name": "guzzlehttp/guzzle", + "version": "6.4.1", + "version_normalized": "6.4.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/redirect.git", - "reference": "8.x-1.3" + "url": "https://github.com/guzzle/guzzle.git", + "reference": "0895c932405407fd3a7368b6910c09a24d26db11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7" + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11", + "reference": "0895c932405407fd3a7368b6910c09a24d26db11", +======= + "6.3.3": { + "name": "guzzlehttp/guzzle", + "version": "6.3.3", + "version_normalized": "6.3.3.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "shasum": "" }, "require": { - "drupal/core": "~8" + "guzzlehttp/promises": "^1.0", + "guzzlehttp/psr7": "^1.4", + "php": ">=5.5" }, - "type": "drupal-module", + "require-dev": { + "ext-curl": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "psr/log": "^1.0" + }, + "suggest": { + "psr/log": "Required for using the Log middleware" + }, + "time": "2018-04-22T15:46:56+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.3", - "datestamp": "1561757585", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "6.3-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "Berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "pifagor", - "homepage": "https://www.drupal.org/user/2375692" + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" } ], - "description": "Allows users to redirect from old URLs to new URLs.", - "homepage": "https://www.drupal.org/project/redirect", - "support": { - "source": "https://git.drupalcode.org/project/redirect" - } - } - }, - "drupal/redis": { - "1.1.0": { - "name": "drupal/redis", - "version": "1.1.0", - "version_normalized": "1.1.0.0", + "description": "Guzzle is a PHP HTTP client library", + "homepage": "http://guzzlephp.org/", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "rest", + "web service" + ] + }, + "6.5.2": { + "name": "guzzlehttp/guzzle", + "version": "6.5.2", + "version_normalized": "6.5.2.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/redis.git", - "reference": "8.x-1.1" + "url": "https://github.com/guzzle/guzzle.git", + "reference": "43ece0e75098b7ecd8d13918293029e555a50f82" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77" + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82", + "reference": "43ece0e75098b7ecd8d13918293029e555a50f82", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "shasum": "" }, "require": { - "drupal/core": "~8.0" + "ext-json": "*", + "guzzlehttp/promises": "^1.0", + "guzzlehttp/psr7": "^1.6.1", + "php": ">=5.5" }, - "suggest": { - "predis/predis": "^1.1.1" + "require-dev": { + "ext-curl": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "psr/log": "^1.1" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.1", - "datestamp": "1568275684", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "suggest": { + "psr/log": "Required for using the Log middleware" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-10-23T15:58:00+00:00", +======= + "time": "2019-12-23T11:57:10+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.3-dev" } }, "autoload": { "psr-4": { - "Drupal\\redis\\": "src" - } + "GuzzleHttp\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0" + "MIT" ], "authors": [ { - "name": "Berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "pounard", - "homepage": "https://www.drupal.org/user/240164" + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" } ], - "description": "Provide a module placeholder, for using as dependency for module that needs Redis.", - "homepage": "https://www.drupal.org/project/redis", - "support": { - "source": "https://git.drupalcode.org/project/redis" - } + "description": "Guzzle is a PHP HTTP client library", + "homepage": "http://guzzlephp.org/", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "rest", + "web service" + ] } }, - "drupal/restui": { - "1.16.0": { - "name": "drupal/restui", - "version": "1.16.0", - "version_normalized": "1.16.0.0", + "guzzlehttp/promises": { + "v1.3.1": { + "name": "guzzlehttp/promises", + "version": "v1.3.1", + "version_normalized": "1.3.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/restui.git", - "reference": "8.x-1.16" + "url": "https://github.com/guzzle/promises.git", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.16.zip", - "reference": "8.x-1.16", - "shasum": "60d2c7ecf6bb439e528c367753df9c94684b8894" + "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "shasum": "" }, "require": { - "drupal/core": "^8.2.0" + "php": ">=5.5.0" }, - "type": "drupal-module", + "require-dev": { + "phpunit/phpunit": "^4.0" + }, + "time": "2016-12-20T10:07:11+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.16", - "datestamp": "1557845661", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "1.4-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "-enzo-", - "homepage": "https://www.drupal.org/user/294937" - }, - { - "name": "clemens.tolboom", - "homepage": "https://www.drupal.org/user/125814" - }, - { - "name": "juampynr", - "homepage": "https://www.drupal.org/user/682736" - }, - { - "name": "klausi", - "homepage": "https://www.drupal.org/user/262198" + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" } ], - "description": "Provides a user interface to manage REST resources", - "homepage": "https://www.drupal.org/project/restui", - "support": { - "source": "https://git.drupalcode.org/project/restui" - } + "description": "Guzzle promises library", + "keywords": [ + "promise" + ] } }, - "drupal/robotstxt": { - "1.2.0": { - "name": "drupal/robotstxt", - "version": "1.2.0", - "version_normalized": "1.2.0.0", + "guzzlehttp/psr7": { + "1.6.1": { + "name": "guzzlehttp/psr7", + "version": "1.6.1", + "version_normalized": "1.6.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/robotstxt.git", - "reference": "8.x-1.2" + "url": "https://github.com/guzzle/psr7.git", + "reference": "239400de7a173fe9901b9ac7c06497751f00727a" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/robotstxt-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "d520a92abfd67b55fbffdead510a57f9c9abf46b" + "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", + "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "shasum": "" }, "require": { - "drupal/core": "~8.0" + "php": ">=5.4.0", + "psr/http-message": "~1.0", + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" }, - "type": "drupal-module", + "provide": { + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "ext-zlib": "*", + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + }, + "suggest": { + "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + }, + "time": "2019-07-01T23:21:34+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.2", - "datestamp": "1529154524", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "1.6-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "hass", - "homepage": "https://www.drupal.org/u/hass" - }, - { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/53579/committers" - }, - { - "name": "ccjjmartin", - "homepage": "https://www.drupal.org/user/3210801" + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" }, { - "name": "mikeegoulding", - "homepage": "https://www.drupal.org/user/2867877" + "name": "Tobias Schultze", + "homepage": "https://github.com/Tobion" } ], - "description": "Generates the robots.txt file dynamically and gives you the chance to edit it, on a per-site basis, from the web UI.", - "homepage": "https://www.drupal.org/project/robotstxt", - "support": { - "source": "http://git.drupal.org/project/robotstxt.git", - "issues": "https://www.drupal.org/project/issues/robotstxt" - } + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ] } }, - "drupal/scheduled_transitions": { - "1.0.0-rc1": { - "name": "drupal/scheduled_transitions", - "version": "1.0.0-rc1", - "version_normalized": "1.0.0.0-RC1", + "html2text/html2text": { + "4.0.1": { + "name": "html2text/html2text", + "version": "4.0.1", + "version_normalized": "4.0.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/scheduled_transitions.git", - "reference": "8.x-1.0-rc1" + "url": "https://github.com/mtibben/html2text.git", + "reference": "f55104b7c9f99b0937f0e20fe051b19f9c0ecad1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scheduled_transitions-8.x-1.0-rc1.zip", - "reference": "8.x-1.0-rc1", - "shasum": "4fbfdbc8c5713672f0cdbc1fc06b343d1bd55838" - }, - "require": { - "drupal/core": "^8.6", - "drupal/dynamic_entity_reference": "*", - "php": ">=7.1.0" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0-rc1", - "datestamp": "1564755488", - "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." - } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } + "url": "https://api.github.com/repos/mtibben/html2text/zipball/f55104b7c9f99b0937f0e20fe051b19f9c0ecad1", + "reference": "f55104b7c9f99b0937f0e20fe051b19f9c0ecad1", + "shasum": "" + }, + "require-dev": { + "phpunit/phpunit": "~4" + }, + "suggest": { + "ext-mbstring": "For best performance", + "symfony/polyfill-mbstring": "If you can't install ext-mbstring" + }, + "time": "2016-03-16T23:24:34+00:00", + "type": "library", + "autoload": { + "psr-4": { + "Html2Text\\": [ + "src/", + "test/" + ] } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "dpi", - "homepage": "https://www.drupal.org/user/81431" - } + "GPLv2" ], - "description": "Allows users to schedule a revision to change state.", - "homepage": "https://www.drupal.org/project/scheduled_transitions", - "support": { - "source": "https://git.drupalcode.org/project/scheduled_transitions" - } + "description": "Converts HTML to formatted plain text" } }, - "drupal/schema_metatag": { - "1.4.0": { - "name": "drupal/schema_metatag", - "version": "1.4.0", - "version_normalized": "1.4.0.0", + "instaclick/php-webdriver": { + "1.4.6": { + "name": "instaclick/php-webdriver", + "version": "1.4.6", + "version_normalized": "1.4.6.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/schema_metatag.git", - "reference": "8.x-1.4" + "url": "https://github.com/instaclick/php-webdriver.git", + "reference": "bd9405077ca04129a73059a06873bedb5e138402" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "5d0a677608e30a7c8ffb43d98759b19cf5be17f6" + "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/bd9405077ca04129a73059a06873bedb5e138402", + "reference": "bd9405077ca04129a73059a06873bedb5e138402", + "shasum": "" }, "require": { - "drupal/core": "~8.0", - "drupal/metatag": "*" + "ext-curl": "*", + "php": ">=5.3.2" }, "require-dev": { - "drupal/metatag_views": "*", - "drupal/schema_article": "*", - "drupal/schema_organization": "*" + "phpunit/phpunit": "^4.8", + "satooshi/php-coveralls": "^1.0||^2.0" }, - "type": "drupal-module", + "time": "2019-09-23T15:50:44+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.4", - "datestamp": "1563033785", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "1.4.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-0": { + "WebDriver": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "Apache-2.0" ], "authors": [ { - "name": "KarenS", - "homepage": "https://www.drupal.org/user/45874" + "name": "Justin Bishop", + "email": "jubishop@gmail.com", + "role": "Developer" + }, + { + "name": "Anthon Pang", + "email": "apang@softwaredevelopment.ca", + "role": "Fork Maintainer" } ], - "description": "Metatag implementation of Schema.org structured data (JSON-LD)", - "homepage": "https://www.drupal.org/project/schema_metatag", + "description": "PHP WebDriver for Selenium 2", + "homepage": "http://instaclick.com/", "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/schema_metatag", - "issues": "https://www.drupal.org/project/issues/schema_metatag" - } + "browser", + "selenium", + "webdriver", + "webtest" + ] } }, - "drupal/search_api": { - "1.11.0": { - "name": "drupal/search_api", - "version": "1.11.0", - "version_normalized": "1.11.0.0", + "integratedexperts/behat-screenshot": { + "0.7.2": { + "name": "integratedexperts/behat-screenshot", + "version": "0.7.2", + "version_normalized": "0.7.2.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.11" + "url": "https://github.com/integratedexperts/behat-screenshot.git", + "reference": "37f2c9c43122c188ce604d1555968b6deaa422dc" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "d2bf92afa2ee760977dde1fadcb5bb64a4c2d7c1" + "url": "https://api.github.com/repos/integratedexperts/behat-screenshot/zipball/37f2c9c43122c188ce604d1555968b6deaa422dc", + "reference": "37f2c9c43122c188ce604d1555968b6deaa422dc", + "shasum": "" }, "require": { - "drupal/core": "^8.5" + "behat/behat": "^3.3.1", + "behat/mink-selenium2-driver": "^1.3", + "symfony/finder": "^3.2|^4.0" }, "require-dev": { - "drupal/search_api_autocomplete": "@dev", - "drupal/search_api_db": "*" - }, - "suggest": { - "drupal/facets": "Adds the ability to create faceted searches.", - "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.", - "drupal/search_api_solr": "Adds support for using Apache Solr as a backend." + "behat/mink": "~1.5", + "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4", + "escapestudios/symfony2-coding-standard": "~2.0", + "integratedexperts/behat-phpserver": "^0.1", + "squizlabs/php_codesniffer": "2.*" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.11", - "datestamp": "1552334285", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } + "time": "2018-05-30T06:56:55+00:00", + "type": "library", + "autoload": { + "psr-0": { + "IntegratedExperts\\BehatScreenshot": "src/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Thomas Seidl", - "homepage": "https://www.drupal.org/u/drunken-monkey" - }, - { - "name": "Nick Veenhof", - "homepage": "https://www.drupal.org/u/nick_vh" + "name": "Alex Skrypnyk", + "email": "alex.designworks@gmail.com" }, { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/790418/committers" + "name": "Alexander Sharkov", + "email": "blade.didan@gmail.com" } ], - "description": "Provides a generic framework for modules offering search capabilities.", - "homepage": "https://www.drupal.org/project/search_api", - "support": { - "source": "http://git.drupal.org/project/search_api.git", - "issues": "https://www.drupal.org/project/issues/search_api", - "irc": "irc://irc.freenode.org/drupal-search-api" - } - }, - "1.15.0": { - "name": "drupal/search_api", - "version": "1.15.0", - "version_normalized": "1.15.0.0", + "description": "Behat Context to capture screenshots from failed tests" + } + }, + "jakub-onderka/php-console-color": { + "v0.2": { + "name": "jakub-onderka/php-console-color", + "version": "v0.2", + "version_normalized": "0.2.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.15" + "url": "https://github.com/JakubOnderka/PHP-Console-Color.git", + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.15.zip", - "reference": "8.x-1.15", - "shasum": "12c13141adb6b687fe36781ac9269a49ef810323" + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191", + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191", + "shasum": "" }, "require": { - "drupal/core": "^8.6" - }, - "conflict": { - "drupal/search_api_solr": "2.* || 3.0 || 3.1" + "php": ">=5.4.0" }, "require-dev": { - "drupal/language_fallback_fix": "@dev", - "drupal/search_api_autocomplete": "@dev", - "drupal/search_api_db": "*" - }, - "suggest": { - "drupal/facets": "Adds the ability to create faceted searches.", - "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.", - "drupal/search_api_solr": "Adds support for using Apache Solr as a backend." + "jakub-onderka/php-code-style": "1.0", + "jakub-onderka/php-parallel-lint": "1.0", + "jakub-onderka/php-var-dump-check": "0.*", + "phpunit/phpunit": "~4.3", + "squizlabs/php_codesniffer": "1.*" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.15", - "datestamp": "1573122785", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } + "time": "2018-09-29T17:23:10+00:00", + "type": "library", + "autoload": { + "psr-4": { + "JakubOnderka\\PhpConsoleColor\\": "src/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "BSD-2-Clause" ], "authors": [ { - "name": "Thomas Seidl", - "homepage": "https://www.drupal.org/u/drunken-monkey" - }, - { - "name": "Nick Veenhof", - "homepage": "https://www.drupal.org/u/nick_vh" - }, - { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/790418/committers" + "name": "Jakub Onderka", + "email": "jakub.onderka@gmail.com" } - ], - "description": "Provides a generic framework for modules offering search capabilities.", - "homepage": "https://www.drupal.org/project/search_api", - "support": { - "source": "http://git.drupal.org/project/search_api.git", - "issues": "https://www.drupal.org/project/issues/search_api", - "irc": "irc://irc.freenode.org/drupal-search-api" - } + ] } }, - "drupal/search_api_attachments": { - "1.0.0-beta13": { - "name": "drupal/search_api_attachments", - "version": "1.0.0-beta13", - "version_normalized": "1.0.0.0-beta13", + "jakub-onderka/php-console-highlighter": { + "v0.4": { + "name": "jakub-onderka/php-console-highlighter", + "version": "v0.4", + "version_normalized": "0.4.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/search_api_attachments.git", - "reference": "8.x-1.0-beta13" + "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git", + "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_attachments-8.x-1.0-beta13.zip", - "reference": "8.x-1.0-beta13", - "shasum": "14835458d83b66adb499a020d41dbaa1c1e27800" + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547", + "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547", + "shasum": "" }, "require": { - "drupal/core": "~8.0", - "drupal/search_api": "*" + "ext-tokenizer": "*", + "jakub-onderka/php-console-color": "~0.2", + "php": ">=5.4.0" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0-beta13", - "datestamp": "1562252286", - "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." - } + "require-dev": { + "jakub-onderka/php-code-style": "~1.0", + "jakub-onderka/php-parallel-lint": "~1.0", + "jakub-onderka/php-var-dump-check": "~0.1", + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "~1.5" + }, + "time": "2018-09-29T18:48:56+00:00", + "type": "library", + "autoload": { + "psr-4": { + "JakubOnderka\\PhpConsoleHighlighter\\": "src/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "izus", - "homepage": "https://www.drupal.org/user/514568" + "name": "Jakub Onderka", + "email": "acci@acci.cz", + "homepage": "http://www.acci.cz/" } ], - "description": "Extract and index file fields content.", - "homepage": "https://www.drupal.org/project/search_api_attachments", - "support": { - "source": "https://git.drupalcode.org/project/search_api_attachments" - } + "description": "Highlight PHP code in terminal" } }, - "drupal/search_api_solr": { - "2.2.0": { - "name": "drupal/search_api_solr", - "version": "2.2.0", - "version_normalized": "2.2.0.0", + "jakub-onderka/php-parallel-lint": { + "v1.0.0": { + "name": "jakub-onderka/php-parallel-lint", + "version": "v1.0.0", + "version_normalized": "1.0.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/search_api_solr.git", - "reference": "8.x-2.2" + "url": "https://github.com/JakubOnderka/PHP-Parallel-Lint.git", + "reference": "04fbd3f5fb1c83f08724aa58a23db90bd9086ee8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_solr-8.x-2.2.zip", - "reference": "8.x-2.2", - "shasum": "c740d9983d6fb34b27ba0d680de2bb9ade3754eb" + "url": "https://api.github.com/repos/JakubOnderka/PHP-Parallel-Lint/zipball/04fbd3f5fb1c83f08724aa58a23db90bd9086ee8", + "reference": "04fbd3f5fb1c83f08724aa58a23db90bd9086ee8", + "shasum": "" }, "require": { - "drupal/core": "^8.5", - "drupal/search_api": "~1.9", - "maennchen/zipstream-php": "0.4.*", - "php": "^7.0", - "solarium/solarium": "~4.1.0" - }, - "conflict": { - "drupal/core": "<8.5", - "drupal/search_api_solr_multilingual": "*" + "php": ">=5.3.3" }, "require-dev": { - "drupal/devel": "*", - "drupal/facets": "1.x-dev", - "drupal/geofield": "1.x-dev", - "drupal/search_api_autocomplete": "1.x-dev", - "drupal/search_api_location": "1.x-dev", - "phayes/geophp": "^1.2" + "jakub-onderka/php-console-highlighter": "~0.3", + "nette/tester": "~1.3", + "squizlabs/php_codesniffer": "~2.7" }, "suggest": { - "drupal/facets": "Provides facetted search.", - "drupal/search_api_autocomplete": "Provides auto complete for search boxes.", - "drupal/search_api_location": "Provides location searches." + "jakub-onderka/php-console-highlighter": "Highlight syntax in code snippet" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - }, - "drupal": { - "version": "8.x-2.2", - "datestamp": "1543072380", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } + "time": "2018-02-24T15:31:20+00:00", + "bin": [ + "parallel-lint" + ], + "type": "library", + "autoload": { + "classmap": [ + "./" + ] }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "BSD-2-Clause" ], "authors": [ { - "name": "Markus Kalkbrenner", - "homepage": "https://www.drupal.org/u/mkalkbrenner" - }, - { - "name": "Other contributors", - "homepage": "https://www.drupal.org/node/982682/committers" - }, - { - "name": "amateescu", - "homepage": "https://www.drupal.org/user/729614" - }, - { - "name": "cspitzlay", - "homepage": "https://www.drupal.org/user/419305" - }, - { - "name": "drunken monkey", - "homepage": "https://www.drupal.org/user/205582" - }, - { - "name": "mkalkbrenner", - "homepage": "https://www.drupal.org/user/124705" + "name": "Jakub Onderka", + "email": "ahoj@jakubonderka.cz" } ], - "description": "Offers an implementation of the Search API that uses an Apache Solr server for indexing content.", - "homepage": "https://www.drupal.org/project/search_api_solr", - "support": { - "source": "http://git.drupal.org/project/search_api_solr.git", - "issues": "https://www.drupal.org/project/issues/search_api_solr", - "irc": "irc://irc.freenode.org/drupal-search-api" - } + "description": "This tool check syntax of PHP files about 20x faster than serial check.", + "homepage": "https://github.com/JakubOnderka/PHP-Parallel-Lint" } }, - "drupal/seckit": { - "1.1.0": { - "name": "drupal/seckit", - "version": "1.1.0", - "version_normalized": "1.1.0.0", + "kub-at/php-simple-html-dom-parser": { + "1.9.1": { + "name": "kub-at/php-simple-html-dom-parser", + "version": "1.9.1", + "version_normalized": "1.9.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/seckit.git", - "reference": "8.x-1.1" + "url": "https://github.com/Kub-AT/php-simple-html-dom-parser.git", + "reference": "ff22f98bfd9235115c128059076f3eb740d66913" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/seckit-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "bf7756d1a6a2d64ff35147b7a464cbd7f1acffcc" + "url": "https://api.github.com/repos/Kub-AT/php-simple-html-dom-parser/zipball/ff22f98bfd9235115c128059076f3eb740d66913", + "reference": "ff22f98bfd9235115c128059076f3eb740d66913", + "shasum": "" }, "require": { - "drupal/core": "~8.0" + "php": ">=5.3.2" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.1", - "datestamp": "1561463889", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "time": "2019-10-25T12:34:43+00:00", + "type": "library", + "autoload": { + "psr-0": { + "KubAT\\PhpSimple\\HtmlDomParser": "src/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "badjava", - "homepage": "https://www.drupal.org/user/83372" - }, - { - "name": "jweowu", - "homepage": "https://www.drupal.org/user/152788" - }, - { - "name": "mcdruid", - "homepage": "https://www.drupal.org/user/255969" + "name": "S.C. Chen", + "email": "me578022@gmail.com" }, { - "name": "p0deje", - "homepage": "https://www.drupal.org/user/529960" + "name": "Jakub Stawowy", + "email": "Kub-AT@users.noreply.github.com" } ], - "description": "SecKit provides Drupal with various security-hardening options.", - "homepage": "https://www.drupal.org/project/seckit", - "keywords": [ - "Drupal", - "security" - ], - "support": { - "source": "http://cgit.drupalcode.org/seckit", - "issues": "http://drupal.org/project/issues/seckit" - } + "description": "PHP Simple HTML DOM Parser with namespace and PHP 7.3 compatible", + "homepage": "http://simplehtmldom.sourceforge.net/", + "keywords": [ + "Simple", + "dom", + "html" + ] } }, - "drupal/shield": { - "1.2.0": { - "name": "drupal/shield", - "version": "1.2.0", - "version_normalized": "1.2.0.0", + "lcobucci/jwt": { + "3.3.1": { + "name": "lcobucci/jwt", + "version": "3.3.1", + "version_normalized": "3.3.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/shield.git", - "reference": "8.x-1.2" + "url": "https://github.com/lcobucci/jwt.git", + "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/shield-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "bf16d39209c0443635aa11e4da62e37262bc66b7" + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", + "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", + "shasum": "" }, "require": { - "drupal/core": "~8.0" + "ext-mbstring": "*", + "ext-openssl": "*", + "php": "^5.6 || ^7.0" }, - "type": "drupal-module", + "require-dev": { + "mikey179/vfsstream": "~1.5", + "phpmd/phpmd": "~2.2", + "phpunit/php-invoker": "~1.1", + "phpunit/phpunit": "^5.7 || ^7.3", + "squizlabs/php_codesniffer": "~2.3" + }, + "time": "2019-05-24T18:30:49+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.2", - "datestamp": "1519345980", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "3.1-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Lcobucci\\JWT\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "BSD-3-Clause" ], "authors": [ { - "name": "axel.rutz", - "homepage": "https://www.drupal.org/user/229048" - }, - { - "name": "badjava", - "homepage": "https://www.drupal.org/user/83372" - }, - { - "name": "chx", - "homepage": "https://www.drupal.org/user/9446" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "kalman.hosszu", - "homepage": "https://www.drupal.org/user/267481" - }, - { - "name": "pkiraly", - "homepage": "https://www.drupal.org/user/352587" + "name": "Luís Otávio Cobucci Oblonczyk", + "email": "lcobucci@gmail.com", + "role": "Developer" } ], - "description": "Creates a general shield for the site.", - "homepage": "https://www.drupal.org/project/shield", - "support": { - "source": "https://git.drupalcode.org/project/shield" - } + "description": "A simple library to work with JSON Web Token and JSON Web Signature", + "keywords": [ + "JWS", + "jwt" + ] } }, - "drupal/simple_oauth": { - "3.14.0": { - "name": "drupal/simple_oauth", - "version": "3.14.0", - "version_normalized": "3.14.0.0", + "league/container": { + "2.4.1": { + "name": "league/container", + "version": "2.4.1", + "version_normalized": "2.4.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/simple_oauth.git", - "reference": "8.x-3.14" + "url": "https://github.com/thephpleague/container.git", + "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simple_oauth-8.x-3.14.zip", - "reference": "8.x-3.14", - "shasum": "825f726e7f033150d4702ad773259ab7deb3fb6c" + "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0", + "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0", + "shasum": "" }, "require": { - "drupal/consumers": "^1.2", - "drupal/core": "^8.3", - "league/oauth2-server": "^7.1" + "container-interop/container-interop": "^1.2", + "php": "^5.4.0 || ^7.0" }, - "type": "drupal-module", + "provide": { + "container-interop/container-interop-implementation": "^1.2", + "psr/container-implementation": "^1.0" + }, + "replace": { + "orno/di": "~2.0" + }, + "require-dev": { + "phpunit/phpunit": "4.*" + }, + "time": "2017-05-10T09:20:27+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev" - }, - "drupal": { - "version": "8.x-3.14", - "datestamp": "1556659981", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-2.x": "2.x-dev", + "dev-1.x": "1.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "League\\Container\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "Mateu Aguiló Bosch", - "homepage": "https://www.drupal.org/user/550110", - "email": "mateu.aguilo.bosch@gmail.com" - }, - { - "name": "pcambra", - "homepage": "https://www.drupal.org/user/122101" + "name": "Phil Bennett", + "email": "philipobenito@gmail.com", + "homepage": "http://www.philipobenito.com", + "role": "Developer" } ], - "description": "The Simple OAuth module for Drupal", - "homepage": "https://www.drupal.org/project/simple_oauth", - "support": { - "source": "https://git.drupalcode.org/project/simple_oauth" - } + "description": "A fast and intuitive dependency injection container.", + "homepage": "https://github.com/thephpleague/container", + "keywords": [ + "container", + "dependency", + "di", + "injection", + "league", + "provider", + "service" + ] } }, - "drupal/simple_sitemap": { - "3.0.0": { - "name": "drupal/simple_sitemap", - "version": "3.0.0", - "version_normalized": "3.0.0.0", + "league/event": { + "2.2.0": { + "name": "league/event", + "version": "2.2.0", + "version_normalized": "2.2.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/simple_sitemap.git", - "reference": "8.x-3.0" + "url": "https://github.com/thephpleague/event.git", + "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.0.zip", - "reference": "8.x-3.0", - "shasum": "9c3d1fb78d4693dd4f3258e8870b173650c828cd" + "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119", + "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119", + "shasum": "" }, "require": { - "drupal/core": "~8.0", - "ext-xmlwriter": "*" + "php": ">=5.4.0" }, - "type": "drupal-module", + "require-dev": { + "henrikbjorn/phpspec-code-coverage": "~1.0.1", + "phpspec/phpspec": "^2.2" + }, + "time": "2018-11-26T11:52:41+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev" - }, - "drupal": { - "version": "8.x-3.0", - "datestamp": "1552141685", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } + "dev-master": "2.2-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "League\\Event\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "Pawel Ginalski (gbyte.co)", - "homepage": "https://www.drupal.org/u/gbyte.co", - "email": "contact@gbyte.co", - "role": "Maintainer" - }, - { - "name": "gbyte.co", - "homepage": "https://www.drupal.org/user/2381352" + "name": "Frank de Jonge", + "email": "info@frenky.net" } ], - "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.", - "homepage": "https://drupal.org/project/simple_sitemap", - "support": { - "source": "https://cgit.drupalcode.org/simple_sitemap", - "issues": "https://drupal.org/project/issues/simple_sitemap", - "irc": "irc://irc.freenode.org/drupal-contribute" - } + "description": "Event package", + "keywords": [ + "emitter", + "event", + "listener" + ] } }, - "drupal/stage_file_proxy": { - "1.0.0-alpha3": { - "name": "drupal/stage_file_proxy", - "version": "1.0.0-alpha3", - "version_normalized": "1.0.0.0-alpha3", + "league/oauth2-server": { + "7.4.0": { + "name": "league/oauth2-server", + "version": "7.4.0", + "version_normalized": "7.4.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/stage_file_proxy.git", - "reference": "8.x-1.0-alpha3" + "url": "https://github.com/thephpleague/oauth2-server.git", + "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stage_file_proxy-8.x-1.0-alpha3.zip", - "reference": "8.x-1.0-alpha3", - "shasum": "0eb1fc47fa1437c2db623a57c2b2cdbecab5b350" + "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf", + "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf", + "shasum": "" }, "require": { - "drupal/core": "~8.0" + "defuse/php-encryption": "^2.1", + "ext-openssl": "*", + "lcobucci/jwt": "^3.2.2", + "league/event": "^2.1", + "php": ">=7.0.0", + "psr/http-message": "^1.0.1" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0-alpha3", - "datestamp": "1555515785", - "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } + "replace": { + "league/oauth2server": "*", + "lncd/oauth2": "*" + }, + "require-dev": { + "phpstan/phpstan": "^0.9.2", + "phpstan/phpstan-phpunit": "^0.9.4", + "phpstan/phpstan-strict-rules": "^0.9.0", + "phpunit/phpunit": "^6.3 || ^7.0", + "roave/security-advisories": "dev-master", + "zendframework/zend-diactoros": "^1.3.2" + }, + "time": "2019-05-05T09:22:01+00:00", + "type": "library", + "autoload": { + "psr-4": { + "League\\OAuth2\\Server\\": "src/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "BarisW", - "homepage": "https://www.drupal.org/user/107229" - }, - { - "name": "geek.merlin aka axel.rutz", - "homepage": "https://www.drupal.org/user/229048" - }, - { - "name": "greggles", - "homepage": "https://www.drupal.org/user/36762" - }, - { - "name": "markdorison", - "homepage": "https://www.drupal.org/user/346106" - }, - { - "name": "moshe weitzman", - "homepage": "https://www.drupal.org/user/23" - }, - { - "name": "msonnabaum", - "homepage": "https://www.drupal.org/user/75278" - }, - { - "name": "netaustin", - "homepage": "https://www.drupal.org/user/199298" + "name": "Alex Bilbie", + "email": "hello@alexbilbie.com", + "homepage": "http://www.alexbilbie.com", + "role": "Developer" }, { - "name": "robwilmshurst", - "homepage": "https://www.drupal.org/user/144488" + "name": "Andy Millington", + "email": "andrew@noexceptions.io", + "homepage": "https://www.noexceptions.io", + "role": "Developer" } ], - "description": "Provides stage_file_proxy module.", - "homepage": "https://www.drupal.org/project/stage_file_proxy", - "support": { - "source": "https://git.drupalcode.org/project/stage_file_proxy" - } + "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.", + "homepage": "https://oauth2.thephpleague.com/", + "keywords": [ + "Authentication", + "api", + "auth", + "authorisation", + "authorization", + "oauth", + "oauth 2", + "oauth 2.0", + "oauth2", + "protect", + "resource", + "secure", + "server" + ] } }, - "drupal/swiftmailer": { - "1.0.0-beta2": { - "name": "drupal/swiftmailer", - "version": "1.0.0-beta2", - "version_normalized": "1.0.0.0-beta2", + "maennchen/zipstream-php": { + "v0.4.1": { + "name": "maennchen/zipstream-php", + "version": "v0.4.1", + "version_normalized": "0.4.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/swiftmailer.git", - "reference": "8.x-1.0-beta2" + "url": "https://github.com/maennchen/ZipStream-PHP.git", + "reference": "89e0cdb3c9ecabef4da988852003781a7802afb7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/swiftmailer-8.x-1.0-beta2.zip", - "reference": "8.x-1.0-beta2", - "shasum": "a63a91e7816a06bf8e52ac9b5e48a892a1e6b1d4" + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/89e0cdb3c9ecabef4da988852003781a7802afb7", + "reference": "89e0cdb3c9ecabef4da988852003781a7802afb7", + "shasum": "" }, "require": { - "drupal/core": "~8.0", - "drupal/mailsystem": "*", - "html2text/html2text": "~4.0.1", - "swiftmailer/swiftmailer": "~5.4.5" + "ext-mbstring": "*", + "php": ">= 5.6" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0-beta2", - "datestamp": "1519655459", - "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." - } + "require-dev": { + "phpunit/phpunit": "4.3.*" + }, + "time": "2016-09-13T10:29:17+00:00", + "type": "library", + "autoload": { + "psr-4": { + "ZipStream\\": "src/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "B-Prod", - "homepage": "https://www.drupal.org/user/407852" + "name": "Paul Duncan", + "email": "pabs@pablotron.org" }, { - "name": "sbrattla", - "homepage": "https://www.drupal.org/user/53422" + "name": "Jesse Donat", + "email": "donatj@gmail.com" }, { - "name": "webflo", - "homepage": "https://www.drupal.org/user/254778" + "name": "Jonatan Männchen", + "email": "jonatan@maennchen.ch" } ], - "description": "Swiftmailer", - "homepage": "https://www.drupal.org/project/swiftmailer", - "support": { - "source": "https://git.drupalcode.org/project/swiftmailer" - } + "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.", + "keywords": [ + "stream", + "zip" + ] } }, - "drupal/token": { - "1.5.0": { - "name": "drupal/token", - "version": "1.5.0", - "version_normalized": "1.5.0.0", + "masterminds/html5": { + "2.3.0": { + "name": "masterminds/html5", + "version": "2.3.0", + "version_normalized": "2.3.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.5" + "url": "https://github.com/Masterminds/html5-php.git", + "reference": "2c37c6c520b995b761674de3be8455a381679067" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d" + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067", + "reference": "2c37c6c520b995b761674de3be8455a381679067", + "shasum": "" }, "require": { - "drupal/core": "^8.5" + "ext-libxml": "*", + "php": ">=5.3.0" }, - "type": "drupal-module", + "require-dev": { + "phpunit/phpunit": "4.*", + "sami/sami": "~2.0", + "satooshi/php-coveralls": "1.0.*" + }, + "time": "2017-09-04T12:26:28+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.5", - "datestamp": "1537557481", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "2.2-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Masterminds\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "eaton", - "homepage": "https://www.drupal.org/user/16496" - }, - { - "name": "fago", - "homepage": "https://www.drupal.org/user/16747" + "name": "Matt Butcher", + "email": "technosophos@gmail.com" }, { - "name": "greggles", - "homepage": "https://www.drupal.org/user/36762" + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" }, { - "name": "mikeryan", - "homepage": "https://www.drupal.org/user/4420" + "name": "Matt Farina", + "email": "matt@mattfarina.com" } ], - "description": "Provides a user interface for the Token API and some missing core tokens.", - "homepage": "https://www.drupal.org/project/token", - "support": { - "source": "https://git.drupalcode.org/project/token" - } - } - }, - "drupal/update_notifications_disable": { - "1.0.0": { - "name": "drupal/update_notifications_disable", - "version": "1.0.0", - "version_normalized": "1.0.0.0", + "description": "An HTML5 parser and serializer.", + "homepage": "http://masterminds.github.io/html5-php", + "keywords": [ + "HTML5", + "dom", + "html", + "parser", + "querypath", + "serializer", + "xml" + ] + }, + "2.7.0": { + "name": "masterminds/html5", + "version": "2.7.0", + "version_normalized": "2.7.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/update_notifications_disable.git", - "reference": "8.x-1.0" + "url": "https://github.com/Masterminds/html5-php.git", + "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/update_notifications_disable-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "415211f61ac96621822312e85db567945883195e" + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2", + "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2", + "shasum": "" }, "require": { - "drupal/core": "~8.0" + "ext-ctype": "*", + "ext-dom": "*", + "ext-libxml": "*", + "php": ">=5.3.0" }, - "type": "drupal-module", + "require-dev": { + "phpunit/phpunit": "^4.8.35", + "sami/sami": "~2.0", + "satooshi/php-coveralls": "1.0.*" + }, + "time": "2019-07-25T07:03:26+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0", - "datestamp": "1495750385", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "dev-master": "2.7-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Masterminds\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" + "name": "Matt Butcher", + "email": "technosophos@gmail.com" }, { - "name": "webchick", - "homepage": "https://www.drupal.org/user/24967" + "name": "Matt Farina", + "email": "matt@mattfarina.com" + }, + { + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" } ], - "homepage": "https://www.drupal.org/project/update_notifications_disable", - "support": { - "source": "https://git.drupalcode.org/project/update_notifications_disable" - } + "description": "An HTML5 parser and serializer.", + "homepage": "http://masterminds.github.io/html5-php", + "keywords": [ + "HTML5", + "dom", + "html", + "parser", + "querypath", + "serializer", + "xml" + ] } }, - "drupal/username_enumeration_prevention": { - "1.0.0-beta2": { - "name": "drupal/username_enumeration_prevention", - "version": "1.0.0-beta2", - "version_normalized": "1.0.0.0-beta2", + "mkalkbrenner/php-htmldiff-advanced": { + "0.0.8": { + "name": "mkalkbrenner/php-htmldiff-advanced", + "version": "0.0.8", + "version_normalized": "0.0.8.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/username_enumeration_prevention.git", - "reference": "8.x-1.0-beta2" + "url": "https://github.com/mkalkbrenner/php-htmldiff.git", + "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/username_enumeration_prevention-8.x-1.0-beta2.zip", - "reference": "8.x-1.0-beta2", - "shasum": "76567c56a86fc2f2510cf204d74b4ed0aa5a3fbd" + "url": "https://api.github.com/repos/mkalkbrenner/php-htmldiff/zipball/3a714b48c9c3d3730baaf6d3949691e654cd37c9", + "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9", + "shasum": "" }, "require": { - "drupal/core": "~8.0" + "caxy/php-htmldiff": ">=0.0.6", + "php": ">=5.5.0" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0-beta2", - "datestamp": "1533049984", - "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." - } - } + "time": "2016-07-25T17:07:32+00:00", + "type": "library", + "autoload": { + "files": [ + "src/HtmlDiffAdvancedInterface.php", + "src/HtmlDiffAdvanced.php" + ] }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "nicksanta", - "homepage": "https://www.drupal.org/user/87915" - } + "GNU General Public License V2" ], - "description": "Prevents username enumeration on password reset and user pages.", - "homepage": "https://www.drupal.org/project/username_enumeration_prevention", - "support": { - "source": "https://git.drupalcode.org/project/username_enumeration_prevention" - } + "description": "An add-on for the php-htmldiff library for comparing two HTML files/snippets and highlighting the differences using simple HTML.", + "homepage": "https://github.com/mkalkbrenner/php-htmldiff", + "keywords": [ + "diff", + "html" + ] } }, - "drupal/video_embed_field": { - "2.0.0": { - "name": "drupal/video_embed_field", - "version": "2.0.0", - "version_normalized": "2.0.0.0", + "monolog/monolog": { + "1.25.3": { + "name": "monolog/monolog", + "version": "1.25.3", + "version_normalized": "1.25.3.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/video_embed_field.git", - "reference": "8.x-2.0" + "url": "https://github.com/Seldaek/monolog.git", + "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0.zip", - "reference": "8.x-2.0", - "shasum": "e864f090b3cb9405376ca324d81ace83613e2019" + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1", + "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1", + "shasum": "" }, "require": { - "drupal/core": "*" + "php": ">=5.3.0", + "psr/log": "~1.0" + }, + "provide": { + "psr/log-implementation": "1.0.0" }, "require-dev": { - "drupal/colorbox": "*", - "drupal/media_entity": "*", - "drupal/media_entity_embeddable_video": "*" + "aws/aws-sdk-php": "^2.4.9 || ^3.0", + "doctrine/couchdb": "~1.0@dev", + "graylog2/gelf-php": "~1.0", + "jakub-onderka/php-parallel-lint": "0.9", + "php-amqplib/php-amqplib": "~2.4", + "php-console/php-console": "^3.1.3", + "phpunit/phpunit": "~4.5", + "phpunit/phpunit-mock-objects": "2.3.0", + "ruflin/elastica": ">=0.90 <3.0", + "sentry/sentry": "^0.13", + "swiftmailer/swiftmailer": "^5.3|^6.0" }, - "type": "drupal-module", + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-mongo": "Allow sending log messages to a MongoDB server", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "php-console/php-console": "Allow sending log messages to Google Chrome", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server", + "sentry/sentry": "Allow sending log messages to a Sentry server" + }, + "time": "2019-12-20T14:15:16+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-2.x": "2.x-dev" - }, - "drupal": { - "version": "8.x-1.x", - "datestamp": "1557724385", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - }, - "package": "Field types" + "dev-master": "2.0.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "Sam152", - "homepage": "https://www.drupal.org/user/1485048" - }, - { - "name": "jec006", - "homepage": "https://www.drupal.org/user/855980" - }, - { - "name": "plopesc", - "homepage": "https://www.drupal.org/user/282415" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.", - "homepage": "https://www.drupal.org/project/video_embed_field", - "support": { - "source": "https://git.drupalcode.org/project/video_embed_field" - } + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "http://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ] } }, - "drupal/webform": { - "5.1.0": { - "name": "drupal/webform", - "version": "5.1.0", - "version_normalized": "5.1.0.0", + "myclabs/deep-copy": { + "1.9.3": { + "name": "myclabs/deep-copy", + "version": "1.9.3", + "version_normalized": "1.9.3.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/webform.git", - "reference": "8.x-5.1" + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-8.x-5.1.zip", - "reference": "8.x-5.1", - "shasum": "d04743f078dc154685f9532253e6b5ea8dda1a56" + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/007c053ae6f31bba39dfa19a7726f56e9763bbea", + "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea", + "shasum": "" }, "require": { - "drupal/core": "*" + "php": "^7.1" + }, + "replace": { + "myclabs/deep-copy": "self.version" }, "require-dev": { - "drupal/address": "~1.4", - "drupal/chosen": "~2.6", - "drupal/devel": "*", - "drupal/jsonapi": "~2.0", - "drupal/select2": "~1.1", - "drupal/token": "*", - "drupal/webform_access": "*", - "drupal/webform_node": "*", - "drupal/webform_scheduled_email": "*", - "drupal/webform_ui": "*" + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^7.1" }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-5.x": "5.x-dev" - }, - "drupal": { - "version": "8.x-5.1", - "datestamp": "1557418608", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "time": "2019-08-09T12:45:53+00:00", + "type": "library", + "autoload": { + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" }, - "drush": { - "services": { - "drush.services.yml": "^9" - } - } + "files": [ + "src/DeepCopy/deep_copy.php" + ] }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Jacob Rockowitz (jrockowitz)", - "homepage": "https://www.drupal.org/u/jrockowitz", - "role": "Maintainer" - }, - { - "name": "Alexander Trotsenko (bucefal91)", - "homepage": "https://www.drupal.org/u/bucefal91", - "role": "Co-maintainer" - }, - { - "name": "bucefal91", - "homepage": "https://www.drupal.org/user/504128" - }, - { - "name": "fenstrat", - "homepage": "https://www.drupal.org/user/362649" - }, - { - "name": "jrockowitz", - "homepage": "https://www.drupal.org/user/371407" - }, - { - "name": "podarok", - "homepage": "https://www.drupal.org/user/116002" - }, - { - "name": "quicksketch", - "homepage": "https://www.drupal.org/user/35821" - }, - { - "name": "sanchiz", - "homepage": "https://www.drupal.org/user/1671246" - }, - { - "name": "tedbow", - "homepage": "https://www.drupal.org/user/240860" - }, - { - "name": "torotil", - "homepage": "https://www.drupal.org/user/865256" - } + "MIT" ], - "description": "Enables the creation of webforms and questionnaires.", - "homepage": "https://drupal.org/project/webform", - "support": { - "source": "http://cgit.drupalcode.org/webform", - "issues": "https://www.drupal.org/project/issues/webform?version=8.x", - "docs": "https://www.drupal.org/docs/8/modules/webform", - "forum": "https://drupal.stackexchange.com/questions/tagged/webform" - } + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ] } }, - "drush/drush": { - "9.7.1": { - "name": "drush/drush", - "version": "9.7.1", - "version_normalized": "9.7.1.0", + "nikic/php-parser": { + "v4.3.0": { + "name": "nikic/php-parser", + "version": "v4.3.0", + "version_normalized": "4.3.0.0", "source": { "type": "git", - "url": "https://github.com/drush-ops/drush.git", - "reference": "6f9a8d235daec06fd6f47b2d84da675750566479" + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/6f9a8d235daec06fd6f47b2d84da675750566479", - "reference": "6f9a8d235daec06fd6f47b2d84da675750566479", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc", + "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^1.28.1", - "composer/semver": "^1.4", - "consolidation/annotated-command": "^2.12", - "consolidation/config": "^1.2", - "consolidation/filter-via-dot-access-data": "^1", - "consolidation/output-formatters": "^3.3.1", - "consolidation/robo": "^1.4.6", - "consolidation/site-alias": "^3.0.0@stable", - "consolidation/site-process": "^2.0.3", - "ext-dom": "*", - "grasmash/yaml-expander": "^1.1.1", - "league/container": "~2", - "php": ">=5.6.0", - "psr/log": "~1.0", - "psy/psysh": "~0.6", - "symfony/console": "^3.4", - "symfony/event-dispatcher": "^3.4", - "symfony/finder": "^3.4 || ^4.0", - "symfony/process": "^3.4", - "symfony/var-dumper": "^3.4 || ^4.0", - "symfony/yaml": "^3.4", - "webflo/drupal-finder": "^1.1", - "webmozart/path-util": "^2.1.0" + "ext-tokenizer": "*", + "php": ">=7.0" }, "require-dev": { - "composer/installers": "^1.2", - "cweagans/composer-patches": "~1.0", - "drupal/alinks": "1.0.0", - "drupal/devel": "^2", - "drupal/empty_theme": "1.0", - "g1a/composer-test-scenarios": "^3", - "lox/xhprof": "dev-master", - "phpunit/phpunit": "^4.8.36 || ^6.1", - "squizlabs/php_codesniffer": "^2.7 || ^3", - "vlucas/phpdotenv": "^2.4", - "webflo/drupal-core-require-dev": "8.7.x-dev", - "webflo/drupal-core-strict": "8.7.x-dev" + "ircmaxell/php-yacc": "0.0.5", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" }, - "time": "2019-06-30T19:46:39+00:00", + "time": "2019-11-08T13:50:10+00:00", "bin": [ - "drush" + "bin/php-parse" ], "type": "library", "extra": { - "installer-paths": { - "sut/core": [ - "type:drupal-core" - ], - "sut/libraries/{$name}": [ - "type:drupal-library" - ], - "sut/modules/unish/{$name}": [ - "drupal/devel" - ], - "sut/themes/unish/{$name}": [ - "drupal/empty_theme" - ], - "sut/modules/contrib/{$name}": [ - "type:drupal-module" - ], - "sut/profiles/contrib/{$name}": [ - "type:drupal-profile" - ], - "sut/themes/contrib/{$name}": [ - "type:drupal-theme" - ], - "sut/drush/contrib/{$name}": [ - "type:drupal-drush" - ] - }, - "scenarios": { - "php5": { - "config": { - "platform": { - "php": "5.6.38" - } - }, - "require-dev": { - "webflo/drupal-core-strict": "8.6.x-dev", - "webflo/drupal-core-require-dev": "8.6.x-dev" - } - } - }, "branch-alias": { - "dev-master": "9.x-dev" + "dev-master": "4.3-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ] + } + }, + "oomphinc/composer-installers-extender": { + "v1.1.2": { + "name": "oomphinc/composer-installers-extender", + "version": "v1.1.2", + "version_normalized": "1.1.2.0", + "source": { + "type": "git", + "url": "https://github.com/oomphinc/composer-installers-extender.git", + "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56", + "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0", + "composer/installers": "^1.0" + }, + "time": "2017-03-31T16:57:39+00:00", + "type": "composer-plugin", + "extra": { + "class": "OomphInc\\ComposerInstallersExtender\\Plugin" }, "autoload": { "psr-4": { - "Drush\\": "src/", - "Drush\\Internal\\": "src/internal-forks" + "OomphInc\\ComposerInstallersExtender\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Moshe Weitzman", - "email": "weitzman@tejasa.com" - }, - { - "name": "Owen Barton", - "email": "drupal@owenbarton.com" - }, - { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" - }, - { - "name": "Jonathan Araña Cruz", - "email": "jonhattan@faita.net" - }, - { - "name": "Jonathan Hedstrom", - "email": "jhedstrom@gmail.com" - }, - { - "name": "Christopher Gervais", - "email": "chris@ergonlogic.com" - }, - { - "name": "Dave Reid", - "email": "dave@davereid.net" - }, - { - "name": "Damian Lee", - "email": "damiankloip@googlemail.com" + "name": "Stephen Beemsterboer", + "email": "stephen@oomphinc.com", + "homepage": "https://github.com/balbuf" } ], - "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.", - "homepage": "http://www.drush.org" + "description": "Extend the composer/installers plugin to accept any arbitrary package type.", + "homepage": "http://www.oomphinc.com/" } }, - "easyrdf/easyrdf": { - "0.9.1": { - "name": "easyrdf/easyrdf", - "version": "0.9.1", - "version_normalized": "0.9.1.0", + "paragonie/random_compat": { + "v2.0.18": { + "name": "paragonie/random_compat", + "version": "v2.0.18", + "version_normalized": "2.0.18.0", "source": { "type": "git", - "url": "https://github.com/njh/easyrdf.git", - "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566" + "url": "https://github.com/paragonie/random_compat.git", + "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566", - "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db", + "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db", "shasum": "" }, "require": { - "ext-mbstring": "*", - "ext-pcre": "*", - "php": ">=5.2.8" + "php": ">=5.2.0" }, "require-dev": { - "phpunit/phpunit": "~3.5", - "sami/sami": "~1.4", - "squizlabs/php_codesniffer": "~1.4.3" + "phpunit/phpunit": "4.*|5.*" }, "suggest": { - "ml/json-ld": "~1.0" + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." }, - "time": "2015-02-27T09:45:49+00:00", + "time": "2019-01-03T20:59:08+00:00", "type": "library", "autoload": { - "psr-0": { - "EasyRdf_": "lib/" - } + "files": [ + "lib/random.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Nicholas Humfrey", - "email": "njh@aelius.com", - "homepage": "http://www.aelius.com/njh/", - "role": "Developer" - }, - { - "name": "Alexey Zakhlestin", - "email": "indeyets@gmail.com", - "role": "Developer" + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" } ], - "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.", - "homepage": "http://www.easyrdf.org/", + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", "keywords": [ - "Linked Data", - "RDF", - "Semantic Web", - "Turtle", - "rdfa", - "sparql" + "csprng", + "polyfill", + "pseudorandom", + "random" ] - } - }, - "egulias/email-validator": { - "2.1.11": { - "name": "egulias/email-validator", - "version": "2.1.11", - "version_normalized": "2.1.11.0", + }, + "v9.99.99": { + "name": "paragonie/random_compat", + "version": "v9.99.99", + "version_normalized": "9.99.99.0", "source": { "type": "git", - "url": "https://github.com/egulias/EmailValidator.git", - "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23" + "url": "https://github.com/paragonie/random_compat.git", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23", - "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", "shasum": "" }, "require": { - "doctrine/lexer": "^1.0.1", - "php": ">= 5.5" + "php": "^7" }, "require-dev": { - "dominicsayers/isemail": "dev-master", - "phpunit/phpunit": "^4.8.35||^5.7||^6.0", - "satooshi/php-coveralls": "^1.0.1", - "symfony/phpunit-bridge": "^4.4@dev" + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" }, "suggest": { - "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." }, - "time": "2019-08-13T17:33:27+00:00", + "time": "2018-07-02T15:55:56+00:00", "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Egulias\\EmailValidator\\": "EmailValidator" - } - }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { - "name": "Eduardo Gulias Davis" + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" } ], - "description": "A library for validating emails against several RFCs", - "homepage": "https://github.com/egulias/EmailValidator", + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", "keywords": [ - "email", - "emailvalidation", - "emailvalidator", - "validation", - "validator" + "csprng", + "polyfill", + "pseudorandom", + "random" ] } }, - "ezyang/htmlpurifier": { - "v4.12.0": { - "name": "ezyang/htmlpurifier", - "version": "v4.12.0", - "version_normalized": "4.12.0.0", + "pdepend/pdepend": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "2.5.2": { + "name": "pdepend/pdepend", + "version": "2.5.2", + "version_normalized": "2.5.2.0", "source": { "type": "git", - "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "a617e55bc62a87eec73bd456d146d134ad716f03" + "url": "https://github.com/pdepend/pdepend.git", + "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a617e55bc62a87eec73bd456d146d134ad716f03", - "reference": "a617e55bc62a87eec73bd456d146d134ad716f03", + "url": "https://api.github.com/repos/pdepend/pdepend/zipball/9daf26d0368d4a12bed1cacae1a9f3a6f0adf239", + "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239", +======= + "2.6.1": { + "name": "pdepend/pdepend", + "version": "2.6.1", + "version_normalized": "2.6.1.0", + "source": { + "type": "git", + "url": "https://github.com/pdepend/pdepend.git", + "reference": "395b0f356bc0881ef88864bffb4ba1423ca0d111" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pdepend/pdepend/zipball/395b0f356bc0881ef88864bffb4ba1423ca0d111", + "reference": "395b0f356bc0881ef88864bffb4ba1423ca0d111", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "php": ">=5.2" + "php": ">=5.3.7", + "symfony/config": "^2.3.0|^3|^4|^5", + "symfony/dependency-injection": "^2.3.0|^3|^4|^5", + "symfony/filesystem": "^2.3.0|^3|^4|^5" }, "require-dev": { - "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd" + "phpunit/phpunit": "^4.8|^5.7", + "squizlabs/php_codesniffer": "^2.0.0" }, - "time": "2019-10-28T03:44:26+00:00", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2017-12-13T13:21:38+00:00", +======= + "time": "2019-12-21T16:33:56+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "bin": [ + "src/bin/pdepend" + ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, "autoload": { - "psr-0": { - "HTMLPurifier": "library/" - }, - "files": [ - "library/HTMLPurifier.composer.php" - ] + "psr-4": { + "PDepend\\": "src/main/php/PDepend" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" - ], - "authors": [ - { - "name": "Edward Z. Yang", - "email": "admin@htmlpurifier.org", - "homepage": "http://ezyang.com" - } + "BSD-3-Clause" ], - "description": "Standards compliant HTML filter written in PHP", - "homepage": "http://htmlpurifier.org/", - "keywords": [ - "html" - ] + "description": "Official version of pdepend to be handled with Composer" } }, - "fabpot/goutte": { - "v3.2.3": { - "name": "fabpot/goutte", - "version": "v3.2.3", - "version_normalized": "3.2.3.0", + "pear/archive_tar": { + "1.4.8": { + "name": "pear/archive_tar", + "version": "1.4.8", + "version_normalized": "1.4.8.0", "source": { "type": "git", - "url": "https://github.com/FriendsOfPHP/Goutte.git", - "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8" + "url": "https://github.com/pear/Archive_Tar.git", + "reference": "442bdffb7edb84c898cfd94f7ac8500e49d5bbb5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8", - "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8", + "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/442bdffb7edb84c898cfd94f7ac8500e49d5bbb5", + "reference": "442bdffb7edb84c898cfd94f7ac8500e49d5bbb5", "shasum": "" }, "require": { - "guzzlehttp/guzzle": "^6.0", - "php": ">=5.5.0", - "symfony/browser-kit": "~2.1|~3.0|~4.0", - "symfony/css-selector": "~2.1|~3.0|~4.0", - "symfony/dom-crawler": "~2.1|~3.0|~4.0" + "pear/pear-core-minimal": "^1.10.0alpha2", + "php": ">=5.2.0" }, "require-dev": { - "symfony/phpunit-bridge": "^3.3 || ^4" + "phpunit/phpunit": "*" }, - "time": "2018-06-29T15:13:57+00:00", - "type": "application", + "suggest": { + "ext-bz2": "Bz2 compression support.", + "ext-xz": "Lzma2 compression support.", + "ext-zlib": "Gzip compression support." + }, + "time": "2019-10-21T13:31:24+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "1.4.x-dev" } }, "autoload": { - "psr-4": { - "Goutte\\": "Goutte" - }, - "exclude-from-classmap": [ - "Goutte/Tests" - ] + "psr-0": { + "Archive_Tar": "" + } }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "./" + ], "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Vincent Blavet", + "email": "vincent@phpconcept.net" + }, + { + "name": "Greg Beaver", + "email": "greg@chiaraquartet.net" + }, + { + "name": "Michiel Rook", + "email": "mrook@php.net" } ], - "description": "A simple PHP Web Scraper", - "homepage": "https://github.com/FriendsOfPHP/Goutte", + "description": "Tar file management class with compression support (gzip, bzip2, lzma2)", + "homepage": "https://github.com/pear/Archive_Tar", "keywords": [ - "scraper" + "archive", + "tar" ] } }, - "govcms/govcms": { - "1.0.0-beta11": { - "name": "govcms/govcms", - "version": "1.0.0-beta11", - "version_normalized": "1.0.0.0-beta11", + "pear/console_getopt": { + "v1.4.2": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "pear/console_getopt", + "version": "v1.4.2", + "version_normalized": "1.4.2.0", "source": { "type": "git", - "url": "https://github.com/govCMS/govCMS8.git", - "reference": "75021b7081f2f70d84b7e71dfb2187f598504850" + "url": "https://github.com/pear/Console_Getopt.git", + "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/govCMS/govCMS8/zipball/75021b7081f2f70d84b7e71dfb2187f598504850", - "reference": "75021b7081f2f70d84b7e71dfb2187f598504850", + "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0", + "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0", "shasum": "" }, - "require": { - "bower-asset/chosen": "1.8.7", - "bower-asset/dropzone": "5.5.0", - "cweagans/composer-patches": "^1.6", - "drupal-composer/drupal-scaffold": "^2.4", - "drupal/admin_toolbar": "2.0", - "drupal/adminimal_admin_toolbar": "1.9.0", - "drupal/adminimal_theme": "1.4", - "drupal/chosen": "2.6.0", - "drupal/components": "1.0.0", - "drupal/config_filter": "1.4", - "drupal/config_ignore": "2.1", - "drupal/config_perms": "1.2.0", - "drupal/config_split": "1.4", - "drupal/config_update": "1.6", - "drupal/consumers": "1.9", - "drupal/contact_storage": "1.0-beta9", - "drupal/context": "4.0-beta2", - "drupal/core": "8.7.9", - "drupal/ctools": "3.2.0", - "drupal/devel": "2.0", - "drupal/diff": "1.0-rc2", - "drupal/dropzonejs": "2.0.0-alpha3", - "drupal/ds": "3.2", - "drupal/dynamic_entity_reference": "1.7.0", - "drupal/entity_browser": "2.1", - "drupal/entity_class_formatter": "1.1.0", - "drupal/entity_embed": "1.0", - "drupal/entity_reference_display": "1.2.0", - "drupal/entity_reference_revisions": "1.6", - "drupal/environment_indicator": "3.5", - "drupal/events_log_track": "1.1", - "drupal/facets": "1.3", - "drupal/features": "3.8", - "drupal/field_group": "3.0-rc1", - "drupal/focal_point": "1.2", - "drupal/google_analytics": "3.0", - "drupal/govcms8_ui": "1.0.0-alpha1", - "drupal/govcms8_uikit_starter": "1.0-alpha2", - "drupal/graphql": "3.0.0-rc2", - "drupal/honeypot": "1.29", - "drupal/inline_entity_form": "1.0-rc1", - "drupal/linked_field": "1.1.0", - "drupal/linkit": "5.0-beta9", - "drupal/login_security": "1.5", - "drupal/memcache": "2.0", - "drupal/menu_block": "1.5", - "drupal/menu_trail_by_path": "1.1", - "drupal/metatag": "1.9", - "drupal/modifiers": "1.3", - "drupal/module_filter": "3.1", - "drupal/page_manager": "4.0-beta4", - "drupal/panelizer": "4.1", - "drupal/panels": "4.4.0", - "drupal/paragraphs": "1.6", - "drupal/password_policy": "3.0-alpha4", - "drupal/pathauto": "1.3", - "drupal/permissions_by_term": "2.12", - "drupal/recaptcha": "2.4", - "drupal/redirect": "1.3", - "drupal/restui": "1.16.0", - "drupal/robotstxt": "1.2", - "drupal/scheduled_transitions": "1.0.0-rc1", - "drupal/search_api": "1.11", - "drupal/search_api_attachments": "1.0-beta13", - "drupal/search_api_solr": "2.2", - "drupal/seckit": "1.1", - "drupal/shield": "1.2", - "drupal/simple_oauth": "3.14", - "drupal/simple_sitemap": "3.0", - "drupal/swiftmailer": "1.0-beta2", - "drupal/token": "1.5", - "drupal/update_notifications_disable": "1.0", - "drupal/username_enumeration_prevention": "1.0-beta2", - "drupal/video_embed_field": "2.0", - "drupal/webform": "5.1", - "oomphinc/composer-installers-extender": "^1.1", - "php": "^7.1", - "swiftmailer/swiftmailer": "5.4.12", - "symfony/phpunit-bridge": "^3.4.6", - "zaporylie/composer-drupal-optimizations": "^1.1" - }, - "conflict": { - "drupal/core": "7.*", - "drush/drush": "<8.1.10" - }, - "require-dev": { - "grasmash/drupal-security-warning": "^1.1", - "phing/phing": "^2.16" - }, - "suggest": { - "hirak/prestissimo": "^0.3" - }, - "time": "2019-11-13T23:36:28+00:00", - "type": "drupal-profile", - "extra": { - "drupal-scaffold": { - "initial": { - "sites/default/default.services.yml": "sites/default/services.yml", - "sites/default/default.settings.php": "sites/default/settings.php" - }, - "excludes": [ - "sites/development.services.yml" - ] - }, - "installer-types": [ - "bower-asset", - "npm-asset" - ], - "installer-paths": { - "docroot/core": [ - "type:drupal-core" - ], - "docroot/modules/contrib/{$name}": [ - "type:drupal-module" - ], - "docroot/modules/custom/{$name}": [ - "type:drupal-custom-module" - ], - "docroot/profiles/{$name}": [ - "type:drupal-profile" - ], - "docroot/themes/contrib/{$name}": [ - "type:drupal-theme" - ], - "docroot/themes/custom/{$name}": [ - "type:drupal-custom-theme" - ], - "docroot/libraries/{$name}": [ - "type:drupal-library", - "type:bower-asset", - "type:npm-asset" - ], - "drush/contrib/{$name}": [ - "type:drupal-drush" - ] - }, - "enable-patching": true, - "patches": { - "drupal/config_ignore": { - "Offset error within IgnoreFilter::activeReadMultiple() - https://www.drupal.org/project/config_ignore/issues/2972302": "https://www.drupal.org/files/issues/2018-07-31/offset-error-within-2972302-13.patch" - }, - "drupal/panelizer": { - "PanelizerWizardContextForm calls parent constructor without enough arguments under CTools 3.1 - https://www.drupal.org/project/panelizer/issues/3031671": "https://www.drupal.org/files/issues/2019-04-03/3031671-8.patch" - }, - "drupal/metatag": { - "Unset link rel: shortlink, edit-form, version-history and revision, and meta name: Generator, MobileOptimized, HandheldFriendly, viewport from - https://www.drupal.org/project/metatag/issues/2735195#comment-12991008": "https://www.drupal.org/files/issues/2019-02-28/metatag-unset-2735195-42.patch" - }, - "drupal/events_log_track": { - "Events Log Track breaks Entity Browser #5 - https://www.drupal.org/project/events_log_track/issues/2934036": "https://www.drupal.org/files/issues/2018-04-19/2934036-check_empty_submit-5.patch", - "Entities with title longer than 50 characters - https://www.drupal.org/project/events_log_track/issues/2930817": "https://www.drupal.org/files/issues/increase-character-length-2930817-2.patch", - "Event logs for change in workflows - https://www.drupal.org/project/events_log_track/issues/2974170": "https://www.drupal.org/files/issues/2018-06-26/events_log_track-add-workflows-2974170-7.patch", - "Add handlers for file and media entities - https://www.drupal.org/project/events_log_track/issues/2959769": "https://www.drupal.org/files/issues/2018-06-26/events-log-track_add-file-media-2959769-9.patch", - "Skip password logging during failed authentication attempt - https://www.drupal.org/project/events_log_track/issues/3027463": "https://www.drupal.org/files/issues/2019-01-22/event-log-track-auth-3027463-2.patch", - "Fix fatal error when we request password with non-existing users/emails on the Events Log Track User Authentication - https://www.drupal.org/project/events_log_track/issues/3060838#comment-13141212": "https://www.drupal.org/files/issues/2019-06-11/3060838-4.patch" - }, - "drupal/google_analytics": { - "Fatal error when there is a view with the path search/node": "https://www.drupal.org/files/issues/2018-06-18/patch_google_analytics.patch" - } + "time": "2019-02-06T16:52:33+00:00", + "type": "library", + "autoload": { + "psr-0": { + "Console": "./" } }, - "autoload": { - "psr-4": { - "govCMS\\Core\\": "src" + "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "./" + ], + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Greg Beaver", + "email": "cellog@php.net", + "role": "Helper" + }, + { + "name": "Andrei Zmievski", + "email": "andrei@php.net", + "role": "Lead" + }, + { + "name": "Stig Bakken", + "email": "stig@php.net", + "role": "Developer" } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" ], - "description": "GovCMS8 Drupal Distribution", - "homepage": "https://www.govcms.gov.au", - "keywords": [ - "govCMS", - "govCMS8" - ] - } - }, - "govcms/require-dev": { - "1.0.1": { - "name": "govcms/require-dev", - "version": "1.0.1", - "version_normalized": "1.0.1.0", + "description": "More info available on: http://pear.php.net/package/Console_Getopt" + }, + "v1.4.3": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "name": "pear/console_getopt", + "version": "v1.4.2", + "version_normalized": "1.4.2.0", "source": { "type": "git", - "url": "https://github.com/govCMS/require-dev.git", - "reference": "f844f9423e7cd65e0f6db111665a623bbd1cdb7a" + "url": "https://github.com/pear/Console_Getopt.git", + "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/govCMS/require-dev/zipball/f844f9423e7cd65e0f6db111665a623bbd1cdb7a", - "reference": "f844f9423e7cd65e0f6db111665a623bbd1cdb7a", + "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0", + "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0", "shasum": "" }, - "require": { - "behat/behat": "^3.5", - "behat/gherkin": "^4.5", - "drupal/schema_metatag": "^1.4", - "integratedexperts/behat-screenshot": "^0.7.2", - "jakub-onderka/php-parallel-lint": "^1.0", - "phpmd/phpmd": "2.7.0", - "phpunit/phpunit": "6.5" - }, - "time": "2019-10-14T05:26:17+00:00", + "time": "2019-02-06T16:52:33+00:00", "type": "library", - "description": "Require-dev package definition for GovCMS 8", - "support": { - "source": "https://github.com/govCMS/require-dev/tree/1.0.1", - "issues": "https://github.com/govCMS/require-dev/issues" - } + "autoload": { + "psr-0": { + "Console": "./" + } + }, + "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "./" + ], + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Greg Beaver", + "email": "cellog@php.net", + "role": "Helper" + }, + { + "name": "Andrei Zmievski", + "email": "andrei@php.net", + "role": "Lead" + }, + { + "name": "Stig Bakken", + "email": "stig@php.net", + "role": "Developer" + } + ], + "description": "More info available on: http://pear.php.net/package/Console_Getopt" } }, - "govcms/scaffold-tooling": { - "1.0.0": { - "name": "govcms/scaffold-tooling", - "version": "1.0.0", - "version_normalized": "1.0.0.0", + "pear/pear-core-minimal": { + "v1.10.10": { + "name": "pear/pear-core-minimal", + "version": "v1.10.10", + "version_normalized": "1.10.10.0", "source": { "type": "git", - "url": "https://github.com/govCMS/scaffold-tooling.git", - "reference": "5fdf1828b6936d33cb9aea106547b9b302ed16ab" + "url": "https://github.com/pear/pear-core-minimal.git", + "reference": "625a3c429d9b2c1546438679074cac1b089116a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/govCMS/scaffold-tooling/zipball/5fdf1828b6936d33cb9aea106547b9b302ed16ab", - "reference": "5fdf1828b6936d33cb9aea106547b9b302ed16ab", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7", + "reference": "625a3c429d9b2c1546438679074cac1b089116a7", "shasum": "" }, "require": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0", - "drupal/chosen_lib": "2.6.0", - "drupal/clamav": "1.1.0", - "drupal/coder": "^8.3", - "drupal/console": "^1.0.2", - "drupal/drupal-extension": "^3.4", - "drupal/fast_404": "^1.0@alpha", - "drupal/lagoon_logs": "^1.0", - "drupal/redis": "1.1.0", - "drupal/stage_file_proxy": "1.0.0-alpha3", - "drush/drush": "^9.0.0", - "phar-io/manifest": "1.0.1", - "phar-io/version": "1.0.1", - "webflo/drupal-finder": "^1.0.0", - "webmozart/path-util": "^2.3", - "zaporylie/composer-drupal-optimizations": "^1.0" + "pear/console_getopt": "~1.4", + "pear/pear_exception": "~1.0" }, - "time": "2019-10-14T04:24:23+00:00", - "bin": [ - "scripts/tests/govcms-audit", - "scripts/tests/govcms-behat", - "scripts/tests/govcms-lint", - "scripts/tests/govcms-lint-distro", - "scripts/tests/govcms-phpunit", - "scripts/tests/govcms-vet", - "scripts/govcms-deploy" - ], + "replace": { + "rsky/pear-core-min": "self.version" + }, + "time": "2019-11-19T19:00:24+00:00", "type": "library", - "description": "A variety of standard config, scripts and packages to support GovCMS scaffold.", - "support": { - "source": "https://github.com/govCMS/scaffold-tooling/tree/1.0.0", - "issues": "https://github.com/govCMS/scaffold-tooling/issues" - } - } - }, - "grasmash/drupal-security-warning": { - "1.1.1": { - "name": "grasmash/drupal-security-warning", - "version": "1.1.1", - "version_normalized": "1.1.1.0", + "autoload": { + "psr-0": { + "": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "src/" + ], + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Christian Weiske", + "email": "cweiske@php.net", + "role": "Lead" + } + ], + "description": "Minimal set of PEAR core files to be used as composer dependency" + }, + "v1.10.9": { + "name": "pear/pear-core-minimal", + "version": "v1.10.9", + "version_normalized": "1.10.9.0", "source": { "type": "git", - "url": "https://github.com/grasmash/drupal-security-warning.git", - "reference": "cfc5424c84df02be9d094f491e5b57063c15cd72" + "url": "https://github.com/pear/pear-core-minimal.git", + "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/drupal-security-warning/zipball/cfc5424c84df02be9d094f491e5b57063c15cd72", - "reference": "cfc5424c84df02be9d094f491e5b57063c15cd72", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/742be8dd68c746a01e4b0a422258e9c9cae1c37f", + "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0" - }, - "require-dev": { - "composer/composer": "^1.0", - "phpunit/phpunit": "^5.7.0", - "squizlabs/php_codesniffer": "^2.7", - "symfony/filesystem": "^3.2.0", - "symfony/process": "^3.2.0" + "pear/console_getopt": "~1.4", + "pear/pear_exception": "~1.0" }, - "time": "2017-10-10T14:47:08+00:00", - "type": "composer-plugin", - "extra": { - "class": "grasmash\\DrupalSecurityWarning\\Composer\\Plugin", - "branch-alias": { - "dev-master": "1.x-dev" - } + "replace": { + "rsky/pear-core-min": "self.version" }, + "time": "2019-03-13T18:15:44+00:00", + "type": "library", "autoload": { - "psr-4": { - "grasmash\\DrupalSecurityWarning\\": "src/" + "psr-0": { + "": "src/" } }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "src/" + ], "license": [ - "GPL-2.0" + "BSD-3-Clause" ], "authors": [ { - "name": "Matthew Grasmick" + "name": "Christian Weiske", + "email": "cweiske@php.net", + "role": "Lead" } ], - "description": "Warns users installing Drupal project versions not supported by Security Team.", - "keywords": [ - "drupal", - "security" - ] + "description": "Minimal set of PEAR core files to be used as composer dependency" } }, - "grasmash/expander": { - "1.0.0": { - "name": "grasmash/expander", - "version": "1.0.0", + "pear/pear_exception": { + "v1.0.0": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "pear/pear_exception", + "version": "v1.0.0", "version_normalized": "1.0.0.0", "source": { "type": "git", - "url": "https://github.com/grasmash/expander.git", - "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f" + "url": "https://github.com/pear/PEAR_Exception.git", + "reference": "8c18719fdae000b690e3912be401c76e406dd13b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f", - "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f", + "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b", + "reference": "8c18719fdae000b690e3912be401c76e406dd13b", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", - "php": ">=5.4" + "php": ">=4.4.0" }, "require-dev": { - "greg-1-anderson/composer-test-scenarios": "^1", - "phpunit/phpunit": "^4|^5.5.4", - "satooshi/php-coveralls": "^1.0.2|dev-master", - "squizlabs/php_codesniffer": "^2.7" + "phpunit/phpunit": "*" }, - "time": "2017-12-21T22:14:55+00:00", - "type": "library", + "time": "2015-02-10T20:07:52+00:00", + "type": "class", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { - "psr-4": { - "Grasmash\\Expander\\": "src/" + "psr-0": { + "PEAR": "" } }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "." + ], "license": [ - "MIT" + "BSD-2-Clause" ], "authors": [ { - "name": "Matthew Grasmick" + "name": "Helgi Thormar", + "email": "dufuz@php.net" + }, + { + "name": "Greg Beaver", + "email": "cellog@php.net" } ], - "description": "Expands internal property references in PHP arrays file." - } - }, - "grasmash/yaml-expander": { - "1.4.0": { - "name": "grasmash/yaml-expander", - "version": "1.4.0", - "version_normalized": "1.4.0.0", + "description": "The PEAR Exception base class.", + "homepage": "https://github.com/pear/PEAR_Exception", + "keywords": [ + "exception" + ] + }, + "v1.0.1": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "name": "pear/pear_exception", + "version": "v1.0.0", + "version_normalized": "1.0.0.0", "source": { "type": "git", - "url": "https://github.com/grasmash/yaml-expander.git", - "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1" + "url": "https://github.com/pear/PEAR_Exception.git", + "reference": "8c18719fdae000b690e3912be401c76e406dd13b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1", - "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1", + "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b", + "reference": "8c18719fdae000b690e3912be401c76e406dd13b", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", - "php": ">=5.4", - "symfony/yaml": "^2.8.11|^3|^4" + "php": ">=4.4.0" }, "require-dev": { - "greg-1-anderson/composer-test-scenarios": "^1", - "phpunit/phpunit": "^4.8|^5.5.4", - "satooshi/php-coveralls": "^1.0.2|dev-master", - "squizlabs/php_codesniffer": "^2.7" + "phpunit/phpunit": "*" }, - "time": "2017-12-16T16:06:03+00:00", - "type": "library", + "time": "2015-02-10T20:07:52+00:00", + "type": "class", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { - "psr-4": { - "Grasmash\\YamlExpander\\": "src/" + "psr-0": { + "PEAR": "" } }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "." + ], "license": [ - "MIT" + "BSD-2-Clause" ], "authors": [ { - "name": "Matthew Grasmick" + "name": "Helgi Thormar", + "email": "dufuz@php.net" + }, + { + "name": "Greg Beaver", + "email": "cellog@php.net" } ], - "description": "Expands internal property references in a yaml file." + "description": "The PEAR Exception base class.", + "homepage": "https://github.com/pear/PEAR_Exception", + "keywords": [ + "exception" + ] } }, - "guzzlehttp/guzzle": { - "6.4.1": { - "name": "guzzlehttp/guzzle", - "version": "6.4.1", - "version_normalized": "6.4.1.0", + "phar-io/manifest": { + "1.0.1": { + "name": "phar-io/manifest", + "version": "1.0.1", + "version_normalized": "1.0.1.0", "source": { "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "0895c932405407fd3a7368b6910c09a24d26db11" + "url": "https://github.com/phar-io/manifest.git", + "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11", - "reference": "0895c932405407fd3a7368b6910c09a24d26db11", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", + "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", "shasum": "" }, "require": { - "ext-json": "*", - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.6.1", - "php": ">=5.5" - }, - "require-dev": { - "ext-curl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.1" - }, - "suggest": { - "psr/log": "Required for using the Log middleware" + "ext-dom": "*", + "ext-phar": "*", + "phar-io/version": "^1.0.1", + "php": "^5.6 || ^7.0" }, - "time": "2019-10-23T15:58:00+00:00", + "time": "2017-03-05T18:14:27+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "6.3-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { - "psr-4": { - "GuzzleHttp\\": "src/" - }, - "files": [ - "src/functions_include.php" + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" } ], - "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "rest", - "web service" - ] - } - }, - "guzzlehttp/promises": { - "v1.3.1": { - "name": "guzzlehttp/promises", - "version": "v1.3.1", - "version_normalized": "1.3.1.0", + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)" + }, + "1.0.3": { + "name": "phar-io/manifest", + "version": "1.0.3", + "version_normalized": "1.0.3.0", "source": { "type": "git", - "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "url": "https://github.com/phar-io/manifest.git", + "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", "shasum": "" }, "require": { - "php": ">=5.5.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0" + "ext-dom": "*", + "ext-phar": "*", + "phar-io/version": "^2.0", + "php": "^5.6 || ^7.0" }, - "time": "2016-12-20T10:07:11+00:00", + "time": "2018-07-08T19:23:20+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, - "files": [ - "src/functions_include.php" + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" } ], - "description": "Guzzle promises library", - "keywords": [ - "promise" - ] + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)" } }, - "guzzlehttp/psr7": { - "1.6.1": { - "name": "guzzlehttp/psr7", - "version": "1.6.1", - "version_normalized": "1.6.1.0", + "phar-io/version": { + "1.0.1": { + "name": "phar-io/version", + "version": "1.0.1", + "version_normalized": "1.0.1.0", "source": { "type": "git", - "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "url": "https://github.com/phar-io/version.git", + "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df", + "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df", "shasum": "" }, "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" - }, - "provide": { - "psr/http-message-implementation": "1.0" - }, - "require-dev": { - "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" - }, - "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "php": "^5.6 || ^7.0" }, - "time": "2019-07-01T23:21:34+00:00", + "time": "2017-03-05T17:38:23+00:00", "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.6-dev" - } - }, "autoload": { - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - }, - "files": [ - "src/functions_include.php" + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" }, { - "name": "Tobias Schultze", - "homepage": "https://github.com/Tobion" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" } ], - "description": "PSR-7 message implementation that also provides common utility methods", - "keywords": [ - "http", - "message", - "psr-7", - "request", - "response", - "stream", - "uri", - "url" - ] - } - }, - "html2text/html2text": { - "4.0.1": { - "name": "html2text/html2text", - "version": "4.0.1", - "version_normalized": "4.0.1.0", + "description": "Library for handling version information and constraints" + }, + "2.0.1": { + "name": "phar-io/version", + "version": "2.0.1", + "version_normalized": "2.0.1.0", "source": { "type": "git", - "url": "https://github.com/mtibben/html2text.git", - "reference": "f55104b7c9f99b0937f0e20fe051b19f9c0ecad1" + "url": "https://github.com/phar-io/version.git", + "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mtibben/html2text/zipball/f55104b7c9f99b0937f0e20fe051b19f9c0ecad1", - "reference": "f55104b7c9f99b0937f0e20fe051b19f9c0ecad1", + "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", "shasum": "" }, - "require-dev": { - "phpunit/phpunit": "~4" - }, - "suggest": { - "ext-mbstring": "For best performance", - "symfony/polyfill-mbstring": "If you can't install ext-mbstring" + "require": { + "php": "^5.6 || ^7.0" }, - "time": "2016-03-16T23:24:34+00:00", + "time": "2018-07-08T19:19:57+00:00", "type": "library", "autoload": { - "psr-4": { - "Html2Text\\": [ - "src/", - "test/" - ] - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPLv2" + "BSD-3-Clause" ], - "description": "Converts HTML to formatted plain text" + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints" } }, - "instaclick/php-webdriver": { - "1.4.6": { - "name": "instaclick/php-webdriver", - "version": "1.4.6", - "version_normalized": "1.4.6.0", + "phing/phing": { + "2.16.2": { + "name": "phing/phing", + "version": "2.16.2", + "version_normalized": "2.16.2.0", "source": { "type": "git", - "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "bd9405077ca04129a73059a06873bedb5e138402" + "url": "https://github.com/phingofficial/phing.git", + "reference": "d11c6328c450cb3cda4ffa6548aa9cd60f30dd17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/bd9405077ca04129a73059a06873bedb5e138402", - "reference": "bd9405077ca04129a73059a06873bedb5e138402", + "url": "https://api.github.com/repos/phingofficial/phing/zipball/d11c6328c450cb3cda4ffa6548aa9cd60f30dd17", + "reference": "d11c6328c450cb3cda4ffa6548aa9cd60f30dd17", "shasum": "" }, "require": { - "ext-curl": "*", - "php": ">=5.3.2" + "php": ">=5.2.0" }, "require-dev": { - "phpunit/phpunit": "^4.8", - "satooshi/php-coveralls": "^1.0||^2.0" + "ext-pdo_sqlite": "*", + "mikey179/vfsstream": "^1.6", + "pdepend/pdepend": "2.x", + "pear/archive_tar": "1.4.x", + "pear/http_request2": "dev-trunk", + "pear/net_growl": "dev-trunk", + "pear/pear-core-minimal": "1.10.1", + "pear/versioncontrol_git": "@dev", + "pear/versioncontrol_svn": "~0.5", + "phpdocumentor/phpdocumentor": "2.x", + "phploc/phploc": "~2.0.6", + "phpmd/phpmd": "~2.2", + "phpunit/phpunit": ">=3.7", + "sebastian/git": "~1.0", + "sebastian/phpcpd": "2.x", + "siad007/versioncontrol_hg": "^1.0", + "simpletest/simpletest": "^1.1", + "squizlabs/php_codesniffer": "~2.2", + "symfony/yaml": "^2.8 || ^3.1 || ^4.0" }, - "time": "2019-09-23T15:50:44+00:00", + "suggest": { + "pdepend/pdepend": "PHP version of JDepend", + "pear/archive_tar": "Tar file management class", + "pear/versioncontrol_git": "A library that provides OO interface to handle Git repository", + "pear/versioncontrol_svn": "A simple OO-style interface for Subversion, the free/open-source version control system", + "phpdocumentor/phpdocumentor": "Documentation Generator for PHP", + "phploc/phploc": "A tool for quickly measuring the size of a PHP project", + "phpmd/phpmd": "PHP version of PMD tool", + "phpunit/php-code-coverage": "Library that provides collection, processing, and rendering functionality for PHP code coverage information", + "phpunit/phpunit": "The PHP Unit Testing Framework", + "sebastian/phpcpd": "Copy/Paste Detector (CPD) for PHP code", + "siad007/versioncontrol_hg": "A library for interfacing with Mercurial repositories.", + "tedivm/jshrink": "Javascript Minifier built in PHP" + }, + "time": "2020-01-03T10:18:48+00:00", + "bin": [ + "bin/phing" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "2.16.x-dev" } }, "autoload": { - "psr-0": { - "WebDriver": "lib/" - } + "classmap": [ + "classes/phing/" + ] }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "classes" + ], "license": [ - "Apache-2.0" + "LGPL-3.0-only" ], "authors": [ { - "name": "Justin Bishop", - "email": "jubishop@gmail.com", - "role": "Developer" + "name": "Michiel Rook", + "email": "mrook@php.net" }, { - "name": "Anthon Pang", - "email": "apang@softwaredevelopment.ca", - "role": "Fork Maintainer" + "name": "Phing Community", + "homepage": "https://www.phing.info/trac/wiki/Development/Contributors" } ], - "description": "PHP WebDriver for Selenium 2", - "homepage": "http://instaclick.com/", + "description": "PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant.", + "homepage": "https://www.phing.info/", "keywords": [ - "browser", - "selenium", - "webdriver", - "webtest" + "build", + "phing", + "task", + "tool" ] } }, - "integratedexperts/behat-screenshot": { - "0.7.2": { - "name": "integratedexperts/behat-screenshot", - "version": "0.7.2", - "version_normalized": "0.7.2.0", + "phpdocumentor/reflection-common": { + "2.0.0": { + "name": "phpdocumentor/reflection-common", + "version": "2.0.0", + "version_normalized": "2.0.0.0", "source": { "type": "git", - "url": "https://github.com/integratedexperts/behat-screenshot.git", - "reference": "37f2c9c43122c188ce604d1555968b6deaa422dc" + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/integratedexperts/behat-screenshot/zipball/37f2c9c43122c188ce604d1555968b6deaa422dc", - "reference": "37f2c9c43122c188ce604d1555968b6deaa422dc", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a", + "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a", "shasum": "" }, "require": { - "behat/behat": "^3.3.1", - "behat/mink-selenium2-driver": "^1.3", - "symfony/finder": "^3.2|^4.0" + "php": ">=7.1" }, "require-dev": { - "behat/mink": "~1.5", - "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4", - "escapestudios/symfony2-coding-standard": "~2.0", - "integratedexperts/behat-phpserver": "^0.1", - "squizlabs/php_codesniffer": "2.*" + "phpunit/phpunit": "~6" }, - "time": "2018-05-30T06:56:55+00:00", + "time": "2018-08-07T13:53:10+00:00", "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, "autoload": { - "psr-0": { - "IntegratedExperts\\BehatScreenshot": "src/" + "psr-4": { + "phpDocumentor\\Reflection\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Alex Skrypnyk", - "email": "alex.designworks@gmail.com" - }, - { - "name": "Alexander Sharkov", - "email": "blade.didan@gmail.com" + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" } ], - "description": "Behat Context to capture screenshots from failed tests" + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ] } }, - "jakub-onderka/php-console-color": { - "v0.2": { - "name": "jakub-onderka/php-console-color", - "version": "v0.2", - "version_normalized": "0.2.0.0", + "phpdocumentor/reflection-docblock": { + "4.3.4": { + "name": "phpdocumentor/reflection-docblock", + "version": "4.3.4", + "version_normalized": "4.3.4.0", "source": { "type": "git", - "url": "https://github.com/JakubOnderka/PHP-Console-Color.git", - "reference": "d5deaecff52a0d61ccb613bb3804088da0307191" + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191", - "reference": "d5deaecff52a0d61ccb613bb3804088da0307191", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c", + "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c", "shasum": "" }, "require": { - "php": ">=5.4.0" + "php": "^7.0", + "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0", + "phpdocumentor/type-resolver": "~0.4 || ^1.0.0", + "webmozart/assert": "^1.0" }, "require-dev": { - "jakub-onderka/php-code-style": "1.0", - "jakub-onderka/php-parallel-lint": "1.0", - "jakub-onderka/php-var-dump-check": "0.*", - "phpunit/phpunit": "~4.3", - "squizlabs/php_codesniffer": "1.*" + "doctrine/instantiator": "^1.0.5", + "mockery/mockery": "^1.0", + "phpdocumentor/type-resolver": "0.4.*", + "phpunit/phpunit": "^6.4" + }, + "time": "2019-12-28T18:55:12+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } }, - "time": "2018-09-29T17:23:10+00:00", - "type": "library", "autoload": { "psr-4": { - "JakubOnderka\\PhpConsoleColor\\": "src/" + "phpDocumentor\\Reflection\\": [ + "src/" + ] } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-2-Clause" + "MIT" ], "authors": [ { - "name": "Jakub Onderka", - "email": "jakub.onderka@gmail.com" + "name": "Mike van Riel", + "email": "me@mikevanriel.com" } - ] + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock." } }, - "jakub-onderka/php-console-highlighter": { - "v0.4": { - "name": "jakub-onderka/php-console-highlighter", - "version": "v0.4", - "version_normalized": "0.4.0.0", + "phpdocumentor/type-resolver": { + "1.0.1": { + "name": "phpdocumentor/type-resolver", + "version": "1.0.1", + "version_normalized": "1.0.1.0", "source": { "type": "git", - "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git", - "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547" + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547", - "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9", + "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9", "shasum": "" }, "require": { - "ext-tokenizer": "*", - "jakub-onderka/php-console-color": "~0.2", - "php": ">=5.4.0" + "php": "^7.1", + "phpdocumentor/reflection-common": "^2.0" }, "require-dev": { - "jakub-onderka/php-code-style": "~1.0", - "jakub-onderka/php-parallel-lint": "~1.0", - "jakub-onderka/php-var-dump-check": "~0.1", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "~1.5" + "ext-tokenizer": "^7.1", + "mockery/mockery": "~1", + "phpunit/phpunit": "^7.0" }, - "time": "2018-09-29T18:48:56+00:00", + "time": "2019-08-22T18:11:29+00:00", "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, "autoload": { "psr-4": { - "JakubOnderka\\PhpConsoleHighlighter\\": "src/" + "phpDocumentor\\Reflection\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -11144,89 +14234,141 @@ ], "authors": [ { - "name": "Jakub Onderka", - "email": "acci@acci.cz", - "homepage": "http://www.acci.cz/" + "name": "Mike van Riel", + "email": "me@mikevanriel.com" } ], - "description": "Highlight PHP code in terminal" + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names" } }, - "jakub-onderka/php-parallel-lint": { - "v1.0.0": { - "name": "jakub-onderka/php-parallel-lint", - "version": "v1.0.0", - "version_normalized": "1.0.0.0", + "phpmd/phpmd": { + "2.7.0": { + "name": "phpmd/phpmd", + "version": "2.7.0", + "version_normalized": "2.7.0.0", "source": { "type": "git", - "url": "https://github.com/JakubOnderka/PHP-Parallel-Lint.git", - "reference": "04fbd3f5fb1c83f08724aa58a23db90bd9086ee8" + "url": "https://github.com/phpmd/phpmd.git", + "reference": "a05a999c644f4bc9a204846017db7bb7809fbe4c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Parallel-Lint/zipball/04fbd3f5fb1c83f08724aa58a23db90bd9086ee8", - "reference": "04fbd3f5fb1c83f08724aa58a23db90bd9086ee8", + "url": "https://api.github.com/repos/phpmd/phpmd/zipball/a05a999c644f4bc9a204846017db7bb7809fbe4c", + "reference": "a05a999c644f4bc9a204846017db7bb7809fbe4c", "shasum": "" }, "require": { - "php": ">=5.3.3" + "ext-xml": "*", + "pdepend/pdepend": "^2.5", + "php": ">=5.3.9" }, "require-dev": { - "jakub-onderka/php-console-highlighter": "~0.3", - "nette/tester": "~1.3", - "squizlabs/php_codesniffer": "~2.7" - }, - "suggest": { - "jakub-onderka/php-console-highlighter": "Highlight syntax in code snippet" + "gregwar/rst": "^1.0", + "mikey179/vfsstream": "^1.6.4", + "phpunit/phpunit": "^4.8.36 || ^5.7.27", + "squizlabs/php_codesniffer": "^2.0" }, - "time": "2018-02-24T15:31:20+00:00", + "time": "2019-07-30T21:13:32+00:00", "bin": [ - "parallel-lint" + "src/bin/phpmd" ], "type": "library", "autoload": { - "classmap": [ - "./" - ] + "psr-0": { + "PHPMD\\": "src/main/php" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-2-Clause" + "BSD-3-Clause" ], "authors": [ { - "name": "Jakub Onderka", - "email": "ahoj@jakubonderka.cz" + "name": "Manuel Pichler", + "email": "github@manuel-pichler.de", + "homepage": "https://github.com/manuelpichler", + "role": "Project Founder" + }, + { + "name": "Marc Würth", + "email": "ravage@bluewin.ch", + "homepage": "https://github.com/ravage84", + "role": "Project Maintainer" + }, + { + "name": "Other contributors", + "homepage": "https://github.com/phpmd/phpmd/graphs/contributors", + "role": "Contributors" } ], - "description": "This tool check syntax of PHP files about 20x faster than serial check.", - "homepage": "https://github.com/JakubOnderka/PHP-Parallel-Lint" + "description": "PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD.", + "homepage": "https://phpmd.org/", + "keywords": [ + "mess detection", + "mess detector", + "pdepend", + "phpmd", + "pmd" + ] } }, - "kub-at/php-simple-html-dom-parser": { - "1.9.1": { - "name": "kub-at/php-simple-html-dom-parser", - "version": "1.9.1", - "version_normalized": "1.9.1.0", + "phpspec/prophecy": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "1.9.0": { + "name": "phpspec/prophecy", + "version": "1.9.0", + "version_normalized": "1.9.0.0", "source": { "type": "git", - "url": "https://github.com/Kub-AT/php-simple-html-dom-parser.git", - "reference": "ff22f98bfd9235115c128059076f3eb740d66913" + "url": "https://github.com/phpspec/prophecy.git", + "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Kub-AT/php-simple-html-dom-parser/zipball/ff22f98bfd9235115c128059076f3eb740d66913", - "reference": "ff22f98bfd9235115c128059076f3eb740d66913", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203", + "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203", +======= + "1.10.1": { + "name": "phpspec/prophecy", + "version": "1.10.1", + "version_normalized": "1.10.1.0", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "cbe1df668b3fe136bcc909126a0f529a78d4cbbc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/cbe1df668b3fe136bcc909126a0f529a78d4cbbc", + "reference": "cbe1df668b3fe136bcc909126a0f529a78d4cbbc", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "php": ">=5.3.2" + "doctrine/instantiator": "^1.0.2", + "php": "^5.3|^7.0", + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", + "sebastian/comparator": "^1.1|^2.0|^3.0", + "sebastian/recursion-context": "^1.0|^2.0|^3.0" }, - "time": "2019-10-25T12:34:43+00:00", + "require-dev": { + "phpspec/phpspec": "^2.5|^3.2", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-10-03T11:07:50+00:00", +======= + "time": "2019-12-22T21:05:45+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8.x-dev" + } + }, "autoload": { - "psr-0": { - "KubAT\\PhpSimple\\HtmlDomParser": "src/" + "psr-4": { + "Prophecy\\": "src/Prophecy" } }, "notification-url": "https://packagist.org/downloads/", @@ -11235,62 +14377,72 @@ ], "authors": [ { - "name": "S.C. Chen", - "email": "me578022@gmail.com" + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" }, { - "name": "Jakub Stawowy", - "email": "Kub-AT@users.noreply.github.com" + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" } ], - "description": "PHP Simple HTML DOM Parser with namespace and PHP 7.3 compatible", - "homepage": "http://simplehtmldom.sourceforge.net/", + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", "keywords": [ - "Simple", - "dom", - "html" + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" ] } }, - "lcobucci/jwt": { - "3.3.1": { - "name": "lcobucci/jwt", - "version": "3.3.1", - "version_normalized": "3.3.1.0", + "phpunit/php-code-coverage": { + "5.3.2": { + "name": "phpunit/php-code-coverage", + "version": "5.3.2", + "version_normalized": "5.3.2.0", "source": { "type": "git", - "url": "https://github.com/lcobucci/jwt.git", - "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18" + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "c89677919c5dd6d3b3852f230a663118762218ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", - "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac", + "reference": "c89677919c5dd6d3b3852f230a663118762218ac", "shasum": "" }, "require": { - "ext-mbstring": "*", - "ext-openssl": "*", - "php": "^5.6 || ^7.0" + "ext-dom": "*", + "ext-xmlwriter": "*", + "php": "^7.0", + "phpunit/php-file-iterator": "^1.4.2", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-token-stream": "^2.0.1", + "sebastian/code-unit-reverse-lookup": "^1.0.1", + "sebastian/environment": "^3.0", + "sebastian/version": "^2.0.1", + "theseer/tokenizer": "^1.1" }, "require-dev": { - "mikey179/vfsstream": "~1.5", - "phpmd/phpmd": "~2.2", - "phpunit/php-invoker": "~1.1", - "phpunit/phpunit": "^5.7 || ^7.3", - "squizlabs/php_codesniffer": "~2.3" + "phpunit/phpunit": "^6.0" }, - "time": "2019-05-24T18:30:49+00:00", + "suggest": { + "ext-xdebug": "^2.5.5" + }, + "time": "2018-04-06T15:36:58+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "5.3.x-dev" } }, "autoload": { - "psr-4": { - "Lcobucci\\JWT\\": "src" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -11298,443 +14450,397 @@ ], "authors": [ { - "name": "Luís Otávio Cobucci Oblonczyk", - "email": "lcobucci@gmail.com", - "role": "Developer" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "A simple library to work with JSON Web Token and JSON Web Signature", + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", "keywords": [ - "JWS", - "jwt" + "coverage", + "testing", + "xunit" ] } }, - "league/container": { - "2.4.1": { - "name": "league/container", - "version": "2.4.1", - "version_normalized": "2.4.1.0", + "phpunit/php-file-iterator": { + "1.4.5": { + "name": "phpunit/php-file-iterator", + "version": "1.4.5", + "version_normalized": "1.4.5.0", "source": { "type": "git", - "url": "https://github.com/thephpleague/container.git", - "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0" + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0", - "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", "shasum": "" }, "require": { - "container-interop/container-interop": "^1.2", - "php": "^5.4.0 || ^7.0" - }, - "provide": { - "container-interop/container-interop-implementation": "^1.2", - "psr/container-implementation": "^1.0" - }, - "replace": { - "orno/di": "~2.0" - }, - "require-dev": { - "phpunit/phpunit": "4.*" + "php": ">=5.3.3" }, - "time": "2017-05-10T09:20:27+00:00", + "time": "2017-11-27T13:52:08+00:00", "type": "library", "extra": { "branch-alias": { - "dev-2.x": "2.x-dev", - "dev-1.x": "1.x-dev" + "dev-master": "1.4.x-dev" } }, "autoload": { - "psr-4": { - "League\\Container\\": "src" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Phil Bennett", - "email": "philipobenito@gmail.com", - "homepage": "http://www.philipobenito.com", - "role": "Developer" + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" } ], - "description": "A fast and intuitive dependency injection container.", - "homepage": "https://github.com/thephpleague/container", + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", "keywords": [ - "container", - "dependency", - "di", - "injection", - "league", - "provider", - "service" + "filesystem", + "iterator" ] } }, - "league/event": { - "2.2.0": { - "name": "league/event", - "version": "2.2.0", - "version_normalized": "2.2.0.0", + "phpunit/php-text-template": { + "1.2.1": { + "name": "phpunit/php-text-template", + "version": "1.2.1", + "version_normalized": "1.2.1.0", "source": { "type": "git", - "url": "https://github.com/thephpleague/event.git", - "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119" + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119", - "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", "shasum": "" }, "require": { - "php": ">=5.4.0" - }, - "require-dev": { - "henrikbjorn/phpspec-code-coverage": "~1.0.1", - "phpspec/phpspec": "^2.2" + "php": ">=5.3.3" }, - "time": "2018-11-26T11:52:41+00:00", + "time": "2015-06-21T13:50:34+00:00", "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.2-dev" - } - }, "autoload": { - "psr-4": { - "League\\Event\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Frank de Jonge", - "email": "info@frenky.net" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Event package", + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", "keywords": [ - "emitter", - "event", - "listener" + "template" ] } }, - "league/oauth2-server": { - "7.4.0": { - "name": "league/oauth2-server", - "version": "7.4.0", - "version_normalized": "7.4.0.0", + "phpunit/php-timer": { + "1.0.9": { + "name": "phpunit/php-timer", + "version": "1.0.9", + "version_normalized": "1.0.9.0", "source": { "type": "git", - "url": "https://github.com/thephpleague/oauth2-server.git", - "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf" + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf", - "reference": "2eb1cf79e59d807d89c256e7ac5e2bf8bdbd4acf", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", + "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", "shasum": "" }, "require": { - "defuse/php-encryption": "^2.1", - "ext-openssl": "*", - "lcobucci/jwt": "^3.2.2", - "league/event": "^2.1", - "php": ">=7.0.0", - "psr/http-message": "^1.0.1" - }, - "replace": { - "league/oauth2server": "*", - "lncd/oauth2": "*" + "php": "^5.3.3 || ^7.0" }, "require-dev": { - "phpstan/phpstan": "^0.9.2", - "phpstan/phpstan-phpunit": "^0.9.4", - "phpstan/phpstan-strict-rules": "^0.9.0", - "phpunit/phpunit": "^6.3 || ^7.0", - "roave/security-advisories": "dev-master", - "zendframework/zend-diactoros": "^1.3.2" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" }, - "time": "2019-05-05T09:22:01+00:00", + "time": "2017-02-26T11:10:40+00:00", "type": "library", - "autoload": { - "psr-4": { - "League\\OAuth2\\Server\\": "src/" + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Alex Bilbie", - "email": "hello@alexbilbie.com", - "homepage": "http://www.alexbilbie.com", - "role": "Developer" - }, - { - "name": "Andy Millington", - "email": "andrew@noexceptions.io", - "homepage": "https://www.noexceptions.io", - "role": "Developer" + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" } ], - "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.", - "homepage": "https://oauth2.thephpleague.com/", + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", "keywords": [ - "Authentication", - "api", - "auth", - "authorisation", - "authorization", - "oauth", - "oauth 2", - "oauth 2.0", - "oauth2", - "protect", - "resource", - "secure", - "server" + "timer" ] } }, - "maennchen/zipstream-php": { - "v0.4.1": { - "name": "maennchen/zipstream-php", - "version": "v0.4.1", - "version_normalized": "0.4.1.0", + "phpunit/php-token-stream": { + "2.0.2": { + "name": "phpunit/php-token-stream", + "version": "2.0.2", + "version_normalized": "2.0.2.0", "source": { "type": "git", - "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "89e0cdb3c9ecabef4da988852003781a7802afb7" + "url": "https://github.com/sebastianbergmann/php-token-stream.git", + "reference": "791198a2c6254db10131eecfe8c06670700904db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/89e0cdb3c9ecabef4da988852003781a7802afb7", - "reference": "89e0cdb3c9ecabef4da988852003781a7802afb7", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db", + "reference": "791198a2c6254db10131eecfe8c06670700904db", "shasum": "" }, "require": { - "ext-mbstring": "*", - "php": ">= 5.6" + "ext-tokenizer": "*", + "php": "^7.0" }, "require-dev": { - "phpunit/phpunit": "4.3.*" + "phpunit/phpunit": "^6.2.4" }, - "time": "2016-09-13T10:29:17+00:00", + "time": "2017-11-27T05:48:46+00:00", "type": "library", - "autoload": { - "psr-4": { - "ZipStream\\": "src/" + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" } }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Paul Duncan", - "email": "pabs@pablotron.org" - }, - { - "name": "Jesse Donat", - "email": "donatj@gmail.com" - }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ { - "name": "Jonatan Männchen", - "email": "jonatan@maennchen.ch" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.", + "description": "Wrapper around PHP's tokenizer extension.", + "homepage": "https://github.com/sebastianbergmann/php-token-stream/", "keywords": [ - "stream", - "zip" + "tokenizer" ] } }, - "masterminds/html5": { - "2.7.0": { - "name": "masterminds/html5", - "version": "2.7.0", - "version_normalized": "2.7.0.0", + "phpunit/phpunit": { + "6.5.0": { + "name": "phpunit/phpunit", + "version": "6.5.0", + "version_normalized": "6.5.0.0", "source": { "type": "git", - "url": "https://github.com/Masterminds/html5-php.git", - "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2" + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "9582244325db2dda80ee8bd920c3f353b0b6329d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2", - "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9582244325db2dda80ee8bd920c3f353b0b6329d", + "reference": "9582244325db2dda80ee8bd920c3f353b0b6329d", "shasum": "" }, "require": { - "ext-ctype": "*", "ext-dom": "*", + "ext-json": "*", "ext-libxml": "*", - "php": ">=5.3.0" + "ext-mbstring": "*", + "ext-xml": "*", + "myclabs/deep-copy": "^1.6.1", + "phar-io/manifest": "^1.0.1", + "phar-io/version": "^1.0", + "php": "^7.0", + "phpspec/prophecy": "^1.7", + "phpunit/php-code-coverage": "^5.2.3", + "phpunit/php-file-iterator": "^1.4.3", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-timer": "^1.0.9", + "phpunit/phpunit-mock-objects": "^5.0", + "sebastian/comparator": "^2.1", + "sebastian/diff": "^2.0", + "sebastian/environment": "^3.1", + "sebastian/exporter": "^3.1", + "sebastian/global-state": "^2.0", + "sebastian/object-enumerator": "^3.0.3", + "sebastian/resource-operations": "^1.0", + "sebastian/version": "^2.0.1" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "3.0.2", + "phpunit/dbunit": "<3.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35", - "sami/sami": "~2.0", - "satooshi/php-coveralls": "1.0.*" + "ext-pdo": "*" }, - "time": "2019-07-25T07:03:26+00:00", + "suggest": { + "ext-xdebug": "*", + "phpunit/php-invoker": "^1.1" + }, + "time": "2017-11-30T16:20:46+00:00", + "bin": [ + "phpunit" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "2.7-dev" + "dev-master": "6.5.x-dev" } }, "autoload": { - "psr-4": { - "Masterminds\\": "src" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Matt Butcher", - "email": "technosophos@gmail.com" - }, - { - "name": "Matt Farina", - "email": "matt@mattfarina.com" - }, - { - "name": "Asmir Mustafic", - "email": "goetas@gmail.com" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "An HTML5 parser and serializer.", - "homepage": "http://masterminds.github.io/html5-php", + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", "keywords": [ - "HTML5", - "dom", - "html", - "parser", - "querypath", - "serializer", - "xml" + "phpunit", + "testing", + "xunit" ] } }, - "mkalkbrenner/php-htmldiff-advanced": { - "0.0.8": { - "name": "mkalkbrenner/php-htmldiff-advanced", - "version": "0.0.8", - "version_normalized": "0.0.8.0", + "phpunit/phpunit-mock-objects": { + "5.0.10": { + "name": "phpunit/phpunit-mock-objects", + "version": "5.0.10", + "version_normalized": "5.0.10.0", "source": { "type": "git", - "url": "https://github.com/mkalkbrenner/php-htmldiff.git", - "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9" + "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", + "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mkalkbrenner/php-htmldiff/zipball/3a714b48c9c3d3730baaf6d3949691e654cd37c9", - "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f", + "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f", "shasum": "" }, "require": { - "caxy/php-htmldiff": ">=0.0.6", - "php": ">=5.5.0" + "doctrine/instantiator": "^1.0.5", + "php": "^7.0", + "phpunit/php-text-template": "^1.2.1", + "sebastian/exporter": "^3.1" }, - "time": "2016-07-25T17:07:32+00:00", + "conflict": { + "phpunit/phpunit": "<6.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.5.11" + }, + "suggest": { + "ext-soap": "*" + }, + "time": "2018-08-09T05:50:03+00:00", "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0.x-dev" + } + }, "autoload": { - "files": [ - "src/HtmlDiffAdvancedInterface.php", - "src/HtmlDiffAdvanced.php" + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GNU General Public License V2" + "BSD-3-Clause" ], - "description": "An add-on for the php-htmldiff library for comparing two HTML files/snippets and highlighting the differences using simple HTML.", - "homepage": "https://github.com/mkalkbrenner/php-htmldiff", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Mock Object library for PHPUnit", + "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", "keywords": [ - "diff", - "html" - ] + "mock", + "xunit" + ], + "abandoned": true } }, - "monolog/monolog": { - "1.25.2": { - "name": "monolog/monolog", - "version": "1.25.2", - "version_normalized": "1.25.2.0", + "psr/container": { + "1.0.0": { + "name": "psr/container", + "version": "1.0.0", + "version_normalized": "1.0.0.0", "source": { "type": "git", - "url": "https://github.com/Seldaek/monolog.git", - "reference": "d5e2fb341cb44f7e2ab639d12a1e5901091ec287" + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/d5e2fb341cb44f7e2ab639d12a1e5901091ec287", - "reference": "d5e2fb341cb44f7e2ab639d12a1e5901091ec287", + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", "shasum": "" }, "require": { - "php": ">=5.3.0", - "psr/log": "~1.0" - }, - "provide": { - "psr/log-implementation": "1.0.0" - }, - "require-dev": { - "aws/aws-sdk-php": "^2.4.9 || ^3.0", - "doctrine/couchdb": "~1.0@dev", - "graylog2/gelf-php": "~1.0", - "jakub-onderka/php-parallel-lint": "0.9", - "php-amqplib/php-amqplib": "~2.4", - "php-console/php-console": "^3.1.3", - "phpunit/phpunit": "~4.5", - "phpunit/phpunit-mock-objects": "2.3.0", - "ruflin/elastica": ">=0.90 <3.0", - "sentry/sentry": "^0.13", - "swiftmailer/swiftmailer": "^5.3|^6.0" - }, - "suggest": { - "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", - "doctrine/couchdb": "Allow sending log messages to a CouchDB server", - "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", - "ext-mongo": "Allow sending log messages to a MongoDB server", - "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", - "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", - "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", - "php-console/php-console": "Allow sending log messages to Google Chrome", - "rollbar/rollbar": "Allow sending log messages to Rollbar", - "ruflin/elastica": "Allow sending log messages to an Elastic Search server", - "sentry/sentry": "Allow sending log messages to a Sentry server" + "php": ">=5.3.0" }, - "time": "2019-11-13T10:00:05+00:00", + "time": "2017-02-14T16:28:37+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { - "Monolog\\": "src/Monolog" + "Psr\\Container\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -11743,154 +14849,181 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "Sends your logs to files, sockets, inboxes, databases and various web services", - "homepage": "http://github.com/Seldaek/monolog", + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", "keywords": [ - "log", - "logging", - "psr-3" + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" ] } }, - "myclabs/deep-copy": { - "1.9.3": { - "name": "myclabs/deep-copy", - "version": "1.9.3", - "version_normalized": "1.9.3.0", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "psr/http-message": { + "1.0.1": { + "name": "psr/http-message", + "version": "1.0.1", + "version_normalized": "1.0.1.0", "source": { "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea" + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/007c053ae6f31bba39dfa19a7726f56e9763bbea", - "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", "shasum": "" }, "require": { - "php": "^7.1" + "php": ">=5.3.0" }, - "replace": { - "myclabs/deep-copy": "self.version" + "time": "2016-08-06T14:39:51+00:00", +======= + "psr/event-dispatcher": { + "1.0.0": { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" }, - "require-dev": { - "doctrine/collections": "^1.0", - "doctrine/common": "^2.6", - "phpunit/phpunit": "^7.1" + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" }, - "time": "2019-08-09T12:45:53+00:00", + "require": { + "php": ">=7.2.0" + }, + "time": "2019-01-08T18:20:26+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, "autoload": { "psr-4": { - "DeepCopy\\": "src/DeepCopy/" - }, - "files": [ - "src/DeepCopy/deep_copy.php" - ] + "Psr\\EventDispatcher\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Create deep copies (clones) of your objects", + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" +======= + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" ] } }, - "nikic/php-parser": { - "v4.3.0": { - "name": "nikic/php-parser", - "version": "v4.3.0", - "version_normalized": "4.3.0.0", + "psr/http-message": { + "1.0.1": { + "name": "psr/http-message", + "version": "1.0.1", + "version_normalized": "1.0.1.0", "source": { "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc" + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc", - "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", "shasum": "" }, "require": { - "ext-tokenizer": "*", - "php": ">=7.0" - }, - "require-dev": { - "ircmaxell/php-yacc": "0.0.5", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" + "php": ">=5.3.0" }, - "time": "2019-11-08T13:50:10+00:00", - "bin": [ - "bin/php-parse" - ], + "time": "2016-08-06T14:39:51+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { - "PhpParser\\": "lib/PhpParser" + "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Nikita Popov" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "A PHP parser written in PHP", + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", "keywords": [ - "parser", - "php" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" ] } }, - "oomphinc/composer-installers-extender": { - "v1.1.2": { - "name": "oomphinc/composer-installers-extender", - "version": "v1.1.2", - "version_normalized": "1.1.2.0", + "psr/log": { + "1.1.0": { + "name": "psr/log", + "version": "1.1.0", + "version_normalized": "1.1.0.0", "source": { "type": "git", - "url": "https://github.com/oomphinc/composer-installers-extender.git", - "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56" + "url": "https://github.com/php-fig/log.git", + "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56", - "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56", + "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0", - "composer/installers": "^1.0" + "php": ">=5.3.0" }, - "time": "2017-03-31T16:57:39+00:00", - "type": "composer-plugin", + "time": "2018-11-20T15:27:04+00:00", + "type": "library", "extra": { - "class": "OomphInc\\ComposerInstallersExtender\\Plugin" + "branch-alias": { + "dev-master": "1.0.x-dev" + } }, "autoload": { "psr-4": { - "OomphInc\\ComposerInstallersExtender\\": "src/" + "Psr\\Log\\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", @@ -11899,46 +15032,47 @@ ], "authors": [ { - "name": "Stephen Beemsterboer", - "email": "stephen@oomphinc.com", - "homepage": "https://github.com/balbuf" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "Extend the composer/installers plugin to accept any arbitrary package type.", - "homepage": "http://www.oomphinc.com/" - } - }, - "paragonie/random_compat": { - "v2.0.18": { - "name": "paragonie/random_compat", - "version": "v2.0.18", - "version_normalized": "2.0.18.0", + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ] + }, + "1.1.2": { + "name": "psr/log", + "version": "1.1.2", + "version_normalized": "1.1.2.0", "source": { "type": "git", - "url": "https://github.com/paragonie/random_compat.git", - "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db" + "url": "https://github.com/php-fig/log.git", + "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db", - "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db", + "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801", + "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801", "shasum": "" }, "require": { - "php": ">=5.2.0" - }, - "require-dev": { - "phpunit/phpunit": "4.*|5.*" - }, - "suggest": { - "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + "php": ">=5.3.0" }, - "time": "2019-01-03T20:59:08+00:00", + "time": "2019-11-01T11:05:21+00:00", "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, "autoload": { - "files": [ - "lib/random.php" - ] + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -11946,360 +15080,400 @@ ], "authors": [ { - "name": "Paragon Initiative Enterprises", - "email": "security@paragonie.com", - "homepage": "https://paragonie.com" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", "keywords": [ - "csprng", - "polyfill", - "pseudorandom", - "random" + "log", + "psr", + "psr-3" ] - }, - "v9.99.99": { - "name": "paragonie/random_compat", - "version": "v9.99.99", - "version_normalized": "9.99.99.0", + } + }, + "psy/psysh": { + "v0.9.9": { + "name": "psy/psysh", + "version": "v0.9.9", + "version_normalized": "0.9.9.0", "source": { "type": "git", - "url": "https://github.com/paragonie/random_compat.git", - "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" + "url": "https://github.com/bobthecow/psysh.git", + "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", - "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e", + "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e", "shasum": "" }, "require": { - "php": "^7" + "dnoegel/php-xdg-base-dir": "0.1", + "ext-json": "*", + "ext-tokenizer": "*", + "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*", + "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0", + "php": ">=5.4.0", + "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0", + "symfony/var-dumper": "~2.7|~3.0|~4.0" }, "require-dev": { - "phpunit/phpunit": "4.*|5.*", - "vimeo/psalm": "^1" + "bamarni/composer-bin-plugin": "^1.2", + "hoa/console": "~2.15|~3.16", + "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0" }, "suggest": { - "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", + "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.", + "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit." }, - "time": "2018-07-02T15:55:56+00:00", + "time": "2018-10-13T15:16:03+00:00", + "bin": [ + "bin/psysh" + ], "type": "library", + "extra": { + "branch-alias": { + "dev-develop": "0.9.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { - "name": "Paragon Initiative Enterprises", - "email": "security@paragonie.com", - "homepage": "https://paragonie.com" + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" } ], - "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", "keywords": [ - "csprng", - "polyfill", - "pseudorandom", - "random" + "REPL", + "console", + "interactive", + "shell" ] } }, - "pdepend/pdepend": { - "2.5.2": { - "name": "pdepend/pdepend", - "version": "2.5.2", - "version_normalized": "2.5.2.0", + "ralouphie/getallheaders": { + "3.0.3": { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "version_normalized": "3.0.3.0", "source": { "type": "git", - "url": "https://github.com/pdepend/pdepend.git", - "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239" + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pdepend/pdepend/zipball/9daf26d0368d4a12bed1cacae1a9f3a6f0adf239", - "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", "shasum": "" }, "require": { - "php": ">=5.3.7", - "symfony/config": "^2.3.0|^3|^4", - "symfony/dependency-injection": "^2.3.0|^3|^4", - "symfony/filesystem": "^2.3.0|^3|^4" + "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "^4.8|^5.7", - "squizlabs/php_codesniffer": "^2.0.0" + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" }, - "time": "2017-12-13T13:21:38+00:00", - "bin": [ - "src/bin/pdepend" - ], + "time": "2019-03-08T08:55:37+00:00", "type": "library", "autoload": { - "psr-4": { - "PDepend\\": "src/main/php/PDepend" - } + "files": [ + "src/getallheaders.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], - "description": "Official version of pdepend to be handled with Composer" + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders." } }, - "pear/archive_tar": { - "1.4.8": { - "name": "pear/archive_tar", - "version": "1.4.8", - "version_normalized": "1.4.8.0", + "sebastian/code-unit-reverse-lookup": { + "1.0.1": { + "name": "sebastian/code-unit-reverse-lookup", + "version": "1.0.1", + "version_normalized": "1.0.1.0", "source": { "type": "git", - "url": "https://github.com/pear/Archive_Tar.git", - "reference": "442bdffb7edb84c898cfd94f7ac8500e49d5bbb5" + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/442bdffb7edb84c898cfd94f7ac8500e49d5bbb5", - "reference": "442bdffb7edb84c898cfd94f7ac8500e49d5bbb5", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", "shasum": "" }, "require": { - "pear/pear-core-minimal": "^1.10.0alpha2", - "php": ">=5.2.0" + "php": "^5.6 || ^7.0" }, "require-dev": { - "phpunit/phpunit": "*" - }, - "suggest": { - "ext-bz2": "Bz2 compression support.", - "ext-xz": "Lzma2 compression support.", - "ext-zlib": "Gzip compression support." + "phpunit/phpunit": "^5.7 || ^6.0" }, - "time": "2019-10-21T13:31:24+00:00", + "time": "2017-03-04T06:30:41+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { - "psr-0": { - "Archive_Tar": "" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "./" - ], "license": [ "BSD-3-Clause" ], "authors": [ { - "name": "Vincent Blavet", - "email": "vincent@phpconcept.net" - }, - { - "name": "Greg Beaver", - "email": "greg@chiaraquartet.net" - }, - { - "name": "Michiel Rook", - "email": "mrook@php.net" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "Tar file management class with compression support (gzip, bzip2, lzma2)", - "homepage": "https://github.com/pear/Archive_Tar", - "keywords": [ - "archive", - "tar" - ] + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/" } }, - "pear/console_getopt": { - "v1.4.2": { - "name": "pear/console_getopt", - "version": "v1.4.2", - "version_normalized": "1.4.2.0", + "sebastian/comparator": { + "2.1.3": { + "name": "sebastian/comparator", + "version": "2.1.3", + "version_normalized": "2.1.3.0", "source": { "type": "git", - "url": "https://github.com/pear/Console_Getopt.git", - "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0" + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0", - "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9", + "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9", "shasum": "" }, - "time": "2019-02-06T16:52:33+00:00", + "require": { + "php": "^7.0", + "sebastian/diff": "^2.0 || ^3.0", + "sebastian/exporter": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^6.4" + }, + "time": "2018-02-01T13:46:46+00:00", "type": "library", - "autoload": { - "psr-0": { - "Console": "./" + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "./" - ], "license": [ - "BSD-2-Clause" + "BSD-3-Clause" ], "authors": [ { - "name": "Greg Beaver", - "email": "cellog@php.net", - "role": "Helper" + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" }, { - "name": "Andrei Zmievski", - "email": "andrei@php.net", - "role": "Lead" + "name": "Volker Dusch", + "email": "github@wallbash.com" }, { - "name": "Stig Bakken", - "email": "stig@php.net", - "role": "Developer" + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "More info available on: http://pear.php.net/package/Console_Getopt" - } - }, - "pear/pear-core-minimal": { - "v1.10.10": { - "name": "pear/pear-core-minimal", - "version": "v1.10.10", - "version_normalized": "1.10.10.0", + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ] + }, + "3.0.2": { + "name": "sebastian/comparator", + "version": "3.0.2", + "version_normalized": "3.0.2.0", "source": { "type": "git", - "url": "https://github.com/pear/pear-core-minimal.git", - "reference": "625a3c429d9b2c1546438679074cac1b089116a7" + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7", - "reference": "625a3c429d9b2c1546438679074cac1b089116a7", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", "shasum": "" }, "require": { - "pear/console_getopt": "~1.4", - "pear/pear_exception": "~1.0" + "php": "^7.1", + "sebastian/diff": "^3.0", + "sebastian/exporter": "^3.1" }, - "replace": { - "rsky/pear-core-min": "self.version" + "require-dev": { + "phpunit/phpunit": "^7.1" }, - "time": "2019-11-19T19:00:24+00:00", + "time": "2018-07-12T15:12:46+00:00", "type": "library", - "autoload": { - "psr-0": { - "": "src/" + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "src/" - ], "license": [ "BSD-3-Clause" ], "authors": [ { - "name": "Christian Weiske", - "email": "cweiske@php.net", - "role": "Lead" + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "Minimal set of PEAR core files to be used as composer dependency" + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ] } }, - "pear/pear_exception": { - "v1.0.0": { - "name": "pear/pear_exception", - "version": "v1.0.0", - "version_normalized": "1.0.0.0", + "sebastian/diff": { + "2.0.1": { + "name": "sebastian/diff", + "version": "2.0.1", + "version_normalized": "2.0.1.0", "source": { "type": "git", - "url": "https://github.com/pear/PEAR_Exception.git", - "reference": "8c18719fdae000b690e3912be401c76e406dd13b" + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b", - "reference": "8c18719fdae000b690e3912be401c76e406dd13b", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", + "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", "shasum": "" }, "require": { - "php": ">=4.4.0" + "php": "^7.0" }, "require-dev": { - "phpunit/phpunit": "*" + "phpunit/phpunit": "^6.2" }, - "time": "2015-02-10T20:07:52+00:00", - "type": "class", + "time": "2017-08-03T08:09:46+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.0-dev" } }, "autoload": { - "psr-0": { - "PEAR": "" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "." - ], "license": [ - "BSD-2-Clause" + "BSD-3-Clause" ], "authors": [ { - "name": "Helgi Thormar", - "email": "dufuz@php.net" + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" }, { - "name": "Greg Beaver", - "email": "cellog@php.net" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "The PEAR Exception base class.", - "homepage": "https://github.com/pear/PEAR_Exception", + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", "keywords": [ - "exception" + "diff" ] - } - }, - "phar-io/manifest": { - "1.0.1": { - "name": "phar-io/manifest", - "version": "1.0.1", - "version_normalized": "1.0.1.0", + }, + "3.0.2": { + "name": "sebastian/diff", + "version": "3.0.2", + "version_normalized": "3.0.2.0", "source": { "type": "git", - "url": "https://github.com/phar-io/manifest.git", - "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", - "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29", + "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-phar": "*", - "phar-io/version": "^1.0.1", - "php": "^5.6 || ^7.0" + "php": "^7.1" }, - "time": "2017-03-05T18:14:27+00:00", + "require-dev": { + "phpunit/phpunit": "^7.5 || ^8.0", + "symfony/process": "^2 || ^3.3 || ^4" + }, + "time": "2019-02-04T06:01:07+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -12313,49 +15487,51 @@ ], "authors": [ { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" }, { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "email": "sebastian@phpunit.de" } ], - "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)" - }, - "1.0.3": { - "name": "phar-io/manifest", - "version": "1.0.3", - "version_normalized": "1.0.3.0", + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ] + } + }, + "sebastian/environment": { + "3.1.0": { + "name": "sebastian/environment", + "version": "3.1.0", + "version_normalized": "3.1.0.0", "source": { "type": "git", - "url": "https://github.com/phar-io/manifest.git", - "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", - "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", + "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-phar": "*", - "phar-io/version": "^2.0", - "php": "^5.6 || ^7.0" + "php": "^7.0" }, - "time": "2018-07-08T19:23:20+00:00", + "require-dev": { + "phpunit/phpunit": "^6.1" + }, + "time": "2017-07-01T08:51:00+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "3.1.x-dev" } }, "autoload": { @@ -12368,46 +15544,51 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" - }, { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "email": "sebastian@phpunit.de" } ], - "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)" + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ] } }, - "phar-io/version": { - "1.0.1": { - "name": "phar-io/version", - "version": "1.0.1", - "version_normalized": "1.0.1.0", + "sebastian/exporter": { + "3.1.2": { + "name": "sebastian/exporter", + "version": "3.1.2", + "version_normalized": "3.1.2.0", "source": { "type": "git", - "url": "https://github.com/phar-io/version.git", - "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df" + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df", - "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e", + "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.0", + "sebastian/recursion-context": "^3.0" }, - "time": "2017-03-05T17:38:23+00:00", + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^6.0" + }, + "time": "2019-09-14T09:02:43+00:00", "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, "autoload": { "classmap": [ "src/" @@ -12419,43 +15600,66 @@ ], "authors": [ { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" }, { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" }, { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" } ], - "description": "Library for handling version information and constraints" - }, - "2.0.1": { - "name": "phar-io/version", - "version": "2.0.1", - "version_normalized": "2.0.1.0", + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "http://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ] + } + }, + "sebastian/global-state": { + "2.0.0": { + "name": "sebastian/global-state", + "version": "2.0.0", + "version_normalized": "2.0.0.0", "source": { "type": "git", - "url": "https://github.com/phar-io/version.git", - "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", - "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" }, - "time": "2018-07-08T19:19:57+00:00", + "suggest": { + "ext-uopz": "*" + }, + "time": "2017-04-27T15:39:26+00:00", "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, "autoload": { "classmap": [ "src/" @@ -12466,861 +15670,772 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" - }, { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "email": "sebastian@phpunit.de" } ], - "description": "Library for handling version information and constraints" + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ] } }, - "phing/phing": { - "2.16.1": { - "name": "phing/phing", - "version": "2.16.1", - "version_normalized": "2.16.1.0", + "sebastian/object-enumerator": { + "3.0.3": { + "name": "sebastian/object-enumerator", + "version": "3.0.3", + "version_normalized": "3.0.3.0", "source": { "type": "git", - "url": "https://github.com/phingofficial/phing.git", - "reference": "cbe0f969e434e269af91b4160b86fe899c6e07c7" + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phingofficial/phing/zipball/cbe0f969e434e269af91b4160b86fe899c6e07c7", - "reference": "cbe0f969e434e269af91b4160b86fe899c6e07c7", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", "shasum": "" }, "require": { - "php": ">=5.2.0", - "symfony/yaml": "^3.1 || ^4.0" + "php": "^7.0", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" }, "require-dev": { - "ext-pdo_sqlite": "*", - "mikey179/vfsstream": "^1.6", - "pdepend/pdepend": "2.x", - "pear/archive_tar": "1.4.x", - "pear/http_request2": "dev-trunk", - "pear/net_growl": "dev-trunk", - "pear/pear-core-minimal": "1.10.1", - "pear/versioncontrol_git": "@dev", - "pear/versioncontrol_svn": "~0.5", - "phpdocumentor/phpdocumentor": "2.x", - "phploc/phploc": "~2.0.6", - "phpmd/phpmd": "~2.2", - "phpunit/phpunit": ">=3.7", - "sebastian/git": "~1.0", - "sebastian/phpcpd": "2.x", - "siad007/versioncontrol_hg": "^1.0", - "simpletest/simpletest": "^1.1", - "squizlabs/php_codesniffer": "~2.2" - }, - "suggest": { - "pdepend/pdepend": "PHP version of JDepend", - "pear/archive_tar": "Tar file management class", - "pear/versioncontrol_git": "A library that provides OO interface to handle Git repository", - "pear/versioncontrol_svn": "A simple OO-style interface for Subversion, the free/open-source version control system", - "phpdocumentor/phpdocumentor": "Documentation Generator for PHP", - "phploc/phploc": "A tool for quickly measuring the size of a PHP project", - "phpmd/phpmd": "PHP version of PMD tool", - "phpunit/php-code-coverage": "Library that provides collection, processing, and rendering functionality for PHP code coverage information", - "phpunit/phpunit": "The PHP Unit Testing Framework", - "sebastian/phpcpd": "Copy/Paste Detector (CPD) for PHP code", - "siad007/versioncontrol_hg": "A library for interfacing with Mercurial repositories.", - "tedivm/jshrink": "Javascript Minifier built in PHP" + "phpunit/phpunit": "^6.0" }, - "time": "2018-01-25T13:18:09+00:00", - "bin": [ - "bin/phing" - ], + "time": "2017-08-03T12:35:26+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "2.16.x-dev" + "dev-master": "3.0.x-dev" } }, "autoload": { "classmap": [ - "classes/phing/" + "src/" ] }, "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "classes" - ], "license": [ - "LGPL-3.0" + "BSD-3-Clause" ], "authors": [ { - "name": "Michiel Rook", - "email": "mrook@php.net" - }, - { - "name": "Phing Community", - "homepage": "https://www.phing.info/trac/wiki/Development/Contributors" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant.", - "homepage": "https://www.phing.info/", - "keywords": [ - "build", - "phing", - "task", - "tool" - ] + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/" } }, - "phpdocumentor/reflection-common": { - "2.0.0": { - "name": "phpdocumentor/reflection-common", - "version": "2.0.0", - "version_normalized": "2.0.0.0", + "sebastian/object-reflector": { + "1.1.1": { + "name": "sebastian/object-reflector", + "version": "1.1.1", + "version_normalized": "1.1.1.0", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a" + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "773f97c67f28de00d397be301821b06708fca0be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a", - "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", + "reference": "773f97c67f28de00d397be301821b06708fca0be", "shasum": "" }, "require": { - "php": ">=7.1" + "php": "^7.0" }, "require-dev": { - "phpunit/phpunit": "~6" + "phpunit/phpunit": "^6.0" }, - "time": "2018-08-07T13:53:10+00:00", + "time": "2017-03-29T09:07:27+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "1.1-dev" } }, "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Jaap van Otterdijk", - "email": "opensource@ijaap.nl" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "Common reflection classes used by phpdocumentor to reflect the code structure", - "homepage": "http://www.phpdoc.org", - "keywords": [ - "FQSEN", - "phpDocumentor", - "phpdoc", - "reflection", - "static analysis" - ] + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/" } }, - "phpdocumentor/reflection-docblock": { - "4.3.2": { - "name": "phpdocumentor/reflection-docblock", - "version": "4.3.2", - "version_normalized": "4.3.2.0", + "sebastian/recursion-context": { + "3.0.0": { + "name": "sebastian/recursion-context", + "version": "3.0.0", + "version_normalized": "3.0.0.0", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e" + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e", - "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", "shasum": "" }, "require": { - "php": "^7.0", - "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0", - "phpdocumentor/type-resolver": "~0.4 || ^1.0.0", - "webmozart/assert": "^1.0" + "php": "^7.0" }, "require-dev": { - "doctrine/instantiator": "^1.0.5", - "mockery/mockery": "^1.0", - "phpunit/phpunit": "^6.4" + "phpunit/phpunit": "^6.0" }, - "time": "2019-09-12T14:27:41+00:00", + "time": "2017-03-03T06:23:57+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev" + "dev-master": "3.0.x-dev" } }, "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" } ], - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock." + "description": "Provides functionality to recursively process PHP variables", + "homepage": "http://www.github.com/sebastianbergmann/recursion-context" } }, - "phpdocumentor/type-resolver": { - "1.0.1": { - "name": "phpdocumentor/type-resolver", - "version": "1.0.1", - "version_normalized": "1.0.1.0", + "sebastian/resource-operations": { + "1.0.0": { + "name": "sebastian/resource-operations", + "version": "1.0.0", + "version_normalized": "1.0.0.0", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9" + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9", - "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", + "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", "shasum": "" }, "require": { - "php": "^7.1", - "phpdocumentor/reflection-common": "^2.0" - }, - "require-dev": { - "ext-tokenizer": "^7.1", - "mockery/mockery": "~1", - "phpunit/phpunit": "^7.0" + "php": ">=5.6.0" }, - "time": "2019-08-22T18:11:29+00:00", + "time": "2015-07-28T20:34:47+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names" - } - }, - "phpmd/phpmd": { - "2.7.0": { - "name": "phpmd/phpmd", - "version": "2.7.0", - "version_normalized": "2.7.0.0", + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations" + } + }, + "sebastian/version": { + "2.0.1": { + "name": "sebastian/version", + "version": "2.0.1", + "version_normalized": "2.0.1.0", "source": { "type": "git", - "url": "https://github.com/phpmd/phpmd.git", - "reference": "a05a999c644f4bc9a204846017db7bb7809fbe4c" + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpmd/phpmd/zipball/a05a999c644f4bc9a204846017db7bb7809fbe4c", - "reference": "a05a999c644f4bc9a204846017db7bb7809fbe4c", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", "shasum": "" }, "require": { - "ext-xml": "*", - "pdepend/pdepend": "^2.5", - "php": ">=5.3.9" - }, - "require-dev": { - "gregwar/rst": "^1.0", - "mikey179/vfsstream": "^1.6.4", - "phpunit/phpunit": "^4.8.36 || ^5.7.27", - "squizlabs/php_codesniffer": "^2.0" + "php": ">=5.6" }, - "time": "2019-07-30T21:13:32+00:00", - "bin": [ - "src/bin/phpmd" - ], + "time": "2016-10-03T07:35:21+00:00", "type": "library", - "autoload": { - "psr-0": { - "PHPMD\\": "src/main/php" + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { - "name": "Manuel Pichler", - "email": "github@manuel-pichler.de", - "homepage": "https://github.com/manuelpichler", - "role": "Project Founder" - }, - { - "name": "Marc Würth", - "email": "ravage@bluewin.ch", - "homepage": "https://github.com/ravage84", - "role": "Project Maintainer" - }, - { - "name": "Other contributors", - "homepage": "https://github.com/phpmd/phpmd/graphs/contributors", - "role": "Contributors" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD.", - "homepage": "https://phpmd.org/", - "keywords": [ - "mess detection", - "mess detector", - "pdepend", - "phpmd", - "pmd" - ] + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version" } }, - "phpspec/prophecy": { - "1.9.0": { - "name": "phpspec/prophecy", - "version": "1.9.0", - "version_normalized": "1.9.0.0", + "solarium/solarium": { + "4.1.0": { + "name": "solarium/solarium", + "version": "4.1.0", + "version_normalized": "4.1.0.0", "source": { "type": "git", - "url": "https://github.com/phpspec/prophecy.git", - "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203" + "url": "https://github.com/solariumphp/solarium.git", + "reference": "4dfd71fefb307cac1ec394b672f2f57256752e4b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203", - "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203", + "url": "https://api.github.com/repos/solariumphp/solarium/zipball/4dfd71fefb307cac1ec394b672f2f57256752e4b", + "reference": "4dfd71fefb307cac1ec394b672f2f57256752e4b", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.0.2", - "php": "^5.3|^7.0", - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", - "sebastian/comparator": "^1.1|^2.0|^3.0", - "sebastian/recursion-context": "^1.0|^2.0|^3.0" + "php": "^7.0", + "symfony/event-dispatcher": "^2.7 || ^3.0 || ^4.0" }, "require-dev": { - "phpspec/phpspec": "^2.5|^3.2", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" + "guzzlehttp/guzzle": "^3.8 || ^6.2", + "php-coveralls/php-coveralls": "^1.0", + "phpunit/phpunit": "^6.5", + "squizlabs/php_codesniffer": "^1.4", + "zendframework/zendframework": "^3.0" }, - "time": "2019-10-03T11:07:50+00:00", + "suggest": { + "minimalcode/search": "Query builder compatible with Solarium, allows simplified solr-query handling" + }, + "time": "2018-08-09T13:01:25+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8.x-dev" + "dev-4.0.x": "4.0.x-dev" } }, "autoload": { "psr-4": { - "Prophecy\\": "src/Prophecy" + "Solarium\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - }, - { - "name": "Marcello Duarte", - "email": "marcello.duarte@gmail.com" + "name": "See GitHub contributors", + "homepage": "https://github.com/basdenooijer/solarium/contributors" } ], - "description": "Highly opinionated mocking framework for PHP 5.3+", - "homepage": "https://github.com/phpspec/prophecy", + "description": "PHP Solr client", + "homepage": "http://www.solarium-project.org", "keywords": [ - "Double", - "Dummy", - "fake", - "mock", - "spy", - "stub" + "php", + "search", + "solr" ] } }, - "phpunit/php-code-coverage": { - "5.3.2": { - "name": "phpunit/php-code-coverage", - "version": "5.3.2", - "version_normalized": "5.3.2.0", + "squizlabs/php_codesniffer": { + "3.5.2": { + "name": "squizlabs/php_codesniffer", + "version": "3.5.2", + "version_normalized": "3.5.2.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "c89677919c5dd6d3b3852f230a663118762218ac" + "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", + "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac", - "reference": "c89677919c5dd6d3b3852f230a663118762218ac", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/65b12cdeaaa6cd276d4c3033a95b9b88b12701e7", + "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7", "shasum": "" }, "require": { - "ext-dom": "*", + "ext-simplexml": "*", + "ext-tokenizer": "*", "ext-xmlwriter": "*", - "php": "^7.0", - "phpunit/php-file-iterator": "^1.4.2", - "phpunit/php-text-template": "^1.2.1", - "phpunit/php-token-stream": "^2.0.1", - "sebastian/code-unit-reverse-lookup": "^1.0.1", - "sebastian/environment": "^3.0", - "sebastian/version": "^2.0.1", - "theseer/tokenizer": "^1.1" + "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^6.0" - }, - "suggest": { - "ext-xdebug": "^2.5.5" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" }, - "time": "2018-04-06T15:36:58+00:00", + "time": "2019-10-28T04:36:32+00:00", + "bin": [ + "bin/phpcs", + "bin/phpcbf" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "5.3.x-dev" + "dev-master": "3.x-dev" } }, - "autoload": { - "classmap": [ - "src/" - ] - }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", + "name": "Greg Sherwood", "role": "lead" } ], - "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", - "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", + "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", "keywords": [ - "coverage", - "testing", - "xunit" + "phpcs", + "standards" ] } }, - "phpunit/php-file-iterator": { - "1.4.5": { - "name": "phpunit/php-file-iterator", - "version": "1.4.5", - "version_normalized": "1.4.5.0", + "stack/builder": { + "v1.0.5": { + "name": "stack/builder", + "version": "v1.0.5", + "version_normalized": "1.0.5.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" + "url": "https://github.com/stackphp/builder.git", + "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", - "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", + "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a", + "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=5.3.0", + "symfony/http-foundation": "~2.1|~3.0|~4.0", + "symfony/http-kernel": "~2.1|~3.0|~4.0" }, - "time": "2017-11-27T13:52:08+00:00", + "require-dev": { + "silex/silex": "~1.0" + }, + "time": "2017-11-18T14:57:29+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "1.0-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-0": { + "Stack": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sb@sebastian-bergmann.de", - "role": "lead" + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" } ], - "description": "FilterIterator implementation that filters files based on a list of suffixes.", - "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "description": "Builder for stack middlewares based on HttpKernelInterface.", "keywords": [ - "filesystem", - "iterator" + "stack" ] } }, - "phpunit/php-text-template": { - "1.2.1": { - "name": "phpunit/php-text-template", - "version": "1.2.1", - "version_normalized": "1.2.1.0", + "stecman/symfony-console-completion": { + "0.10.1": { + "name": "stecman/symfony-console-completion", + "version": "0.10.1", + "version_normalized": "0.10.1.0", "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + "type": "git", + "url": "https://github.com/stecman/symfony-console-completion.git", + "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/7bfa9b93e216896419f2f8de659935d7e04fecd8", + "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=5.3.2", + "symfony/console": "~2.3 || ~3.0 || ~4.0" }, - "time": "2015-06-21T13:50:34+00:00", + "require-dev": { + "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4" + }, + "time": "2019-04-29T03:20:18+00:00", "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.10.x-dev" + } + }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Stephen Holdaway", + "email": "stephen@stecman.co.nz" } ], - "description": "Simple template engine.", - "homepage": "https://github.com/sebastianbergmann/php-text-template/", - "keywords": [ - "template" - ] + "description": "Automatic BASH completion for Symfony Console Component based applications." } }, - "phpunit/php-timer": { - "1.0.9": { - "name": "phpunit/php-timer", - "version": "1.0.9", - "version_normalized": "1.0.9.0", + "swiftmailer/swiftmailer": { + "v5.4.12": { + "name": "swiftmailer/swiftmailer", + "version": "v5.4.12", + "version_normalized": "5.4.12.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f" + "url": "https://github.com/swiftmailer/swiftmailer.git", + "reference": "181b89f18a90f8925ef805f950d47a7190e9b950" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", - "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950", + "reference": "181b89f18a90f8925ef805f950d47a7190e9b950", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0" + "php": ">=5.3.3" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" + "mockery/mockery": "~0.9.1", + "symfony/phpunit-bridge": "~3.2" }, - "time": "2017-02-26T11:10:40+00:00", + "time": "2018-07-31T09:26:32+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "5.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "files": [ + "lib/swift_required.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sb@sebastian-bergmann.de", - "role": "lead" + "name": "Chris Corbyn" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" } ], - "description": "Utility class for timing", - "homepage": "https://github.com/sebastianbergmann/php-timer/", + "description": "Swiftmailer, free feature-rich PHP mailer", + "homepage": "https://swiftmailer.symfony.com", "keywords": [ - "timer" + "email", + "mail", + "mailer" ] } }, - "phpunit/php-token-stream": { - "2.0.2": { - "name": "phpunit/php-token-stream", - "version": "2.0.2", - "version_normalized": "2.0.2.0", + "symfony-cmf/routing": { + "1.4.1": { + "name": "symfony-cmf/routing", + "version": "1.4.1", + "version_normalized": "1.4.1.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "791198a2c6254db10131eecfe8c06670700904db" + "url": "https://github.com/symfony-cmf/routing.git", + "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db", - "reference": "791198a2c6254db10131eecfe8c06670700904db", + "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac", + "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac", "shasum": "" }, "require": { - "ext-tokenizer": "*", - "php": "^7.0" + "php": "^5.3.9|^7.0", + "psr/log": "1.*", + "symfony/http-kernel": "^2.2|3.*", + "symfony/routing": "^2.2|3.*" }, "require-dev": { - "phpunit/phpunit": "^6.2.4" + "friendsofsymfony/jsrouting-bundle": "^1.1", + "symfony-cmf/testing": "^1.3", + "symfony/config": "^2.2|3.*", + "symfony/dependency-injection": "^2.0.5|3.*", + "symfony/event-dispatcher": "^2.1|3.*" }, - "time": "2017-11-27T05:48:46+00:00", + "suggest": { + "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)" + }, + "time": "2017-05-09T08:10:41+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "1.4-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Symfony\\Cmf\\Component\\Routing\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Symfony CMF Community", + "homepage": "https://github.com/symfony-cmf/Routing/contributors" } ], - "description": "Wrapper around PHP's tokenizer extension.", - "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers", + "homepage": "http://cmf.symfony.com", "keywords": [ - "tokenizer" + "database", + "routing" ] } }, - "phpunit/phpunit": { - "6.5.0": { - "name": "phpunit/phpunit", - "version": "6.5.0", - "version_normalized": "6.5.0.0", + "symfony/browser-kit": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/browser-kit", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", +======= + "v4.4.2": { + "name": "symfony/browser-kit", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "9582244325db2dda80ee8bd920c3f353b0b6329d" + "url": "https://github.com/symfony/browser-kit.git", + "reference": "b14fa08508afd152257d5dcc7adb5f278654d972" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9582244325db2dda80ee8bd920c3f353b0b6329d", - "reference": "9582244325db2dda80ee8bd920c3f353b0b6329d", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/b14fa08508afd152257d5dcc7adb5f278654d972", + "reference": "b14fa08508afd152257d5dcc7adb5f278654d972", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-json": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "ext-xml": "*", - "myclabs/deep-copy": "^1.6.1", - "phar-io/manifest": "^1.0.1", - "phar-io/version": "^1.0", - "php": "^7.0", - "phpspec/prophecy": "^1.7", - "phpunit/php-code-coverage": "^5.2.3", - "phpunit/php-file-iterator": "^1.4.3", - "phpunit/php-text-template": "^1.2.1", - "phpunit/php-timer": "^1.0.9", - "phpunit/phpunit-mock-objects": "^5.0", - "sebastian/comparator": "^2.1", - "sebastian/diff": "^2.0", - "sebastian/environment": "^3.1", - "sebastian/exporter": "^3.1", - "sebastian/global-state": "^2.0", - "sebastian/object-enumerator": "^3.0.3", - "sebastian/resource-operations": "^1.0", - "sebastian/version": "^2.0.1" - }, - "conflict": { - "phpdocumentor/reflection-docblock": "3.0.2", - "phpunit/dbunit": "<3.0" + "php": "^7.1.3", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "symfony/dom-crawler": "~3.4|~4.0" +======= + "symfony/dom-crawler": "^3.4|^4.0|^5.0" }, "require-dev": { - "ext-pdo": "*" + "symfony/css-selector": "^3.4|^4.0|^5.0", + "symfony/http-client": "^4.3|^5.0", + "symfony/mime": "^4.3|^5.0", + "symfony/process": "^3.4|^4.0|^5.0" }, "suggest": { - "ext-xdebug": "*", - "phpunit/php-invoker": "^1.1" + "symfony/process": "" }, - "time": "2017-11-30T16:20:46+00:00", - "bin": [ - "phpunit" - ], + "time": "2019-10-28T20:30:34+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "6.5.x-dev" + "dev-master": "4.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\BrowserKit\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "The PHP Unit Testing framework.", - "homepage": "https://phpunit.de/", - "keywords": [ - "phpunit", - "testing", - "xunit" - ] - } - }, - "phpunit/phpunit-mock-objects": { - "5.0.10": { - "name": "phpunit/phpunit-mock-objects", - "version": "5.0.10", - "version_normalized": "5.0.10.0", + "description": "Symfony BrowserKit Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/browser-kit", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", - "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f" + "url": "https://github.com/symfony/browser-kit.git", + "reference": "a195f83b0ba20e622a5baa726af96826b8f5616b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f", - "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/a195f83b0ba20e622a5baa726af96826b8f5616b", + "reference": "a195f83b0ba20e622a5baa726af96826b8f5616b", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.0.5", - "php": "^7.0", - "phpunit/php-text-template": "^1.2.1", - "sebastian/exporter": "^3.1" - }, - "conflict": { - "phpunit/phpunit": "<6.0" + "php": "^7.2.5", + "symfony/dom-crawler": "^4.4|^5.0" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json }, "require-dev": { - "phpunit/phpunit": "^6.5.11" + "symfony/css-selector": "~3.4|~4.0", + "symfony/http-client": "^4.3", + "symfony/mime": "^4.3", + "symfony/process": "~3.4|~4.0" }, "suggest": { - "ext-soap": "*" + "symfony/process": "" }, - "time": "2018-08-09T05:50:03+00:00", + "time": "2019-10-28T17:07:32+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0.x-dev" + "dev-master": "4.3-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\BrowserKit\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Mock Object library for PHPUnit", - "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", - "keywords": [ - "mock", - "xunit" - ], - "abandoned": true + "description": "Symfony BrowserKit Component", + "homepage": "https://symfony.com" } }, - "psr/container": { - "1.0.0": { - "name": "psr/container", - "version": "1.0.0", - "version_normalized": "1.0.0.0", + "symfony/class-loader": { + "v3.4.35": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "symfony/class-loader", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + "url": "https://github.com/symfony/class-loader.git", + "reference": "e212b06996819a2bce026a63da03b7182d05a690" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690", + "reference": "e212b06996819a2bce026a63da03b7182d05a690", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^5.5.9|>=7.0.8" }, - "time": "2017-02-14T16:28:37+00:00", + "require-dev": { + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/polyfill-apcu": "~1.1" + }, + "suggest": { + "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM" + }, + "time": "2019-08-20T13:31:17+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Psr\\Container\\": "src/" - } + "Symfony\\Component\\ClassLoader\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13328,51 +16443,57 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", - "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" - ] - } - }, - "psr/http-message": { - "1.0.1": { - "name": "psr/http-message", - "version": "1.0.1", - "version_normalized": "1.0.1.0", + "description": "Symfony ClassLoader Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "name": "symfony/class-loader", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + "url": "https://github.com/symfony/class-loader.git", + "reference": "e212b06996819a2bce026a63da03b7182d05a690" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690", + "reference": "e212b06996819a2bce026a63da03b7182d05a690", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^5.5.9|>=7.0.8" }, - "time": "2016-08-06T14:39:51+00:00", + "require-dev": { + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/polyfill-apcu": "~1.1" + }, + "suggest": { + "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM" + }, + "time": "2019-08-20T13:31:17+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Psr\\Http\\Message\\": "src/" - } + "Symfony\\Component\\ClassLoader\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13380,52 +16501,66 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Common interface for HTTP messages", - "homepage": "https://github.com/php-fig/http-message", - "keywords": [ - "http", - "http-message", - "psr", - "psr-7", - "request", - "response" - ] + "description": "Symfony ClassLoader Component", + "homepage": "https://symfony.com" } }, - "psr/log": { - "1.1.2": { - "name": "psr/log", - "version": "1.1.2", - "version_normalized": "1.1.2.0", + "symfony/config": { + "v3.4.35": { + "name": "symfony/config", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801" + "url": "https://github.com/symfony/config.git", + "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801", - "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801", + "url": "https://api.github.com/repos/symfony/config/zipball/c3a30587de97263d2813a3c81b74126c58b67a4f", + "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^5.5.9|>=7.0.8", + "symfony/filesystem": "~2.8|~3.0|~4.0", + "symfony/polyfill-ctype": "~1.8" }, - "time": "2019-11-01T11:05:21+00:00", + "conflict": { + "symfony/dependency-injection": "<3.3", + "symfony/finder": "<3.3" + }, + "require-dev": { + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/event-dispatcher": "~3.3|~4.0", + "symfony/finder": "~3.3|~4.0", + "symfony/yaml": "~3.0|~4.0" + }, + "suggest": { + "symfony/yaml": "To use the yaml reference dumper" + }, + "time": "2019-11-08T08:28:59+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } + "Symfony\\Component\\Config\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13433,74 +16568,84 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ] - } - }, - "psy/psysh": { - "v0.9.9": { - "name": "psy/psysh", - "version": "v0.9.9", - "version_normalized": "0.9.9.0", + "description": "Symfony Config Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/config", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", "source": { "type": "git", - "url": "https://github.com/bobthecow/psysh.git", - "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e" + "url": "https://github.com/symfony/config.git", + "reference": "8267214841c44d315a55242ea867684eb43c42ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e", - "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e", + "url": "https://api.github.com/repos/symfony/config/zipball/8267214841c44d315a55242ea867684eb43c42ce", + "reference": "8267214841c44d315a55242ea867684eb43c42ce", +======= + "v4.4.2": { + "name": "symfony/config", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/config.git", + "reference": "6911d432edd5b50822986604fd5a5be3af856d30" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/config/zipball/6911d432edd5b50822986604fd5a5be3af856d30", + "reference": "6911d432edd5b50822986604fd5a5be3af856d30", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "dnoegel/php-xdg-base-dir": "0.1", - "ext-json": "*", - "ext-tokenizer": "*", - "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*", - "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0", - "php": ">=5.4.0", - "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0", - "symfony/var-dumper": "~2.7|~3.0|~4.0" + "php": "^7.1.3", + "symfony/filesystem": "~3.4|~4.0", + "symfony/polyfill-ctype": "~1.8" }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.2", - "hoa/console": "~2.15|~3.16", - "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0" + "conflict": { + "symfony/finder": "<3.4" + }, + "require-dev": { + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "~3.4|~4.0", + "symfony/finder": "~3.4|~4.0", + "symfony/messenger": "~4.1", + "symfony/yaml": "~3.4|~4.0" }, "suggest": { - "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", - "ext-pdo-sqlite": "The doc command requires SQLite to work.", - "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", - "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.", - "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit." + "symfony/yaml": "To use the yaml reference dumper" }, - "time": "2018-10-13T15:16:03+00:00", - "bin": [ - "bin/psysh" - ], +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-11-08T08:31:27+00:00", +======= + "time": "2019-12-18T12:00:29+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { - "dev-develop": "0.9.x-dev" + "dev-master": "4.3-dev" } }, "autoload": { - "files": [ - "src/functions.php" - ], "psr-4": { - "Psy\\": "src/" - } + "Symfony\\Component\\Config\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13508,49 +16653,63 @@ ], "authors": [ { - "name": "Justin Hileman", - "email": "justin@justinhileman.info", - "homepage": "http://justinhileman.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "An interactive shell for modern PHP.", - "homepage": "http://psysh.org", - "keywords": [ - "REPL", - "console", - "interactive", - "shell" - ] - } - }, - "ralouphie/getallheaders": { - "3.0.3": { - "name": "ralouphie/getallheaders", - "version": "3.0.3", - "version_normalized": "3.0.3.0", + "description": "Symfony Config Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/config", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/ralouphie/getallheaders.git", - "reference": "120b605dfeb996808c31b6477290a714d356e822" + "url": "https://github.com/symfony/config.git", + "reference": "7f930484966350906185ba0a604728f7898b7ba0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", - "reference": "120b605dfeb996808c31b6477290a714d356e822", + "url": "https://api.github.com/repos/symfony/config/zipball/7f930484966350906185ba0a604728f7898b7ba0", + "reference": "7f930484966350906185ba0a604728f7898b7ba0", "shasum": "" }, "require": { - "php": ">=5.6" + "php": "^7.2.5", + "symfony/filesystem": "^4.4|^5.0", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/finder": "<4.4" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.1", - "phpunit/phpunit": "^5 || ^6.5" + "symfony/event-dispatcher": "^4.4|^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/messenger": "^4.4|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/yaml": "^4.4|^5.0" }, - "time": "2019-03-08T08:55:37+00:00", + "suggest": { + "symfony/yaml": "To use the yaml reference dumper" + }, + "time": "2019-12-18T13:50:31+00:00", "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, "autoload": { - "files": [ - "src/getallheaders.php" + "psr-4": { + "Symfony\\Component\\Config\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -13559,877 +16718,1165 @@ ], "authors": [ { - "name": "Ralph Khattar", - "email": "ralph.khattar@gmail.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "A polyfill for getallheaders." + "description": "Symfony Config Component", + "homepage": "https://symfony.com" } }, - "sebastian/code-unit-reverse-lookup": { - "1.0.1": { - "name": "sebastian/code-unit-reverse-lookup", - "version": "1.0.1", - "version_normalized": "1.0.1.0", + "symfony/console": { + "v3.4.35": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "symfony/console", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + "url": "https://github.com/symfony/console.git", + "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "url": "https://api.github.com/repos/symfony/console/zipball/17b154f932c5874cdbda6d05796b6490eec9f9f7", + "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.5.9|>=7.0.8", + "symfony/debug": "~2.8|~3.0|~4.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/process": "<3.3" + }, + "provide": { + "psr/log-implementation": "1.0" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.0" + "psr/log": "~1.0", + "symfony/config": "~3.3|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/lock": "~3.4|~4.0", + "symfony/process": "~3.3|~4.0" }, - "time": "2017-03-04T06:30:41+00:00", + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "time": "2019-11-13T07:12:39+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "3.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Looks up which function or method a line of code belongs to", - "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/" - } - }, - "sebastian/comparator": { - "2.1.3": { - "name": "sebastian/comparator", - "version": "2.1.3", - "version_normalized": "2.1.3.0", + "description": "Symfony Console Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "name": "symfony/console", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9" + "url": "https://github.com/symfony/console.git", + "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9", - "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9", + "url": "https://api.github.com/repos/symfony/console/zipball/17b154f932c5874cdbda6d05796b6490eec9f9f7", + "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7", "shasum": "" }, "require": { - "php": "^7.0", - "sebastian/diff": "^2.0 || ^3.0", - "sebastian/exporter": "^3.1" + "php": "^5.5.9|>=7.0.8", + "symfony/debug": "~2.8|~3.0|~4.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/process": "<3.3" + }, + "provide": { + "psr/log-implementation": "1.0" }, "require-dev": { - "phpunit/phpunit": "^6.4" + "psr/log": "~1.0", + "symfony/config": "~3.3|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/lock": "~3.4|~4.0", + "symfony/process": "~3.3|~4.0" }, - "time": "2018-02-01T13:46:46+00:00", + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "time": "2019-11-13T07:12:39+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1.x-dev" + "dev-master": "3.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" - }, - { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Provides the functionality to compare PHP values for equality", - "homepage": "https://github.com/sebastianbergmann/comparator", - "keywords": [ - "comparator", - "compare", - "equality" - ] + "description": "Symfony Console Component", + "homepage": "https://symfony.com" }, - "3.0.2": { - "name": "sebastian/comparator", - "version": "3.0.2", - "version_normalized": "3.0.2.0", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/console", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "831424efae0a1fe6642784bd52aae14ece6538e6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/831424efae0a1fe6642784bd52aae14ece6538e6", + "reference": "831424efae0a1fe6642784bd52aae14ece6538e6", +======= + "v4.4.2": { + "name": "symfony/console", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" + "url": "https://github.com/symfony/console.git", + "reference": "82437719dab1e6bdd28726af14cb345c2ec816d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", - "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "url": "https://api.github.com/repos/symfony/console/zipball/82437719dab1e6bdd28726af14cb345c2ec816d0", + "reference": "82437719dab1e6bdd28726af14cb345c2ec816d0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "php": "^7.1", - "sebastian/diff": "^3.0", - "sebastian/exporter": "^3.1" + "php": "^7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/service-contracts": "^1.1" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/event-dispatcher": "<4.3", + "symfony/process": "<3.3" + }, + "provide": { + "psr/log-implementation": "1.0" }, "require-dev": { - "phpunit/phpunit": "^7.1" + "psr/log": "~1.0", + "symfony/config": "~3.4|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "^4.3", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "symfony/lock": "~3.4|~4.0", + "symfony/process": "~3.4|~4.0", + "symfony/var-dumper": "^4.3" +======= + "symfony/lock": "^4.4|^5.0", + "symfony/process": "^3.4|^4.0|^5.0", + "symfony/var-dumper": "^4.3|^5.0" }, - "time": "2018-07-12T15:12:46+00:00", + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "time": "2019-12-17T10:32:23+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "4.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" - }, - { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Provides the functionality to compare PHP values for equality", - "homepage": "https://github.com/sebastianbergmann/comparator", - "keywords": [ - "comparator", - "compare", - "equality" - ] - } - }, - "sebastian/diff": { - "2.0.1": { - "name": "sebastian/diff", - "version": "2.0.1", - "version_normalized": "2.0.1.0", + "description": "Symfony Console Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/console", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd" + "url": "https://github.com/symfony/console.git", + "reference": "fe6e3cd889ca64172d7a742a2eb058541404ef47" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", - "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", + "url": "https://api.github.com/repos/symfony/console/zipball/fe6e3cd889ca64172d7a742a2eb058541404ef47", + "reference": "fe6e3cd889ca64172d7a742a2eb058541404ef47", "shasum": "" }, "require": { - "php": "^7.0" + "php": "^7.2.5", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/service-contracts": "^1.1|^2" + }, + "conflict": { + "symfony/dependency-injection": "<4.4", + "symfony/event-dispatcher": "<4.4", + "symfony/lock": "<4.4", + "symfony/process": "<4.4" + }, + "provide": { + "psr/log-implementation": "1.0" }, "require-dev": { - "phpunit/phpunit": "^6.2" + "psr/log": "~1.0", + "symfony/config": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/event-dispatcher": "^4.4|^5.0", + "symfony/lock": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0", + "symfony/var-dumper": "^4.4|^5.0" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json }, - "time": "2017-08-03T08:09:46+00:00", + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-11-13T07:29:07+00:00", +======= + "time": "2019-12-17T13:20:22+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "4.3-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ - "diff" - ] - }, - "3.0.2": { - "name": "sebastian/diff", - "version": "3.0.2", - "version_normalized": "3.0.2.0", + "description": "Symfony Console Component", + "homepage": "https://symfony.com" + } + }, + "symfony/css-selector": { + "v3.4.35": { + "name": "symfony/css-selector", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29" + "url": "https://github.com/symfony/css-selector.git", + "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29", - "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/f819f71ae3ba6f396b4c015bd5895de7d2f1f85f", + "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f", "shasum": "" }, "require": { - "php": "^7.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.5 || ^8.0", - "symfony/process": "^2 || ^3.3 || ^4" + "php": "^5.5.9|>=7.0.8" }, - "time": "2019-02-04T06:01:07+00:00", + "time": "2019-10-01T11:57:37+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" - ] - } - }, - "sebastian/environment": { - "3.1.0": { - "name": "sebastian/environment", - "version": "3.1.0", - "version_normalized": "3.1.0.0", + "description": "Symfony CssSelector Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/css-selector", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", +======= + "v4.4.2": { + "name": "symfony/css-selector", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" + "url": "https://github.com/symfony/css-selector.git", + "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", - "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9", + "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9", "shasum": "" }, "require": { - "php": "^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.1" + "php": "^7.1.3" }, - "time": "2017-07-01T08:51:00+00:00", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-10-02T08:36:26+00:00", +======= + "time": "2019-10-12T00:35:04+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1.x-dev" + "dev-master": "4.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } - ], - "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "http://www.github.com/sebastianbergmann/environment", - "keywords": [ - "Xdebug", - "environment", - "hhvm" - ] - } - }, - "sebastian/exporter": { - "3.1.2": { - "name": "sebastian/exporter", - "version": "3.1.2", - "version_normalized": "3.1.2.0", + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony CssSelector Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/css-selector", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e" + "url": "https://github.com/symfony/css-selector.git", + "reference": "19d29e7098b7b2c3313cb03902ca30f100dcb837" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e", - "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/19d29e7098b7b2c3313cb03902ca30f100dcb837", + "reference": "19d29e7098b7b2c3313cb03902ca30f100dcb837", "shasum": "" }, "require": { - "php": "^7.0", - "sebastian/recursion-context": "^3.0" - }, - "require-dev": { - "ext-mbstring": "*", - "phpunit/phpunit": "^6.0" + "php": "^7.2.5" }, - "time": "2019-09-14T09:02:43+00:00", + "time": "2019-11-18T17:27:11+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1.x-dev" + "dev-master": "4.3-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Adam Harvey", - "email": "aharvey@php.net" + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" }, { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Provides the functionality to export PHP variables for visualization", - "homepage": "http://www.github.com/sebastianbergmann/exporter", - "keywords": [ - "export", - "exporter" - ] + "description": "Symfony CssSelector Component", + "homepage": "https://symfony.com" } }, - "sebastian/global-state": { - "2.0.0": { - "name": "sebastian/global-state", - "version": "2.0.0", - "version_normalized": "2.0.0.0", + "symfony/debug": { + "v3.4.35": { + "name": "symfony/debug", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" + "url": "https://github.com/symfony/debug.git", + "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", - "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086", + "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086", "shasum": "" }, "require": { - "php": "^7.0" + "php": "^5.5.9|>=7.0.8", + "psr/log": "~1.0" }, - "require-dev": { - "phpunit/phpunit": "^6.0" + "conflict": { + "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" }, - "suggest": { - "ext-uopz": "*" + "require-dev": { + "symfony/http-kernel": "~2.8|~3.0|~4.0" }, - "time": "2017-04-27T15:39:26+00:00", + "time": "2019-10-24T15:33:53+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "3.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Debug\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Snapshotting of global state", - "homepage": "http://www.github.com/sebastianbergmann/global-state", - "keywords": [ - "global state" - ] - } - }, - "sebastian/object-enumerator": { - "3.0.3": { - "name": "sebastian/object-enumerator", - "version": "3.0.3", - "version_normalized": "3.0.3.0", + "description": "Symfony Debug Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/debug", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" + "url": "https://github.com/symfony/debug.git", + "reference": "5ea9c3e01989a86ceaa0283f21234b12deadf5e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", - "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "url": "https://api.github.com/repos/symfony/debug/zipball/5ea9c3e01989a86ceaa0283f21234b12deadf5e2", + "reference": "5ea9c3e01989a86ceaa0283f21234b12deadf5e2", +======= + "v3.4.36": { + "name": "symfony/debug", + "version": "v3.4.36", + "version_normalized": "3.4.36.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/debug.git", + "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086", + "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "php": "^7.0", - "sebastian/object-reflector": "^1.1.1", - "sebastian/recursion-context": "^3.0" + "php": "^5.5.9|>=7.0.8", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" }, "require-dev": { - "phpunit/phpunit": "^6.0" +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "symfony/http-kernel": "~3.4|~4.0" }, - "time": "2017-08-03T12:35:26+00:00", + "time": "2019-10-28T17:07:32+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0.x-dev" + "dev-master": "4.3-dev" +======= + "symfony/http-kernel": "~2.8|~3.0|~4.0" + }, + "time": "2019-10-24T15:33:53+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Debug\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Traverses array structures and object graphs to enumerate all referenced objects", - "homepage": "https://github.com/sebastianbergmann/object-enumerator/" + "description": "Symfony Debug Component", + "homepage": "https://symfony.com" +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json } }, - "sebastian/object-reflector": { - "1.1.1": { - "name": "sebastian/object-reflector", - "version": "1.1.1", - "version_normalized": "1.1.1.0", + "symfony/dependency-injection": { + "v3.4.35": { + "name": "symfony/dependency-injection", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "773f97c67f28de00d397be301821b06708fca0be" + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "0ea4d39ca82409a25a43b61ce828048a90000920" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", - "reference": "773f97c67f28de00d397be301821b06708fca0be", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920", + "reference": "0ea4d39ca82409a25a43b61ce828048a90000920", +======= + }, + "v4.4.2": { + "name": "symfony/debug", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/debug.git", + "reference": "5c4c1db977dc70bb3250e1308d3e8c6341aa38f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/debug/zipball/5c4c1db977dc70bb3250e1308d3e8c6341aa38f5", + "reference": "5c4c1db977dc70bb3250e1308d3e8c6341aa38f5", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "php": "^7.0" + "php": "^7.1.3", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/http-kernel": "<3.4" }, "require-dev": { - "phpunit/phpunit": "^6.0" + "symfony/http-kernel": "^3.4|^4.0|^5.0" }, - "time": "2017-03-29T09:07:27+00:00", + "time": "2019-12-16T14:46:54+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "4.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Debug\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Allows reflection of object attributes, including inherited and non-public ones", - "homepage": "https://github.com/sebastianbergmann/object-reflector/" + "description": "Symfony Debug Component", + "homepage": "https://symfony.com" } - }, - "sebastian/recursion-context": { - "3.0.0": { - "name": "sebastian/recursion-context", - "version": "3.0.0", - "version_normalized": "3.0.0.0", + }, + "symfony/dependency-injection": { + "v3.4.35": { + "name": "symfony/dependency-injection", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "0ea4d39ca82409a25a43b61ce828048a90000920" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920", + "reference": "0ea4d39ca82409a25a43b61ce828048a90000920", "shasum": "" }, "require": { - "php": "^7.0" + "php": "^5.5.9|>=7.0.8", + "psr/container": "^1.0" + }, + "conflict": { + "symfony/config": "<3.3.7", + "symfony/finder": "<3.3", + "symfony/proxy-manager-bridge": "<3.4", + "symfony/yaml": "<3.4" + }, + "provide": { + "psr/container-implementation": "1.0" }, "require-dev": { - "phpunit/phpunit": "^6.0" + "symfony/config": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/yaml": "~3.4|~4.0" }, - "time": "2017-03-03T06:23:57+00:00", + "suggest": { + "symfony/config": "", + "symfony/expression-language": "For using expressions in service container configuration", + "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", + "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", + "symfony/yaml": "" + }, + "time": "2019-11-08T16:18:30+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0.x-dev" + "dev-master": "3.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\DependencyInjection\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Adam Harvey", - "email": "aharvey@php.net" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context" - } - }, - "sebastian/resource-operations": { - "1.0.0": { - "name": "sebastian/resource-operations", - "version": "1.0.0", - "version_normalized": "1.0.0.0", + "description": "Symfony DependencyInjection Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { + "name": "symfony/dependency-injection", + "version": "v3.4.36", + "version_normalized": "3.4.36.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "0d201916bfb3af939fec3c0c8815ea16c60ac1a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", - "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0d201916bfb3af939fec3c0c8815ea16c60ac1a2", + "reference": "0d201916bfb3af939fec3c0c8815ea16c60ac1a2", "shasum": "" }, "require": { - "php": ">=5.6.0" + "php": "^5.5.9|>=7.0.8", + "psr/container": "^1.0" }, - "time": "2015-07-28T20:34:47+00:00", + "conflict": { + "symfony/config": "<3.3.7", + "symfony/finder": "<3.3", + "symfony/proxy-manager-bridge": "<3.4", + "symfony/yaml": "<3.4" + }, + "provide": { + "psr/container-implementation": "1.0" + }, + "require-dev": { + "symfony/config": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "symfony/config": "", + "symfony/expression-language": "For using expressions in service container configuration", + "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", + "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", + "symfony/yaml": "" + }, + "time": "2019-11-08T16:18:30+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "3.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\DependencyInjection\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Provides a list of PHP built-in functions that operate on resources", - "homepage": "https://www.github.com/sebastianbergmann/resource-operations" - } - }, - "sebastian/version": { - "2.0.1": { - "name": "sebastian/version", - "version": "2.0.1", - "version_normalized": "2.0.1.0", + "description": "Symfony DependencyInjection Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/dependency-injection", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/version.git", - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "80c6d9e19467dfbba14f830ed478eb592ce51b64" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/80c6d9e19467dfbba14f830ed478eb592ce51b64", + "reference": "80c6d9e19467dfbba14f830ed478eb592ce51b64", +======= + "v4.4.2": { + "name": "symfony/dependency-injection", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "79b0358207a3571cc3af02a57d0321927921f539" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/79b0358207a3571cc3af02a57d0321927921f539", + "reference": "79b0358207a3571cc3af02a57d0321927921f539", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "php": ">=5.6" + "php": "^7.1.3", + "psr/container": "^1.0", + "symfony/service-contracts": "^1.1.6" }, - "time": "2016-10-03T07:35:21+00:00", + "conflict": { + "symfony/config": "<4.3", + "symfony/finder": "<3.4", + "symfony/proxy-manager-bridge": "<3.4", + "symfony/yaml": "<3.4" + }, + "provide": { + "psr/container-implementation": "1.0", + "symfony/service-implementation": "1.0" + }, + "require-dev": { + "symfony/config": "^4.3", + "symfony/expression-language": "~3.4|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "symfony/config": "", + "symfony/expression-language": "For using expressions in service container configuration", + "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", + "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", + "symfony/yaml": "" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-11-08T16:22:27+00:00", +======= + "time": "2019-12-19T16:00:02+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "4.3-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\DependencyInjection\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Library that helps with managing the version number of Git-hosted PHP projects", - "homepage": "https://github.com/sebastianbergmann/version" - } - }, - "solarium/solarium": { - "4.1.0": { - "name": "solarium/solarium", - "version": "4.1.0", - "version_normalized": "4.1.0.0", + "description": "Symfony DependencyInjection Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/dependency-injection", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/solariumphp/solarium.git", - "reference": "4dfd71fefb307cac1ec394b672f2f57256752e4b" + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "f9dbfbf487d08f60b1c83220edcd16559d1e40a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/solariumphp/solarium/zipball/4dfd71fefb307cac1ec394b672f2f57256752e4b", - "reference": "4dfd71fefb307cac1ec394b672f2f57256752e4b", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f9dbfbf487d08f60b1c83220edcd16559d1e40a2", + "reference": "f9dbfbf487d08f60b1c83220edcd16559d1e40a2", "shasum": "" }, "require": { - "php": "^7.0", - "symfony/event-dispatcher": "^2.7 || ^3.0 || ^4.0" + "php": "^7.2.5", + "psr/container": "^1.0", + "symfony/service-contracts": "^1.1.6|^2" + }, + "conflict": { + "symfony/config": "<5.0", + "symfony/finder": "<4.4", + "symfony/proxy-manager-bridge": "<4.4", + "symfony/yaml": "<4.4" + }, + "provide": { + "psr/container-implementation": "1.0", + "symfony/service-implementation": "1.0" }, "require-dev": { - "guzzlehttp/guzzle": "^3.8 || ^6.2", - "php-coveralls/php-coveralls": "^1.0", - "phpunit/phpunit": "^6.5", - "squizlabs/php_codesniffer": "^1.4", - "zendframework/zendframework": "^3.0" + "symfony/config": "^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/yaml": "^4.4|^5.0" }, "suggest": { - "minimalcode/search": "Query builder compatible with Solarium, allows simplified solr-query handling" + "symfony/config": "", + "symfony/expression-language": "For using expressions in service container configuration", + "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", + "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", + "symfony/yaml": "" }, - "time": "2018-08-09T13:01:25+00:00", + "time": "2019-12-19T16:01:11+00:00", "type": "library", "extra": { "branch-alias": { - "dev-4.0.x": "4.0.x-dev" + "dev-master": "5.0-dev" } }, "autoload": { "psr-4": { - "Solarium\\": "src/" - } + "Symfony\\Component\\DependencyInjection\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "See GitHub contributors", - "homepage": "https://github.com/basdenooijer/solarium/contributors" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "PHP Solr client", - "homepage": "http://www.solarium-project.org", - "keywords": [ - "php", - "search", - "solr" - ] + "description": "Symfony DependencyInjection Component", + "homepage": "https://symfony.com" } }, - "squizlabs/php_codesniffer": { - "3.5.2": { - "name": "squizlabs/php_codesniffer", - "version": "3.5.2", - "version_normalized": "3.5.2.0", + "symfony/dom-crawler": { + "v3.4.35": { + "name": "symfony/dom-crawler", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7" + "url": "https://github.com/symfony/dom-crawler.git", + "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/65b12cdeaaa6cd276d4c3033a95b9b88b12701e7", - "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3", + "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3", "shasum": "" }, "require": { - "ext-simplexml": "*", - "ext-tokenizer": "*", - "ext-xmlwriter": "*", - "php": ">=5.4.0" + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + "symfony/css-selector": "~2.8|~3.0|~4.0" }, - "time": "2019-10-28T04:36:32+00:00", - "bin": [ - "bin/phpcs", - "bin/phpcbf" - ], + "suggest": { + "symfony/css-selector": "" + }, + "time": "2019-10-24T15:33:53+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "3.4-dev" } }, + "autoload": { + "psr-4": { + "Symfony\\Component\\DomCrawler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Greg Sherwood", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", - "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", - "keywords": [ - "phpcs", - "standards" - ] - } - }, - "stack/builder": { - "v1.0.5": { - "name": "stack/builder", - "version": "v1.0.5", - "version_normalized": "1.0.5.0", + "description": "Symfony DomCrawler Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/dom-crawler", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", +======= + "v4.4.2": { + "name": "symfony/dom-crawler", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "source": { "type": "git", - "url": "https://github.com/stackphp/builder.git", - "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a" + "url": "https://github.com/symfony/dom-crawler.git", + "reference": "4b9efd5708c3a38593e19b6a33e40867f4f89d72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a", - "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4b9efd5708c3a38593e19b6a33e40867f4f89d72", + "reference": "4b9efd5708c3a38593e19b6a33e40867f4f89d72", "shasum": "" }, "require": { - "php": ">=5.3.0", - "symfony/http-foundation": "~2.1|~3.0|~4.0", - "symfony/http-kernel": "~2.1|~3.0|~4.0" + "php": "^7.1.3", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "masterminds/html5": "<2.6" }, "require-dev": { - "silex/silex": "~1.0" + "masterminds/html5": "^2.6", + "symfony/css-selector": "~3.4|~4.0" }, - "time": "2017-11-18T14:57:29+00:00", + "suggest": { + "symfony/css-selector": "" + }, + "time": "2019-10-28T17:07:32+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "4.3-dev" } }, "autoload": { - "psr-0": { - "Stack": "src" - } + "psr-4": { + "Symfony\\Component\\DomCrawler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -14437,50 +17884,73 @@ ], "authors": [ { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Builder for stack middlewares based on HttpKernelInterface.", - "keywords": [ - "stack" - ] + "description": "Symfony DomCrawler Component", + "homepage": "https://symfony.com" +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json } }, - "stecman/symfony-console-completion": { - "0.10.1": { - "name": "stecman/symfony-console-completion", - "version": "0.10.1", - "version_normalized": "0.10.1.0", + "symfony/event-dispatcher": { + "v3.4.35": { + "name": "symfony/event-dispatcher", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", +======= + }, + "v5.0.2": { + "name": "symfony/dom-crawler", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "source": { "type": "git", - "url": "https://github.com/stecman/symfony-console-completion.git", - "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/7bfa9b93e216896419f2f8de659935d7e04fecd8", - "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177", + "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177", "shasum": "" }, "require": { - "php": ">=5.3.2", - "symfony/console": "~2.3 || ~3.0 || ~4.0" + "php": "^5.5.9|>=7.0.8" + }, + "conflict": { + "symfony/dependency-injection": "<3.3" }, "require-dev": { - "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4" + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0" }, - "time": "2019-04-29T03:20:18+00:00", + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" + }, + "time": "2019-10-24T15:33:53+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "0.10.x-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/" - } + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -14488,113 +17958,146 @@ ], "authors": [ { - "name": "Stephen Holdaway", - "email": "stephen@stecman.co.nz" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Automatic BASH completion for Symfony Console Component based applications." + "description": "Symfony EventDispatcher Component", + "homepage": "https://symfony.com" +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + }, + "v4.3.8": { + "name": "symfony/event-dispatcher", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "0df002fd4f500392eabd243c2947061a50937287" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0df002fd4f500392eabd243c2947061a50937287", + "reference": "0df002fd4f500392eabd243c2947061a50937287", +======= } }, - "swiftmailer/swiftmailer": { - "v5.4.12": { - "name": "swiftmailer/swiftmailer", - "version": "v5.4.12", - "version_normalized": "5.4.12.0", + "symfony/error-handler": { + "v4.4.2": { + "name": "symfony/error-handler", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", "source": { "type": "git", - "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "181b89f18a90f8925ef805f950d47a7190e9b950" + "url": "https://github.com/symfony/error-handler.git", + "reference": "6d7d7712a6ff5215ec26215672293b154f1db8c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950", - "reference": "181b89f18a90f8925ef805f950d47a7190e9b950", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/6d7d7712a6ff5215ec26215672293b154f1db8c1", + "reference": "6d7d7712a6ff5215ec26215672293b154f1db8c1", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": "^7.1.3", + "symfony/event-dispatcher-contracts": "^1.1" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "conflict": { + "symfony/dependency-injection": "<3.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" }, "require-dev": { - "mockery/mockery": "~0.9.1", - "symfony/phpunit-bridge": "~3.2" + "psr/log": "~1.0", + "symfony/config": "~3.4|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/expression-language": "~3.4|~4.0", + "symfony/http-foundation": "^3.4|^4.0", + "symfony/service-contracts": "^1.1", + "symfony/stopwatch": "~3.4|~4.0" +======= + "require-dev": { + "symfony/http-kernel": "^4.4|^5.0", + "symfony/serializer": "^4.4|^5.0" }, - "time": "2018-07-31T09:26:32+00:00", + "time": "2019-12-16T14:46:54+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "5.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { - "files": [ - "lib/swift_required.php" + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" - ], - "authors": [ - { - "name": "Chris Corbyn" - }, + ], + "authors": [ { "name": "Fabien Potencier", "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Swiftmailer, free feature-rich PHP mailer", - "homepage": "https://swiftmailer.symfony.com", - "keywords": [ - "email", - "mail", - "mailer" - ] - } - }, - "symfony-cmf/routing": { - "1.4.1": { - "name": "symfony-cmf/routing", - "version": "1.4.1", - "version_normalized": "1.4.1.0", + "description": "Symfony ErrorHandler Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/error-handler", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/symfony-cmf/routing.git", - "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac" + "url": "https://github.com/symfony/error-handler.git", + "reference": "460863313bd3212d7c38e1b40602cbcfeeeea4a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac", - "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/460863313bd3212d7c38e1b40602cbcfeeeea4a5", + "reference": "460863313bd3212d7c38e1b40602cbcfeeeea4a5", "shasum": "" }, "require": { - "php": "^5.3.9|^7.0", - "psr/log": "1.*", - "symfony/http-kernel": "^2.2|3.*", - "symfony/routing": "^2.2|3.*" + "php": "^7.2.5", + "psr/log": "^1.0", + "symfony/var-dumper": "^4.4|^5.0" }, "require-dev": { - "friendsofsymfony/jsrouting-bundle": "^1.1", - "symfony-cmf/testing": "^1.3", - "symfony/config": "^2.2|3.*", - "symfony/dependency-injection": "^2.0.5|3.*", - "symfony/event-dispatcher": "^2.1|3.*" + "symfony/http-kernel": "^4.4|^5.0", + "symfony/serializer": "^4.4|^5.0" }, - "suggest": { - "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)" - }, - "time": "2017-05-09T08:10:41+00:00", + "time": "2019-12-16T14:48:47+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "5.0-dev" } }, "autoload": { "psr-4": { - "Symfony\\Cmf\\Component\\Routing\\": "" - } + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -14602,57 +18105,69 @@ ], "authors": [ { - "name": "Symfony CMF Community", - "homepage": "https://github.com/symfony-cmf/Routing/contributors" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers", - "homepage": "http://cmf.symfony.com", - "keywords": [ - "database", - "routing" - ] + "description": "Symfony ErrorHandler Component", + "homepage": "https://symfony.com" } }, - "symfony/browser-kit": { - "v4.3.8": { - "name": "symfony/browser-kit", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "symfony/event-dispatcher": { + "v3.4.35": { + "name": "symfony/event-dispatcher", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/browser-kit.git", - "reference": "b14fa08508afd152257d5dcc7adb5f278654d972" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/b14fa08508afd152257d5dcc7adb5f278654d972", - "reference": "b14fa08508afd152257d5dcc7adb5f278654d972", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177", + "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/dom-crawler": "~3.4|~4.0" + "php": "^5.5.9|>=7.0.8" + }, + "conflict": { + "symfony/dependency-injection": "<3.3" }, "require-dev": { - "symfony/css-selector": "~3.4|~4.0", - "symfony/http-client": "^4.3", - "symfony/mime": "^4.3", - "symfony/process": "~3.4|~4.0" + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json }, "suggest": { - "symfony/process": "" + "symfony/dependency-injection": "", + "symfony/http-kernel": "" }, - "time": "2019-10-28T17:07:32+00:00", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-11-03T09:04:05+00:00", "type": "library", "extra": { "branch-alias": { "dev-master": "4.3-dev" +======= + "time": "2019-10-24T15:33:53+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\BrowserKit\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -14672,37 +18187,42 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony BrowserKit Component", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com" - } - }, - "symfony/class-loader": { - "v3.4.35": { - "name": "symfony/class-loader", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + }, + "v3.4.36": { + "name": "symfony/event-dispatcher", + "version": "v3.4.36", + "version_normalized": "3.4.36.0", "source": { "type": "git", - "url": "https://github.com/symfony/class-loader.git", - "reference": "e212b06996819a2bce026a63da03b7182d05a690" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690", - "reference": "e212b06996819a2bce026a63da03b7182d05a690", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177", + "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, + "conflict": { + "symfony/dependency-injection": "<3.3" + }, "require-dev": { - "symfony/finder": "~2.8|~3.0|~4.0", - "symfony/polyfill-apcu": "~1.1" + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0" }, "suggest": { - "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM" + "symfony/dependency-injection": "", + "symfony/http-kernel": "" }, - "time": "2019-08-20T13:31:17+00:00", + "time": "2019-10-24T15:33:53+00:00", "type": "library", "extra": { "branch-alias": { @@ -14711,7 +18231,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\ClassLoader\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -14731,54 +18251,58 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony ClassLoader Component", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com" - } - }, - "symfony/config": { - "v3.4.35": { - "name": "symfony/config", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + }, + "v4.4.2": { + "name": "symfony/event-dispatcher", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/config.git", - "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "b3c3068a72623287550fe20b84a2b01dcba2686f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/c3a30587de97263d2813a3c81b74126c58b67a4f", - "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b3c3068a72623287550fe20b84a2b01dcba2686f", + "reference": "b3c3068a72623287550fe20b84a2b01dcba2686f", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/filesystem": "~2.8|~3.0|~4.0", - "symfony/polyfill-ctype": "~1.8" + "php": "^7.1.3", + "symfony/event-dispatcher-contracts": "^1.1" }, "conflict": { - "symfony/dependency-injection": "<3.3", - "symfony/finder": "<3.3" + "symfony/dependency-injection": "<3.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" }, "require-dev": { - "symfony/dependency-injection": "~3.3|~4.0", - "symfony/event-dispatcher": "~3.3|~4.0", - "symfony/finder": "~3.3|~4.0", - "symfony/yaml": "~3.0|~4.0" + "psr/log": "~1.0", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/stopwatch": "^3.4|^4.0|^5.0" }, "suggest": { - "symfony/yaml": "To use the yaml reference dumper" + "symfony/dependency-injection": "", + "symfony/http-kernel": "" }, - "time": "2019-11-08T08:28:59+00:00", + "time": "2019-11-28T13:33:56+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Config\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -14798,52 +18322,59 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Config Component", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com" }, - "v4.3.8": { - "name": "symfony/config", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "v5.0.2": { + "name": "symfony/event-dispatcher", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/config.git", - "reference": "8267214841c44d315a55242ea867684eb43c42ce" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "7b738a51645e10f864cc25c24d232fb03f37b475" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/8267214841c44d315a55242ea867684eb43c42ce", - "reference": "8267214841c44d315a55242ea867684eb43c42ce", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7b738a51645e10f864cc25c24d232fb03f37b475", + "reference": "7b738a51645e10f864cc25c24d232fb03f37b475", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/filesystem": "~3.4|~4.0", - "symfony/polyfill-ctype": "~1.8" + "php": "^7.2.5", + "symfony/event-dispatcher-contracts": "^2" }, "conflict": { - "symfony/finder": "<3.4" + "symfony/dependency-injection": "<4.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0" }, "require-dev": { - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/event-dispatcher": "~3.4|~4.0", - "symfony/finder": "~3.4|~4.0", - "symfony/messenger": "~4.1", - "symfony/yaml": "~3.4|~4.0" + "psr/log": "~1.0", + "symfony/config": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/http-foundation": "^4.4|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/stopwatch": "^4.4|^5.0" }, "suggest": { - "symfony/yaml": "To use the yaml reference dumper" + "symfony/dependency-injection": "", + "symfony/http-kernel": "" }, - "time": "2019-11-08T08:31:27+00:00", + "time": "2019-11-18T17:27:11+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "5.0-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json } }, "autoload": { "psr-4": { - "Symfony\\Component\\Config\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -14863,66 +18394,44 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Config Component", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com" } }, - "symfony/console": { - "v3.4.35": { - "name": "symfony/console", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + "symfony/event-dispatcher-contracts": { + "v1.1.7": { + "name": "symfony/event-dispatcher-contracts", + "version": "v1.1.7", + "version_normalized": "1.1.7.0", "source": { "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7" + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18" }, "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/17b154f932c5874cdbda6d05796b6490eec9f9f7", - "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7", - "shasum": "" - }, - "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/debug": "~2.8|~3.0|~4.0", - "symfony/polyfill-mbstring": "~1.0" - }, - "conflict": { - "symfony/dependency-injection": "<3.4", - "symfony/process": "<3.3" - }, - "provide": { - "psr/log-implementation": "1.0" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~3.3|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/event-dispatcher": "~2.8|~3.0|~4.0", - "symfony/lock": "~3.4|~4.0", - "symfony/process": "~3.3|~4.0" + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18", + "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18", + "shasum": "" + }, + "require": { + "php": "^7.1.3" }, "suggest": { - "psr/log": "For using the console logger", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" }, - "time": "2019-11-13T07:12:39+00:00", + "time": "2019-09-17T09:54:03+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "1.1-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Console\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Symfony\\Contracts\\EventDispatcher\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -14930,75 +18439,58 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Console Component", - "homepage": "https://symfony.com" + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ] }, - "v4.3.8": { - "name": "symfony/console", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "v2.0.1": { + "name": "symfony/event-dispatcher-contracts", + "version": "v2.0.1", + "version_normalized": "2.0.1.0", "source": { "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "831424efae0a1fe6642784bd52aae14ece6538e6" + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "af23c2584d4577d54661c434446fb8fbed6025dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/831424efae0a1fe6642784bd52aae14ece6538e6", - "reference": "831424efae0a1fe6642784bd52aae14ece6538e6", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/af23c2584d4577d54661c434446fb8fbed6025dd", + "reference": "af23c2584d4577d54661c434446fb8fbed6025dd", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php73": "^1.8", - "symfony/service-contracts": "^1.1" - }, - "conflict": { - "symfony/dependency-injection": "<3.4", - "symfony/event-dispatcher": "<4.3", - "symfony/process": "<3.3" - }, - "provide": { - "psr/log-implementation": "1.0" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~3.4|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/event-dispatcher": "^4.3", - "symfony/lock": "~3.4|~4.0", - "symfony/process": "~3.4|~4.0", - "symfony/var-dumper": "^4.3" + "php": "^7.2.5", + "psr/event-dispatcher": "^1" }, "suggest": { - "psr/log": "For using the console logger", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" + "symfony/event-dispatcher-implementation": "" }, - "time": "2019-11-13T07:29:07+00:00", + "time": "2019-11-18T17:27:11+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "2.0-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Console\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Symfony\\Contracts\\EventDispatcher\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -15006,38 +18498,47 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Console Component", - "homepage": "https://symfony.com" + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ] } }, - "symfony/css-selector": { + "symfony/filesystem": { "v3.4.35": { - "name": "symfony/css-selector", + "name": "symfony/filesystem", "version": "v3.4.35", "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f" + "url": "https://github.com/symfony/filesystem.git", + "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/f819f71ae3ba6f396b4c015bd5895de7d2f1f85f", - "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516", + "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" }, - "time": "2019-10-01T11:57:37+00:00", + "time": "2019-08-20T13:31:17+00:00", "type": "library", "extra": { "branch-alias": { @@ -15046,7 +18547,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\CssSelector\\": "" + "Symfony\\Component\\Filesystem\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15061,46 +18562,53 @@ "name": "Fabien Potencier", "email": "fabien@symfony.com" }, - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony CssSelector Component", + "description": "Symfony Filesystem Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "v4.3.8": { - "name": "symfony/css-selector", + "name": "symfony/filesystem", "version": "v4.3.8", "version_normalized": "4.3.8.0", +======= + "v4.4.2": { + "name": "symfony/filesystem", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "source": { "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9" + "url": "https://github.com/symfony/filesystem.git", + "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9", - "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/9abbb7ef96a51f4d7e69627bc6f63307994e4263", + "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "^7.1.3", + "symfony/polyfill-ctype": "~1.8" }, - "time": "2019-10-02T08:36:26+00:00", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-08-20T14:07:54+00:00", +======= + "time": "2019-11-26T23:16:41+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\CssSelector\\": "" + "Symfony\\Component\\Filesystem\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15115,55 +18623,44 @@ "name": "Fabien Potencier", "email": "fabien@symfony.com" }, - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony CssSelector Component", + "description": "Symfony Filesystem Component", "homepage": "https://symfony.com" - } - }, - "symfony/debug": { - "v3.4.35": { - "name": "symfony/debug", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + }, + "v5.0.2": { + "name": "symfony/filesystem", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/debug.git", - "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086" + "url": "https://github.com/symfony/filesystem.git", + "reference": "1d71f670bc5a07b9ccc97dc44f932177a322d4e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086", - "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/1d71f670bc5a07b9ccc97dc44f932177a322d4e6", + "reference": "1d71f670bc5a07b9ccc97dc44f932177a322d4e6", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "psr/log": "~1.0" - }, - "conflict": { - "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" - }, - "require-dev": { - "symfony/http-kernel": "~2.8|~3.0|~4.0" + "php": "^7.2.5", + "symfony/polyfill-ctype": "~1.8" }, - "time": "2019-10-24T15:33:53+00:00", + "time": "2019-11-26T23:25:11+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.3-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Debug\\": "" + "Symfony\\Component\\Filesystem\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15183,44 +18680,39 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Debug Component", + "description": "Symfony Filesystem Component", "homepage": "https://symfony.com" - }, - "v4.3.8": { - "name": "symfony/debug", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + } + }, + "symfony/finder": { + "v3.4.35": { + "name": "symfony/finder", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/debug.git", - "reference": "5ea9c3e01989a86ceaa0283f21234b12deadf5e2" + "url": "https://github.com/symfony/finder.git", + "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/5ea9c3e01989a86ceaa0283f21234b12deadf5e2", - "reference": "5ea9c3e01989a86ceaa0283f21234b12deadf5e2", + "url": "https://api.github.com/repos/symfony/finder/zipball/3e915e5ce305f8bc8017597f71f1f4095092ddf8", + "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8", "shasum": "" }, "require": { - "php": "^7.1.3", - "psr/log": "~1.0" - }, - "conflict": { - "symfony/http-kernel": "<3.4" - }, - "require-dev": { - "symfony/http-kernel": "~3.4|~4.0" + "php": "^5.5.9|>=7.0.8" }, - "time": "2019-10-28T17:07:32+00:00", + "time": "2019-10-30T12:43:22+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Debug\\": "" + "Symfony\\Component\\Finder\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15240,61 +18732,44 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Debug Component", + "description": "Symfony Finder Component", "homepage": "https://symfony.com" - } - }, - "symfony/dependency-injection": { - "v3.4.35": { - "name": "symfony/dependency-injection", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/finder", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", +======= + "v4.4.2": { + "name": "symfony/finder", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "source": { - "type": "git", - "url": "https://github.com/symfony/dependency-injection.git", - "reference": "0ea4d39ca82409a25a43b61ce828048a90000920" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920", - "reference": "0ea4d39ca82409a25a43b61ce828048a90000920", - "shasum": "" - }, - "require": { - "php": "^5.5.9|>=7.0.8", - "psr/container": "^1.0" - }, - "conflict": { - "symfony/config": "<3.3.7", - "symfony/finder": "<3.3", - "symfony/proxy-manager-bridge": "<3.4", - "symfony/yaml": "<3.4" - }, - "provide": { - "psr/container-implementation": "1.0" + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "72a068f77e317ae77c0a0495236ad292cfb5ce6f" }, - "require-dev": { - "symfony/config": "~3.3|~4.0", - "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/yaml": "~3.4|~4.0" + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/72a068f77e317ae77c0a0495236ad292cfb5ce6f", + "reference": "72a068f77e317ae77c0a0495236ad292cfb5ce6f", + "shasum": "" }, - "suggest": { - "symfony/config": "", - "symfony/expression-language": "For using expressions in service container configuration", - "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", - "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", - "symfony/yaml": "" + "require": { + "php": "^7.1.3" }, - "time": "2019-11-08T16:18:30+00:00", + "time": "2019-10-30T12:53:54+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.3-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\DependencyInjection\\": "" + "Symfony\\Component\\Finder\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15314,61 +18789,44 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony DependencyInjection Component", + "description": "Symfony Finder Component", "homepage": "https://symfony.com" - }, - "v4.3.8": { - "name": "symfony/dependency-injection", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + } + }, + "symfony/http-foundation": { + "v3.4.35": { + "name": "symfony/http-foundation", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/dependency-injection.git", - "reference": "80c6d9e19467dfbba14f830ed478eb592ce51b64" + "url": "https://github.com/symfony/http-foundation.git", + "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/80c6d9e19467dfbba14f830ed478eb592ce51b64", - "reference": "80c6d9e19467dfbba14f830ed478eb592ce51b64", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9e4b3ac8fa3348b4811674d23de32d201de225ce", + "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce", "shasum": "" }, "require": { - "php": "^7.1.3", - "psr/container": "^1.0", - "symfony/service-contracts": "^1.1.6" - }, - "conflict": { - "symfony/config": "<4.3", - "symfony/finder": "<3.4", - "symfony/proxy-manager-bridge": "<3.4", - "symfony/yaml": "<3.4" - }, - "provide": { - "psr/container-implementation": "1.0", - "symfony/service-implementation": "1.0" + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php70": "~1.6" }, "require-dev": { - "symfony/config": "^4.3", - "symfony/expression-language": "~3.4|~4.0", - "symfony/yaml": "~3.4|~4.0" - }, - "suggest": { - "symfony/config": "", - "symfony/expression-language": "For using expressions in service container configuration", - "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", - "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", - "symfony/yaml": "" + "symfony/expression-language": "~2.8|~3.0|~4.0" }, - "time": "2019-11-08T16:22:27+00:00", + "time": "2019-11-11T12:53:10+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\DependencyInjection\\": "" + "Symfony\\Component\\HttpFoundation\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15388,38 +18846,48 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony DependencyInjection Component", + "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com" - } - }, - "symfony/dom-crawler": { - "v3.4.35": { - "name": "symfony/dom-crawler", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/http-foundation", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", "source": { "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3" + "url": "https://github.com/symfony/http-foundation.git", + "reference": "cabe67275034e173350e158f3b1803d023880227" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3", - "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cabe67275034e173350e158f3b1803d023880227", + "reference": "cabe67275034e173350e158f3b1803d023880227", +======= + "v3.4.36": { + "name": "symfony/http-foundation", + "version": "v3.4.36", + "version_normalized": "3.4.36.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "d2d0cfe8e319d9df44c4cca570710fcf221d4593" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d2d0cfe8e319d9df44c4cca570710fcf221d4593", + "reference": "d2d0cfe8e319d9df44c4cca570710fcf221d4593", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0" + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php70": "~1.6" }, "require-dev": { - "symfony/css-selector": "~2.8|~3.0|~4.0" - }, - "suggest": { - "symfony/css-selector": "" + "symfony/expression-language": "~2.8|~3.0|~4.0" }, - "time": "2019-10-24T15:33:53+00:00", + "time": "2019-11-28T12:52:59+00:00", "type": "library", "extra": { "branch-alias": { @@ -15428,7 +18896,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\DomCrawler\\": "" + "Symfony\\Component\\HttpFoundation\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15448,49 +18916,47 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony DomCrawler Component", + "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com" }, - "v4.3.8": { - "name": "symfony/dom-crawler", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "v4.4.2": { + "name": "symfony/http-foundation", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "4b9efd5708c3a38593e19b6a33e40867f4f89d72" + "url": "https://github.com/symfony/http-foundation.git", + "reference": "fcae1cff5b57b2a9c3aabefeb1527678705ddb62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4b9efd5708c3a38593e19b6a33e40867f4f89d72", - "reference": "4b9efd5708c3a38593e19b6a33e40867f4f89d72", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fcae1cff5b57b2a9c3aabefeb1527678705ddb62", + "reference": "fcae1cff5b57b2a9c3aabefeb1527678705ddb62", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { "php": "^7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0" - }, - "conflict": { - "masterminds/html5": "<2.6" +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "symfony/mime": "^4.3", +======= + "symfony/mime": "^4.3|^5.0", + "symfony/polyfill-mbstring": "~1.1" }, "require-dev": { - "masterminds/html5": "^2.6", - "symfony/css-selector": "~3.4|~4.0" - }, - "suggest": { - "symfony/css-selector": "" + "predis/predis": "~1.0", + "symfony/expression-language": "^3.4|^4.0|^5.0" }, - "time": "2019-10-28T17:07:32+00:00", + "time": "2019-12-19T15:57:49+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\DomCrawler\\": "" + "Symfony\\Component\\HttpFoundation\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15510,53 +18976,48 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony DomCrawler Component", + "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com" - } - }, - "symfony/event-dispatcher": { - "v3.4.35": { - "name": "symfony/event-dispatcher", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + }, + "v5.0.2": { + "name": "symfony/http-foundation", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177" + "url": "https://github.com/symfony/http-foundation.git", + "reference": "5dd7f6be6e62d86ba6f3154cf40e78936367978b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177", - "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5dd7f6be6e62d86ba6f3154cf40e78936367978b", + "reference": "5dd7f6be6e62d86ba6f3154cf40e78936367978b", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" - }, - "conflict": { - "symfony/dependency-injection": "<3.3" + "php": "^7.2.5", + "symfony/mime": "^4.4|^5.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "symfony/polyfill-mbstring": "~1.1" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~2.8|~3.0|~4.0", - "symfony/dependency-injection": "~3.3|~4.0", - "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/stopwatch": "~2.8|~3.0|~4.0" - }, - "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "predis/predis": "~1.0", + "symfony/expression-language": "~3.4|~4.0" }, - "time": "2019-10-24T15:33:53+00:00", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-11-12T13:07:20+00:00", +======= + "time": "2019-12-19T16:01:11+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.3-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" + "Symfony\\Component\\HttpFoundation\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15576,58 +19037,82 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony EventDispatcher Component", + "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com" - }, - "v4.3.8": { - "name": "symfony/event-dispatcher", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + } + }, + "symfony/http-kernel": { + "v3.4.35": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "symfony/http-kernel", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "0df002fd4f500392eabd243c2947061a50937287" + "url": "https://github.com/symfony/http-kernel.git", + "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0df002fd4f500392eabd243c2947061a50937287", - "reference": "0df002fd4f500392eabd243c2947061a50937287", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e1764b3de00ec5636dd03d02fd44bcb1147d70d9", + "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/event-dispatcher-contracts": "^1.1" + "php": "^5.5.9|>=7.0.8", + "psr/log": "~1.0", + "symfony/debug": "^3.3.3|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php56": "~1.8" }, "conflict": { - "symfony/dependency-injection": "<3.4" + "symfony/config": "<2.8", + "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4", + "symfony/var-dumper": "<3.3", + "twig/twig": "<1.34|<2.4,>=2" }, "provide": { - "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "1.1" + "psr/log-implementation": "1.0" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~3.4|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/expression-language": "~3.4|~4.0", - "symfony/http-foundation": "^3.4|^4.0", - "symfony/service-contracts": "^1.1", - "symfony/stopwatch": "~3.4|~4.0" + "psr/cache": "~1.0", + "symfony/browser-kit": "~2.8|~3.0|~4.0", + "symfony/class-loader": "~2.8|~3.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/console": "~2.8|~3.0|~4.0", + "symfony/css-selector": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "^3.4.10|^4.0.10", + "symfony/dom-crawler": "~2.8|~3.0|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/process": "~2.8|~3.0|~4.0", + "symfony/routing": "~3.4|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0", + "symfony/templating": "~2.8|~3.0|~4.0", + "symfony/translation": "~2.8|~3.0|~4.0", + "symfony/var-dumper": "~3.3|~4.0" }, "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "symfony/finder": "", + "symfony/var-dumper": "" }, - "time": "2019-11-03T09:04:05+00:00", + "time": "2019-11-13T08:44:50+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" + "Symfony\\Component\\HttpKernel\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15647,92 +19132,70 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony EventDispatcher Component", + "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com" - } - }, - "symfony/event-dispatcher-contracts": { - "v1.1.7": { - "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.7", - "version_normalized": "1.1.7.0", + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "name": "symfony/http-kernel", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18" + "url": "https://github.com/symfony/http-kernel.git", + "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18", - "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e1764b3de00ec5636dd03d02fd44bcb1147d70d9", + "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9", "shasum": "" }, "require": { - "php": "^7.1.3" - }, - "suggest": { - "psr/event-dispatcher": "", - "symfony/event-dispatcher-implementation": "" - }, - "time": "2019-09-17T09:54:03+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } + "php": "^5.5.9|>=7.0.8", + "psr/log": "~1.0", + "symfony/debug": "^3.3.3|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php56": "~1.8" }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" - } + "conflict": { + "symfony/config": "<2.8", + "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4", + "symfony/var-dumper": "<3.3", + "twig/twig": "<1.34|<2.4,>=2" }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Generic abstractions related to dispatching event", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ] - } - }, - "symfony/filesystem": { - "v3.4.35": { - "name": "symfony/filesystem", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516" + "provide": { + "psr/log-implementation": "1.0" }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516", - "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516", - "shasum": "" + "require-dev": { + "psr/cache": "~1.0", + "symfony/browser-kit": "~2.8|~3.0|~4.0", + "symfony/class-loader": "~2.8|~3.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/console": "~2.8|~3.0|~4.0", + "symfony/css-selector": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "^3.4.10|^4.0.10", + "symfony/dom-crawler": "~2.8|~3.0|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/process": "~2.8|~3.0|~4.0", + "symfony/routing": "~3.4|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0", + "symfony/templating": "~2.8|~3.0|~4.0", + "symfony/translation": "~2.8|~3.0|~4.0", + "symfony/var-dumper": "~3.3|~4.0" }, - "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-ctype": "~1.8" + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "", + "symfony/finder": "", + "symfony/var-dumper": "" }, - "time": "2019-08-20T13:31:17+00:00", + "time": "2019-11-13T08:44:50+00:00", "type": "library", "extra": { "branch-alias": { @@ -15741,7 +19204,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\Filesystem\\": "" + "Symfony\\Component\\HttpKernel\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15761,29 +19224,91 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Filesystem Component", + "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "v4.3.8": { - "name": "symfony/filesystem", + "name": "symfony/http-kernel", "version": "v4.3.8", "version_normalized": "4.3.8.0", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263" + "url": "https://github.com/symfony/http-kernel.git", + "reference": "5fdf186f26f9080de531d3f1d024348b2f0ab12f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/9abbb7ef96a51f4d7e69627bc6f63307994e4263", - "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5fdf186f26f9080de531d3f1d024348b2f0ab12f", + "reference": "5fdf186f26f9080de531d3f1d024348b2f0ab12f", +======= + "v4.4.2": { + "name": "symfony/http-kernel", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "fe310d2e95cd4c356836c8ecb0895a46d97fede2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fe310d2e95cd4c356836c8ecb0895a46d97fede2", + "reference": "fe310d2e95cd4c356836c8ecb0895a46d97fede2", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { "php": "^7.1.3", - "symfony/polyfill-ctype": "~1.8" + "psr/log": "~1.0", + "symfony/debug": "~3.4|~4.0", + "symfony/event-dispatcher": "^4.3", + "symfony/http-foundation": "^4.1.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php73": "^1.9" }, - "time": "2019-08-20T14:07:54+00:00", + "conflict": { + "symfony/browser-kit": "<4.3", + "symfony/config": "<3.4", + "symfony/dependency-injection": "<4.3", + "symfony/translation": "<4.2", + "symfony/var-dumper": "<4.1.1", + "twig/twig": "<1.34|<2.4,>=2" + }, + "provide": { + "psr/log-implementation": "1.0" + }, + "require-dev": { + "psr/cache": "~1.0", + "symfony/browser-kit": "^4.3", + "symfony/config": "~3.4|~4.0", + "symfony/console": "~3.4|~4.0", + "symfony/css-selector": "~3.4|~4.0", + "symfony/dependency-injection": "^4.3", + "symfony/dom-crawler": "~3.4|~4.0", + "symfony/expression-language": "~3.4|~4.0", + "symfony/finder": "~3.4|~4.0", + "symfony/process": "~3.4|~4.0", + "symfony/routing": "~3.4|~4.0", + "symfony/stopwatch": "~3.4|~4.0", + "symfony/templating": "~3.4|~4.0", + "symfony/translation": "~4.2", + "symfony/translation-contracts": "^1.1", + "symfony/var-dumper": "^4.1.1", + "twig/twig": "^1.34|^2.4" + }, + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "", + "symfony/var-dumper": "" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-11-13T09:07:28+00:00", +======= + "time": "2019-12-19T16:23:40+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { @@ -15792,7 +19317,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\Filesystem\\": "" + "Symfony\\Component\\HttpKernel\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15812,39 +19337,84 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Filesystem Component", + "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com" - } - }, - "symfony/finder": { - "v3.4.35": { - "name": "symfony/finder", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + }, + "v5.0.2": { + "name": "symfony/http-kernel", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8" + "url": "https://github.com/symfony/http-kernel.git", + "reference": "00ce30602f3f690e66a63c327743d7b26c723b2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/3e915e5ce305f8bc8017597f71f1f4095092ddf8", - "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/00ce30602f3f690e66a63c327743d7b26c723b2e", + "reference": "00ce30602f3f690e66a63c327743d7b26c723b2e", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": "^7.2.5", + "psr/log": "~1.0", + "symfony/error-handler": "^4.4|^5.0", + "symfony/event-dispatcher": "^5.0", + "symfony/http-foundation": "^4.4|^5.0", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-php73": "^1.9" }, - "time": "2019-10-30T12:43:22+00:00", + "conflict": { + "symfony/browser-kit": "<4.4", + "symfony/cache": "<5.0", + "symfony/config": "<5.0", + "symfony/dependency-injection": "<4.4", + "symfony/doctrine-bridge": "<5.0", + "symfony/form": "<5.0", + "symfony/http-client": "<5.0", + "symfony/mailer": "<5.0", + "symfony/messenger": "<5.0", + "symfony/translation": "<5.0", + "symfony/twig-bridge": "<5.0", + "symfony/validator": "<5.0", + "twig/twig": "<2.4" + }, + "provide": { + "psr/log-implementation": "1.0" + }, + "require-dev": { + "psr/cache": "~1.0", + "symfony/browser-kit": "^4.4|^5.0", + "symfony/config": "^5.0", + "symfony/console": "^4.4|^5.0", + "symfony/css-selector": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/dom-crawler": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0", + "symfony/routing": "^4.4|^5.0", + "symfony/stopwatch": "^4.4|^5.0", + "symfony/translation": "^4.4|^5.0", + "symfony/translation-contracts": "^1.1|^2", + "twig/twig": "^2.4|^3.0" + }, + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "" + }, + "time": "2019-12-19T18:35:03+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "5.0-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Finder\\": "" + "Symfony\\Component\\HttpKernel\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15864,28 +19434,43 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Finder Component", + "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com" - }, + } + }, + "symfony/mime": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "v4.3.8": { - "name": "symfony/finder", + "name": "symfony/mime", "version": "v4.3.8", "version_normalized": "4.3.8.0", +======= + "v5.0.2": { + "name": "symfony/mime", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "source": { "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "72a068f77e317ae77c0a0495236ad292cfb5ce6f" + "url": "https://github.com/symfony/mime.git", + "reference": "22aecf6b11638ef378fab25d6c5a2da8a31a1448" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/72a068f77e317ae77c0a0495236ad292cfb5ce6f", - "reference": "72a068f77e317ae77c0a0495236ad292cfb5ce6f", + "url": "https://api.github.com/repos/symfony/mime/zipball/22aecf6b11638ef378fab25d6c5a2da8a31a1448", + "reference": "22aecf6b11638ef378fab25d6c5a2da8a31a1448", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "^7.1.3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10", + "symfony/dependency-injection": "~3.4|^4.1" }, - "time": "2019-10-30T12:53:54+00:00", + "time": "2019-11-12T13:10:02+00:00", "type": "library", "extra": { "branch-alias": { @@ -15894,7 +19479,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Component\\Finder\\": "" + "Symfony\\Component\\Mime\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15914,44 +19499,59 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Finder Component", - "homepage": "https://symfony.com" + "description": "A library to manipulate MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ] } }, - "symfony/http-foundation": { + "symfony/phpunit-bridge": { "v3.4.35": { - "name": "symfony/http-foundation", + "name": "symfony/phpunit-bridge", "version": "v3.4.35", "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-foundation.git", - "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce" + "url": "https://github.com/symfony/phpunit-bridge.git", + "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9e4b3ac8fa3348b4811674d23de32d201de225ce", - "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7", + "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php70": "~1.6" + "php": ">=5.3.3" }, - "require-dev": { - "symfony/expression-language": "~2.8|~3.0|~4.0" + "conflict": { + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" }, - "time": "2019-11-11T12:53:10+00:00", - "type": "library", + "suggest": { + "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" + }, + "time": "2019-09-30T20:33:19+00:00", + "bin": [ + "bin/simple-phpunit" + ], + "type": "symfony-bridge", "extra": { "branch-alias": { "dev-master": "3.4-dev" + }, + "thanks": { + "name": "phpunit/phpunit", + "url": "https://github.com/sebastianbergmann/phpunit" } }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Component\\HttpFoundation\\": "" + "Symfony\\Bridge\\PhpUnit\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15963,51 +19563,63 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpFoundation Component", + "description": "Symfony PHPUnit Bridge", "homepage": "https://symfony.com" +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= }, - "v4.3.8": { - "name": "symfony/http-foundation", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "v4.4.2": { + "name": "symfony/phpunit-bridge", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-foundation.git", - "reference": "cabe67275034e173350e158f3b1803d023880227" + "url": "https://github.com/symfony/phpunit-bridge.git", + "reference": "724497102bfdb2ffcde576c5d3ef872040cb3632" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cabe67275034e173350e158f3b1803d023880227", - "reference": "cabe67275034e173350e158f3b1803d023880227", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/724497102bfdb2ffcde576c5d3ef872040cb3632", + "reference": "724497102bfdb2ffcde576c5d3ef872040cb3632", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/mime": "^4.3", - "symfony/polyfill-mbstring": "~1.1" + "php": ">=5.5.9" }, - "require-dev": { - "predis/predis": "~1.0", - "symfony/expression-language": "~3.4|~4.0" + "conflict": { + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" }, - "time": "2019-11-12T13:07:20+00:00", - "type": "library", + "suggest": { + "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" + }, + "time": "2019-11-28T13:33:56+00:00", + "bin": [ + "bin/simple-phpunit" + ], + "type": "symfony-bridge", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.4-dev" + }, + "thanks": { + "name": "phpunit/phpunit", + "url": "https://github.com/sebastianbergmann/phpunit" } }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Component\\HttpFoundation\\": "" + "Symfony\\Bridge\\PhpUnit\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -16019,91 +19631,116 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpFoundation Component", + "description": "Symfony PHPUnit Bridge", "homepage": "https://symfony.com" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json } }, - "symfony/http-kernel": { - "v3.4.35": { - "name": "symfony/http-kernel", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + "symfony/polyfill-ctype": { + "v1.12.0": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "symfony/polyfill-ctype", + "version": "v1.12.0", + "version_normalized": "1.12.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-kernel.git", - "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9" + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e1764b3de00ec5636dd03d02fd44bcb1147d70d9", - "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "psr/log": "~1.0", - "symfony/debug": "^3.3.3|~4.0", - "symfony/event-dispatcher": "~2.8|~3.0|~4.0", - "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php56": "~1.8" + "php": ">=5.3.3" }, - "conflict": { - "symfony/config": "<2.8", - "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4", - "symfony/var-dumper": "<3.3", - "twig/twig": "<1.34|<2.4,>=2" + "suggest": { + "ext-ctype": "For best performance" }, - "provide": { - "psr/log-implementation": "1.0" + "time": "2019-08-06T08:03:45+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.12-dev" + } }, - "require-dev": { - "psr/cache": "~1.0", - "symfony/browser-kit": "~2.8|~3.0|~4.0", - "symfony/class-loader": "~2.8|~3.0", - "symfony/config": "~2.8|~3.0|~4.0", - "symfony/console": "~2.8|~3.0|~4.0", - "symfony/css-selector": "~2.8|~3.0|~4.0", - "symfony/dependency-injection": "^3.4.10|^4.0.10", - "symfony/dom-crawler": "~2.8|~3.0|~4.0", - "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/finder": "~2.8|~3.0|~4.0", - "symfony/process": "~2.8|~3.0|~4.0", - "symfony/routing": "~3.4|~4.0", - "symfony/stopwatch": "~2.8|~3.0|~4.0", - "symfony/templating": "~2.8|~3.0|~4.0", - "symfony/translation": "~2.8|~3.0|~4.0", - "symfony/var-dumper": "~3.3|~4.0" + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ] + }, + "v1.13.1": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "name": "symfony/polyfill-ctype", + "version": "v1.12.0", + "version_normalized": "1.12.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" }, "suggest": { - "symfony/browser-kit": "", - "symfony/config": "", - "symfony/console": "", - "symfony/dependency-injection": "", - "symfony/finder": "", - "symfony/var-dumper": "" + "ext-ctype": "For best performance" }, - "time": "2019-11-13T08:44:50+00:00", + "time": "2019-08-06T08:03:45+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "1.12-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\HttpKernel\\": "" + "Symfony\\Polyfill\\Ctype\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -16112,91 +19749,61 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpKernel Component", - "homepage": "https://symfony.com" - }, - "v4.3.8": { - "name": "symfony/http-kernel", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ] + } + }, + "symfony/polyfill-iconv": { + "v1.12.0": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "symfony/polyfill-iconv", + "version": "v1.12.0", + "version_normalized": "1.12.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-kernel.git", - "reference": "5fdf186f26f9080de531d3f1d024348b2f0ab12f" + "url": "https://github.com/symfony/polyfill-iconv.git", + "reference": "685968b11e61a347c18bf25db32effa478be610f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5fdf186f26f9080de531d3f1d024348b2f0ab12f", - "reference": "5fdf186f26f9080de531d3f1d024348b2f0ab12f", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f", + "reference": "685968b11e61a347c18bf25db32effa478be610f", "shasum": "" }, "require": { - "php": "^7.1.3", - "psr/log": "~1.0", - "symfony/debug": "~3.4|~4.0", - "symfony/event-dispatcher": "^4.3", - "symfony/http-foundation": "^4.1.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php73": "^1.9" - }, - "conflict": { - "symfony/browser-kit": "<4.3", - "symfony/config": "<3.4", - "symfony/dependency-injection": "<4.3", - "symfony/translation": "<4.2", - "symfony/var-dumper": "<4.1.1", - "twig/twig": "<1.34|<2.4,>=2" - }, - "provide": { - "psr/log-implementation": "1.0" - }, - "require-dev": { - "psr/cache": "~1.0", - "symfony/browser-kit": "^4.3", - "symfony/config": "~3.4|~4.0", - "symfony/console": "~3.4|~4.0", - "symfony/css-selector": "~3.4|~4.0", - "symfony/dependency-injection": "^4.3", - "symfony/dom-crawler": "~3.4|~4.0", - "symfony/expression-language": "~3.4|~4.0", - "symfony/finder": "~3.4|~4.0", - "symfony/process": "~3.4|~4.0", - "symfony/routing": "~3.4|~4.0", - "symfony/stopwatch": "~3.4|~4.0", - "symfony/templating": "~3.4|~4.0", - "symfony/translation": "~4.2", - "symfony/translation-contracts": "^1.1", - "symfony/var-dumper": "^4.1.1", - "twig/twig": "^1.34|^2.4" + "php": ">=5.3.3" }, "suggest": { - "symfony/browser-kit": "", - "symfony/config": "", - "symfony/console": "", - "symfony/dependency-injection": "", - "symfony/var-dumper": "" + "ext-iconv": "For best performance" }, - "time": "2019-11-13T09:07:28+00:00", + "time": "2019-08-06T08:03:45+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "1.12-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\HttpKernel\\": "" + "Symfony\\Polyfill\\Iconv\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -16205,56 +19812,59 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpKernel Component", - "homepage": "https://symfony.com" - } - }, - "symfony/mime": { - "v4.3.8": { - "name": "symfony/mime", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "description": "Symfony polyfill for the Iconv extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "iconv", + "polyfill", + "portable", + "shim" + ] + }, + "v1.13.1": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "name": "symfony/polyfill-iconv", + "version": "v1.12.0", + "version_normalized": "1.12.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "22aecf6b11638ef378fab25d6c5a2da8a31a1448" + "url": "https://github.com/symfony/polyfill-iconv.git", + "reference": "685968b11e61a347c18bf25db32effa478be610f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/22aecf6b11638ef378fab25d6c5a2da8a31a1448", - "reference": "22aecf6b11638ef378fab25d6c5a2da8a31a1448", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f", + "reference": "685968b11e61a347c18bf25db32effa478be610f", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/polyfill-intl-idn": "^1.10", - "symfony/polyfill-mbstring": "^1.0" + "php": ">=5.3.3" }, - "require-dev": { - "egulias/email-validator": "^2.1.10", - "symfony/dependency-injection": "~3.4|^4.1" + "suggest": { + "ext-iconv": "For best performance" }, - "time": "2019-11-12T13:10:02+00:00", + "time": "2019-08-06T08:03:45+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "1.12-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Mime\\": "" + "Symfony\\Polyfill\\Iconv\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -16263,70 +19873,62 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "A library to manipulate MIME messages", + "description": "Symfony polyfill for the Iconv extension", "homepage": "https://symfony.com", "keywords": [ - "mime", - "mime-type" + "compatibility", + "iconv", + "polyfill", + "portable", + "shim" ] } }, - "symfony/phpunit-bridge": { - "v3.4.35": { - "name": "symfony/phpunit-bridge", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + "symfony/polyfill-intl-idn": { + "v1.13.1": { + "name": "symfony/polyfill-intl-idn", + "version": "v1.13.1", + "version_normalized": "1.13.1.0", "source": { "type": "git", - "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7" + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7", - "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6f9c239e61e1b0c9229a28ff89a812dc449c3d46", + "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46", "shasum": "" }, "require": { - "php": ">=5.3.3" - }, - "conflict": { - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + "php": ">=5.3.3", + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php72": "^1.9" }, "suggest": { - "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" + "ext-intl": "For best performance" }, - "time": "2019-09-30T20:33:19+00:00", - "bin": [ - "bin/simple-phpunit" - ], - "type": "symfony-bridge", + "time": "2019-11-27T13:56:44+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" - }, - "thanks": { - "name": "phpunit/phpunit", - "url": "https://github.com/sebastianbergmann/phpunit" + "dev-master": "1.13-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Bridge\\PhpUnit\\": "" + "Symfony\\Polyfill\\Intl\\Idn\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "bootstrap.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -16335,39 +19937,47 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Laurent Bassin", + "email": "laurent@bassin.info" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony PHPUnit Bridge", - "homepage": "https://symfony.com" + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ] } }, - "symfony/polyfill-ctype": { + "symfony/polyfill-mbstring": { "v1.12.0": { - "name": "symfony/polyfill-ctype", + "name": "symfony/polyfill-mbstring", "version": "v1.12.0", "version_normalized": "1.12.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", "shasum": "" }, "require": { "php": ">=5.3.3" }, "suggest": { - "ext-ctype": "For best performance" + "ext-mbstring": "For best performance" }, "time": "2019-08-06T08:03:45+00:00", "type": "library", @@ -16378,7 +19988,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" + "Symfony\\Polyfill\\Mbstring\\": "" }, "files": [ "bootstrap.php" @@ -16390,56 +20000,55 @@ ], "authors": [ { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for ctype functions", + "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "ctype", + "mbstring", "polyfill", - "portable" + "portable", + "shim" ] - } - }, - "symfony/polyfill-iconv": { - "v1.12.0": { - "name": "symfony/polyfill-iconv", - "version": "v1.12.0", - "version_normalized": "1.12.0.0", + }, + "v1.13.1": { + "name": "symfony/polyfill-mbstring", + "version": "v1.13.1", + "version_normalized": "1.13.1.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "685968b11e61a347c18bf25db32effa478be610f" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f", - "reference": "685968b11e61a347c18bf25db32effa478be610f", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7b4aab9743c30be783b73de055d24a39cf4b954f", + "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f", "shasum": "" }, "require": { "php": ">=5.3.3" }, "suggest": { - "ext-iconv": "For best performance" + "ext-mbstring": "For best performance" }, - "time": "2019-08-06T08:03:45+00:00", + "time": "2019-11-27T14:18:11+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.13-dev" } }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Iconv\\": "" + "Symfony\\Polyfill\\Mbstring\\": "" }, "files": [ "bootstrap.php" @@ -16459,24 +20068,31 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Iconv extension", + "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "iconv", + "mbstring", "polyfill", "portable", "shim" ] } }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "symfony/polyfill-intl-idn": { "v1.12.0": { "name": "symfony/polyfill-intl-idn", +======= + "symfony/polyfill-php56": { + "v1.12.0": { + "name": "symfony/polyfill-php56", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "version": "v1.12.0", "version_normalized": "1.12.0.0", "source": { "type": "git", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "url": "https://github.com/symfony/polyfill-intl-idn.git", "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2" }, @@ -16484,15 +20100,20 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6af626ae6fa37d396dc90a399c0ff08e5cfc45b2", "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2", +======= + "url": "https://github.com/symfony/polyfill-php56.git", + "reference": "0e3b212e96a51338639d8ce175c046d7729c3403" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403", + "reference": "0e3b212e96a51338639d8ce175c046d7729c3403", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { "php": ">=5.3.3", - "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php72": "^1.9" - }, - "suggest": { - "ext-intl": "For best performance" + "symfony/polyfill-util": "~1.0" }, "time": "2019-08-06T08:03:45+00:00", "type": "library", @@ -16503,7 +20124,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Intl\\Idn\\": "" + "Symfony\\Polyfill\\Php56\\": "" }, "files": [ "bootstrap.php" @@ -16515,24 +20136,23 @@ ], "authors": [ { - "name": "Laurent Bassin", - "email": "laurent@bassin.info" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "idn", - "intl", "polyfill", "portable", "shim" ] +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json } }, "symfony/polyfill-mbstring": { @@ -16549,15 +20169,33 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", +======= + }, + "v1.13.1": { + "name": "symfony/polyfill-php56", + "version": "v1.13.1", + "version_normalized": "1.13.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php56.git", + "reference": "53dd1cdf3cb986893ccf2b96665b25b3abb384f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/53dd1cdf3cb986893ccf2b96665b25b3abb384f4", + "reference": "53dd1cdf3cb986893ccf2b96665b25b3abb384f4", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-mbstring": "For best performance" + "php": ">=5.3.3", + "symfony/polyfill-util": "~1.0" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "time": "2019-08-06T08:03:45+00:00", +======= + "time": "2019-11-27T13:56:44+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { @@ -16566,7 +20204,7 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" + "Symfony\\Polyfill\\Php56\\": "" }, "files": [ "bootstrap.php" @@ -16586,24 +20224,30 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Mbstring extension", + "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "mbstring", "polyfill", "portable", "shim" ] } }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "symfony/polyfill-php56": { "v1.12.0": { "name": "symfony/polyfill-php56", +======= + "symfony/polyfill-php70": { + "v1.12.0": { + "name": "symfony/polyfill-php70", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "version": "v1.12.0", "version_normalized": "1.12.0.0", "source": { "type": "git", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "url": "https://github.com/symfony/polyfill-php56.git", "reference": "0e3b212e96a51338639d8ce175c046d7729c3403" }, @@ -16611,11 +20255,20 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403", "reference": "0e3b212e96a51338639d8ce175c046d7729c3403", +======= + "url": "https://github.com/symfony/polyfill-php70.git", + "reference": "54b4c428a0054e254223797d2713c31e08610831" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831", + "reference": "54b4c428a0054e254223797d2713c31e08610831", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "php": ">=5.3.3", - "symfony/polyfill-util": "~1.0" + "paragonie/random_compat": "~1.0|~2.0|~9.99", + "php": ">=5.3.3" }, "time": "2019-08-06T08:03:45+00:00", "type": "library", @@ -16626,10 +20279,13 @@ }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Php56\\": "" + "Symfony\\Polyfill\\Php70\\": "" }, "files": [ "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -16646,7 +20302,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -16654,10 +20310,15 @@ "portable", "shim" ] +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json } }, "symfony/polyfill-php70": { "v1.12.0": { +======= + }, + "v1.13.1": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "name": "symfony/polyfill-php70", "version": "v1.12.0", "version_normalized": "1.12.0.0", @@ -16839,6 +20500,62 @@ }, "symfony/polyfill-util": { "v1.12.0": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "symfony/polyfill-util", + "version": "v1.12.0", + "version_normalized": "1.12.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-util.git", + "reference": "4317de1386717b4c22caed7725350a8887ab205c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4317de1386717b4c22caed7725350a8887ab205c", + "reference": "4317de1386717b4c22caed7725350a8887ab205c", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "time": "2019-08-06T08:03:45+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.12-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Util\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony utilities for portability of PHP codes", + "homepage": "https://symfony.com", + "keywords": [ + "compat", + "compatibility", + "polyfill", + "shim" + ] + }, + "v1.13.1": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "name": "symfony/polyfill-util", "version": "v1.12.0", "version_normalized": "1.12.0.0", @@ -16894,6 +20611,59 @@ }, "symfony/process": { "v3.4.35": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "symfony/process", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e", + "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8" + }, + "time": "2019-10-24T15:33:53+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Process Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "name": "symfony/process", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -16940,37 +20710,186 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Process Component", - "homepage": "https://symfony.com" + "description": "Symfony Process Component", + "homepage": "https://symfony.com" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/process", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "3b2e0cb029afbb0395034509291f21191d1a4db0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/3b2e0cb029afbb0395034509291f21191d1a4db0", + "reference": "3b2e0cb029afbb0395034509291f21191d1a4db0", +======= + "v4.4.2": { + "name": "symfony/process", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "b84501ad50adb72a94fb460a5b5c91f693e99c9b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/b84501ad50adb72a94fb460a5b5c91f693e99c9b", + "reference": "b84501ad50adb72a94fb460a5b5c91f693e99c9b", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-10-28T17:07:32+00:00", +======= + "time": "2019-12-06T10:06:46+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Process Component", + "homepage": "https://symfony.com" + } + }, + "symfony/psr-http-message-bridge": { + "v1.1.2": { + "name": "symfony/psr-http-message-bridge", + "version": "v1.1.2", + "version_normalized": "1.1.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/psr-http-message-bridge.git", + "reference": "a33352af16f78a5ff4f9d90811536abf210df12b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b", + "reference": "a33352af16f78a5ff4f9d90811536abf210df12b", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0", + "psr/http-message": "^1.0", + "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0" + }, + "require-dev": { + "symfony/phpunit-bridge": "^3.4 || ^4.0" + }, + "suggest": { + "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + }, + "time": "2019-04-03T17:09:40+00:00", + "type": "symfony-bridge", + "extra": { + "branch-alias": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "dev-master": "1.2-dev" +======= + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Bridge\\PsrHttpMessage\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Symfony Community", + "homepage": "http://symfony.com/contributors" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "PSR HTTP message bridge", + "homepage": "http://symfony.com", + "keywords": [ + "http", + "http-message", + "psr-17", + "psr-7" + ] }, - "v4.3.8": { - "name": "symfony/process", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "v1.3.0": { + "name": "symfony/psr-http-message-bridge", + "version": "v1.3.0", + "version_normalized": "1.3.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "3b2e0cb029afbb0395034509291f21191d1a4db0" + "url": "https://github.com/symfony/psr-http-message-bridge.git", + "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/3b2e0cb029afbb0395034509291f21191d1a4db0", - "reference": "3b2e0cb029afbb0395034509291f21191d1a4db0", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9d3e80d54d9ae747ad573cad796e8e247df7b796", + "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "^7.1", + "psr/http-message": "^1.0", + "symfony/http-foundation": "^4.4 || ^5.0" }, - "time": "2019-10-28T17:07:32+00:00", - "type": "library", + "require-dev": { + "nyholm/psr7": "^1.1", + "symfony/phpunit-bridge": "^4.4 || ^5.0", + "zendframework/zend-diactoros": "^1.4.1 || ^2.0" + }, + "suggest": { + "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + }, + "time": "2019-11-25T19:33:50+00:00", + "type": "symfony-bridge", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "1.3-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Process\\": "" + "Symfony\\Bridge\\PsrHttpMessage\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -16987,52 +20906,70 @@ }, { "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "homepage": "http://symfony.com/contributors" } ], - "description": "Symfony Process Component", - "homepage": "https://symfony.com" + "description": "PSR HTTP message bridge", + "homepage": "http://symfony.com", + "keywords": [ + "http", + "http-message", + "psr-17", + "psr-7" + ] } }, - "symfony/psr-http-message-bridge": { - "v1.2.0": { - "name": "symfony/psr-http-message-bridge", - "version": "v1.2.0", - "version_normalized": "1.2.0.0", + "symfony/routing": { + "v3.4.35": { + "name": "symfony/routing", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad" + "url": "https://github.com/symfony/routing.git", + "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad", - "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad", + "url": "https://api.github.com/repos/symfony/routing/zipball/afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5", + "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5", "shasum": "" }, "require": { - "php": "^7.1", - "psr/http-message": "^1.0", - "symfony/http-foundation": "^3.4 || ^4.0" + "php": "^5.5.9|>=7.0.8" + }, + "conflict": { + "symfony/config": "<3.3.1", + "symfony/dependency-injection": "<3.3", + "symfony/yaml": "<3.4" }, "require-dev": { - "nyholm/psr7": "^1.1", - "symfony/phpunit-bridge": "^3.4.20 || ^4.0", - "zendframework/zend-diactoros": "^1.4.1 || ^2.0" + "doctrine/annotations": "~1.0", + "psr/log": "~1.0", + "symfony/config": "^3.3.1|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/yaml": "~3.4|~4.0" }, "suggest": { - "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + "doctrine/annotations": "For using the annotation loader", + "symfony/config": "For using the all-in-one router or any loader", + "symfony/expression-language": "For using expression matching", + "symfony/http-foundation": "For using a Symfony Request object", + "symfony/yaml": "For using the YAML loader" }, - "time": "2019-03-11T18:22:33+00:00", - "type": "symfony-bridge", + "time": "2019-11-08T17:25:00+00:00", + "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2-dev" + "dev-master": "3.4-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json } }, "autoload": { "psr-4": { - "Symfony\\Bridge\\PsrHttpMessage\\": "" + "Symfony\\Component\\Routing\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -17045,25 +20982,34 @@ "authors": [ { "name": "Symfony Community", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "homepage": "http://symfony.com/contributors" }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" +======= + "homepage": "https://symfony.com/contributors" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json } ], - "description": "PSR HTTP message bridge", - "homepage": "http://symfony.com", + "description": "Symfony Routing Component", + "homepage": "https://symfony.com", "keywords": [ - "http", - "http-message", - "psr-17", - "psr-7" + "router", + "routing", + "uri", + "url" ] +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json } }, "symfony/routing": { "v3.4.35": { +======= + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "name": "symfony/routing", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -17143,6 +21089,89 @@ }, "symfony/serializer": { "v3.4.35": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "symfony/serializer", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/serializer.git", + "reference": "9d14f7ff2c585a8a9f6f980253066285ddc2f675" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/serializer/zipball/9d14f7ff2c585a8a9f6f980253066285ddc2f675", + "reference": "9d14f7ff2c585a8a9f6f980253066285ddc2f675", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "phpdocumentor/type-resolver": "<0.2.1", + "symfony/dependency-injection": "<3.2", + "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4", + "symfony/property-info": "<3.1", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "doctrine/annotations": "~1.0", + "doctrine/cache": "~1.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0", + "symfony/cache": "~3.1|~4.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.2|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/property-access": "~2.8|~3.0|~4.0", + "symfony/property-info": "^3.4.13|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.", + "doctrine/cache": "For using the default cached annotation reader and metadata cache.", + "psr/cache-implementation": "For using the metadata cache.", + "symfony/config": "For using the XML mapping loader.", + "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.", + "symfony/property-access": "For using the ObjectNormalizer.", + "symfony/property-info": "To deserialize relations.", + "symfony/yaml": "For using the default YAML mapping loader." + }, + "time": "2019-11-12T17:51:12+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Serializer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Serializer Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "name": "symfony/serializer", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -17244,19 +21273,102 @@ "psr/container": "^1.0" }, "suggest": { - "symfony/service-implementation": "" + "symfony/service-implementation": "" + }, + "time": "2019-10-14T12:27:06+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ] + } + }, + "symfony/translation": { + "v3.4.35": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "symfony/translation", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/2031c895bc97ac1787d418d90bd1ed7d299f2772", + "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/config": "<2.8", + "symfony/dependency-injection": "<3.4", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/http-kernel": "~3.4|~4.0", + "symfony/intl": "^2.8.18|^3.2.5|~4.0", + "symfony/var-dumper": "~3.4|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "psr/log-implementation": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" }, - "time": "2019-10-14T12:27:06+00:00", + "time": "2019-10-30T12:43:22+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Contracts\\Service\\": "" - } + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -17264,28 +21376,19 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to writing services", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ] - } - }, - "symfony/translation": { - "v3.4.35": { + "description": "Symfony Translation Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "name": "symfony/translation", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -17356,6 +21459,7 @@ "description": "Symfony Translation Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "v4.3.8": { "name": "symfony/translation", "version": "v4.3.8", @@ -17369,6 +21473,21 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/translation/zipball/bbce239b35b0cd47bd75848b23e969f17dd970e7", "reference": "bbce239b35b0cd47bd75848b23e969f17dd970e7", +======= + "v4.4.2": { + "name": "symfony/translation", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "f7669f48a9633bf8139bc026c755e894b7206677" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/f7669f48a9633bf8139bc026c755e894b7206677", + "reference": "f7669f48a9633bf8139bc026c755e894b7206677", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { @@ -17401,7 +21520,11 @@ "symfony/config": "", "symfony/yaml": "" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "time": "2019-11-06T23:21:49+00:00", +======= + "time": "2019-12-12T12:53:52+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { @@ -17456,11 +21579,11 @@ "suggest": { "symfony/translation-implementation": "" }, - "time": "2019-09-17T11:12:18+00:00", + "time": "2019-11-18T17:27:11+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -17550,6 +21673,118 @@ "symfony/property-access": "For accessing properties within comparison constraints", "symfony/yaml": "" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "time": "2019-09-17T11:12:18+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" +======= + "time": "2019-11-05T22:03:38+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Validator\\": "" + }, + "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" + } + ], +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ] + } + }, + "symfony/validator": { + "v3.4.35": { +======= + "description": "Symfony Validator Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json + "name": "symfony/validator", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/validator.git", + "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/validator/zipball/b11f45742c5c9a228cedc46b70c6317780a1ac80", + "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation": "~2.8|~3.0|~4.0" + }, + "conflict": { + "doctrine/lexer": "<1.0.2", + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", + "symfony/dependency-injection": "<3.3", + "symfony/http-kernel": "<3.3.5", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "doctrine/annotations": "~1.7", + "doctrine/cache": "~1.0", + "egulias/email-validator": "^2.1.10", + "symfony/cache": "~3.1|~4.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/http-kernel": "^3.3.5|~4.0", + "symfony/intl": "^2.8.18|^3.2.5|~4.0", + "symfony/property-access": "~2.8|~3.0|~4.0", + "symfony/var-dumper": "~3.3|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.", + "doctrine/cache": "For using the default cached annotation reader and metadata cache.", + "egulias/email-validator": "Strict (RFC compliant) email validation", + "psr/cache-implementation": "For using the metadata cache.", + "symfony/config": "", + "symfony/expression-language": "For using the Expression validator", + "symfony/http-foundation": "", + "symfony/intl": "", + "symfony/property-access": "For accessing properties within comparison constraints", + "symfony/yaml": "" + }, "time": "2019-11-05T22:03:38+00:00", "type": "library", "extra": { @@ -17565,61 +21800,159 @@ "/Tests/" ] }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Validator Component", - "homepage": "https://symfony.com" - } - }, - "symfony/var-dumper": { - "v3.4.35": { + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Validator Component", + "homepage": "https://symfony.com" + } + }, + "symfony/var-dumper": { + "v3.4.35": { + "name": "symfony/var-dumper", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "569e261461600810845a8305ca3f64abd3e712c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/569e261461600810845a8305ca3f64abd3e712c0", + "reference": "569e261461600810845a8305ca3f64abd3e712c0", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + }, + "require-dev": { + "ext-iconv": "*", + "twig/twig": "~1.34|~2.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", + "ext-symfony_debug": "" + }, + "time": "2019-10-10T11:03:19+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony mechanism for exploring and dumping PHP variables", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ] + }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "v4.3.8": { + "name": "symfony/var-dumper", + "version": "v4.3.8", + "version_normalized": "4.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "ea4940845535c85ff5c505e13b3205b0076d07bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ea4940845535c85ff5c505e13b3205b0076d07bf", + "reference": "ea4940845535c85ff5c505e13b3205b0076d07bf", +======= + "v4.4.2": { "name": "symfony/var-dumper", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "569e261461600810845a8305ca3f64abd3e712c0" + "reference": "be330f919bdb395d1e0c3f2bfb8948512d6bdd99" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/569e261461600810845a8305ca3f64abd3e712c0", - "reference": "569e261461600810845a8305ca3f64abd3e712c0", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/be330f919bdb395d1e0c3f2bfb8948512d6bdd99", + "reference": "be330f919bdb395d1e0c3f2bfb8948512d6bdd99", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-mbstring": "~1.0" + "php": "^7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php72": "~1.5" }, "conflict": { - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", + "symfony/console": "<3.4" }, "require-dev": { "ext-iconv": "*", +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json + "symfony/console": "~3.4|~4.0", + "symfony/process": "~3.4|~4.0", "twig/twig": "~1.34|~2.4" +======= + "symfony/console": "^3.4|^4.0|^5.0", + "symfony/process": "^4.4|^5.0", + "twig/twig": "^1.34|^2.4|^3.0" }, "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", - "ext-symfony_debug": "" + "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" }, - "time": "2019-10-10T11:03:19+00:00", + "time": "2019-12-18T13:41:29+00:00", + "bin": [ + "Resources/bin/var-dump-server" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -17654,42 +21987,46 @@ "dump" ] }, - "v4.3.8": { + "v5.0.2": { "name": "symfony/var-dumper", - "version": "v4.3.8", - "version_normalized": "4.3.8.0", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "ea4940845535c85ff5c505e13b3205b0076d07bf" + "reference": "d7bc61d5d335fa9b1b91e14bb16861e8ca50f53a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ea4940845535c85ff5c505e13b3205b0076d07bf", - "reference": "ea4940845535c85ff5c505e13b3205b0076d07bf", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d7bc61d5d335fa9b1b91e14bb16861e8ca50f53a", + "reference": "d7bc61d5d335fa9b1b91e14bb16861e8ca50f53a", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php72": "~1.5" + "php": "^7.2.5", + "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", - "symfony/console": "<3.4" + "phpunit/phpunit": "<5.4.3", + "symfony/console": "<4.4" }, "require-dev": { "ext-iconv": "*", - "symfony/console": "~3.4|~4.0", - "symfony/process": "~3.4|~4.0", - "twig/twig": "~1.34|~2.4" + "symfony/console": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0", + "twig/twig": "^2.4|^3.0" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json }, "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 bin/var-dump-server script" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "time": "2019-10-13T12:02:04+00:00", +======= + "time": "2019-12-18T13:50:31+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "bin": [ "Resources/bin/var-dump-server" ], @@ -17734,6 +22071,69 @@ }, "symfony/yaml": { "v3.4.35": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= + "name": "symfony/yaml", + "version": "v3.4.35", + "version_normalized": "3.4.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "dab657db15207879217fc81df4f875947bf68804" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/dab657db15207879217fc81df4f875947bf68804", + "reference": "dab657db15207879217fc81df4f875947bf68804", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/console": "<3.4" + }, + "require-dev": { + "symfony/console": "~3.4|~4.0" + }, + "suggest": { + "symfony/console": "For validating YAML files using the lint command" + }, + "time": "2019-10-24T15:33:53+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Yaml Component", + "homepage": "https://symfony.com" + }, + "v3.4.36": { +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "name": "symfony/yaml", "version": "v3.4.35", "version_normalized": "3.4.35.0", @@ -17793,6 +22193,7 @@ "description": "Symfony Yaml Component", "homepage": "https://symfony.com" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "v4.3.8": { "name": "symfony/yaml", "version": "v4.3.8", @@ -17806,6 +22207,21 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/yaml/zipball/324cf4b19c345465fad14f3602050519e09e361d", "reference": "324cf4b19c345465fad14f3602050519e09e361d", +======= + "v4.4.2": { + "name": "symfony/yaml", + "version": "v4.4.2", + "version_normalized": "4.4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "a08832b974dd5fafe3085a66d41fe4c84bb2628c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/a08832b974dd5fafe3085a66d41fe4c84bb2628c", + "reference": "a08832b974dd5fafe3085a66d41fe4c84bb2628c", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "shasum": "" }, "require": { @@ -17816,12 +22232,80 @@ "symfony/console": "<3.4" }, "require-dev": { +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "symfony/console": "~3.4|~4.0" +======= + "symfony/console": "^3.4|^4.0|^5.0" + }, + "suggest": { + "symfony/console": "For validating YAML files using the lint command" + }, + "time": "2019-12-10T10:33:21+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Yaml Component", + "homepage": "https://symfony.com" + }, + "v5.0.2": { + "name": "symfony/yaml", + "version": "v5.0.2", + "version_normalized": "5.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "847661e77afa48d99ecfa508e8b60f0b029a19c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/847661e77afa48d99ecfa508e8b60f0b029a19c0", + "reference": "847661e77afa48d99ecfa508e8b60f0b029a19c0", + "shasum": "" + }, + "require": { + "php": "^7.2.5", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/console": "<4.4" + }, + "require-dev": { + "symfony/console": "^4.4|^5.0" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json }, "suggest": { "symfony/console": "For validating YAML files using the lint command" }, +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json "time": "2019-10-30T12:58:49+00:00", +======= + "time": "2019-12-10T11:06:55+00:00", +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json "type": "library", "extra": { "branch-alias": { @@ -17898,6 +22382,73 @@ } }, "twig/twig": { + "v1.42.3": { + "name": "twig/twig", + "version": "v1.42.3", + "version_normalized": "1.42.3.0", + "source": { + "type": "git", + "url": "https://github.com/twigphp/Twig.git", + "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/201baee843e0ffe8b0b956f336dd42b2a92fae4e", + "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e", + "shasum": "" + }, + "require": { + "php": ">=5.5.0", + "symfony/polyfill-ctype": "^1.8" + }, + "require-dev": { + "psr/container": "^1.0", + "symfony/debug": "^3.4|^4.2", + "symfony/phpunit-bridge": "^4.4@dev|^5.0" + }, + "time": "2019-08-24T12:51:03+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.42-dev" + } + }, + "autoload": { + "psr-0": { + "Twig_": "lib/" + }, + "psr-4": { + "Twig\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + }, + { + "name": "Twig Team", + "homepage": "https://twig.symfony.com/contributors", + "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" + } + ], + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", + "keywords": [ + "templating" + ] + }, "v1.42.4": { "name": "twig/twig", "version": "v1.42.4", @@ -17965,19 +22516,19 @@ "templating" ] }, - "v2.12.2": { + "v2.12.3": { "name": "twig/twig", - "version": "v2.12.2", - "version_normalized": "2.12.2.0", + "version": "v2.12.3", + "version_normalized": "2.12.3.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "d761fd1f1c6b867ae09a7d8119a6d95d06dc44ed" + "reference": "97b6311585cae66a26833b14b33785f5797f7d39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/d761fd1f1c6b867ae09a7d8119a6d95d06dc44ed", - "reference": "d761fd1f1c6b867ae09a7d8119a6d95d06dc44ed", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/97b6311585cae66a26833b14b33785f5797f7d39", + "reference": "97b6311585cae66a26833b14b33785f5797f7d39", "shasum": "" }, "require": { @@ -17987,10 +22538,9 @@ }, "require-dev": { "psr/container": "^1.0", - "symfony/debug": "^3.4|^4.2", - "symfony/phpunit-bridge": "^4.4@dev|^5.0" + "symfony/phpunit-bridge": "^4.4|^5.0" }, - "time": "2019-11-11T16:52:09+00:00", + "time": "2019-12-28T07:12:03+00:00", "type": "library", "extra": { "branch-alias": { @@ -18018,7 +22568,6 @@ }, { "name": "Twig Team", - "homepage": "https://twig.symfony.com/contributors", "role": "Contributors" }, { @@ -18032,38 +22581,44 @@ "keywords": [ "templating" ] +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json +======= } }, "typo3/phar-stream-wrapper": { - "v2.1.3": { + "v3.1.3": { "name": "typo3/phar-stream-wrapper", - "version": "v2.1.3", - "version_normalized": "2.1.3.0", + "version": "v3.1.3", + "version_normalized": "3.1.3.0", "source": { "type": "git", "url": "https://github.com/TYPO3/phar-stream-wrapper.git", - "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb" + "reference": "586ff60beea128e069a5dc271d3d8133a9bc460a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e8a656d72028b97ab9f61ed993734f3cded02eeb", - "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb", + "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/586ff60beea128e069a5dc271d3d8133a9bc460a", + "reference": "586ff60beea128e069a5dc271d3d8133a9bc460a", "shasum": "" }, "require": { - "brumann/polyfill-unserialize": "^1.0", "ext-json": "*", - "php": "^5.3.3|^7.0" + "php": "^7.0" }, "require-dev": { "ext-xdebug": "*", - "phpunit/phpunit": "^4.8.36" + "phpunit/phpunit": "^6.5" }, "suggest": { "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing" }, - "time": "2019-10-18T11:59:10+00:00", + "time": "2019-10-18T11:57:16+00:00", "type": "library", + "extra": { + "branch-alias": { + "dev-master": "v3.x-dev" + } + }, "autoload": { "psr-4": { "TYPO3\\PharStreamWrapper\\": "src/" @@ -18081,6 +22636,7 @@ "security", "stream-wrapper" ] +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json } }, "webflo/drupal-finder": { @@ -18384,7 +22940,12 @@ "http", "psr", "psr-7" +<<<<<<< HEAD:app/master/include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json ] +======= + ], + "abandoned": "laminas/laminas-diactoros" +>>>>>>> 40cdd85... Update satis for 1.0.0 (#11):app/master/include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json } }, "zendframework/zend-escaper": { @@ -18432,7 +22993,8 @@ "ZendFramework", "escaper", "zf" - ] + ], + "abandoned": "laminas/laminas-escaper" } }, "zendframework/zend-feed": { @@ -18498,7 +23060,8 @@ "ZendFramework", "feed", "zf" - ] + ], + "abandoned": "laminas/laminas-feed" } }, "zendframework/zend-stdlib": { @@ -18547,7 +23110,8 @@ "ZendFramework", "stdlib", "zf" - ] + ], + "abandoned": "laminas/laminas-stdlib" } } } diff --git a/app/master/index.html b/app/master/index.html index b3489d8..7894297 100644 --- a/app/master/index.html +++ b/app/master/index.html @@ -21,8 +21,8 @@

    govcms/satis-master

    - -
    Last updated:
    + +
    Last updated:
    @@ -159,6 +159,7 @@
    Setting up this repository in your projects
    Releases
    + 1.3.0, 1.2.0
    @@ -166,6 +167,7 @@
    Setting up this repository in your projects
    @@ -611,7 +613,7 @@
    Setting up this repository in your projects
    Releases
    - v1.2.0
    + v1.3.0
    Required by
    @@ -702,50 +704,6 @@
    Setting up this repository in your projects
    -
    - - -
    -

    Backports unserialize options introduced in PHP 7.0 to older PHP versions.

    - -
    -
    -
    - - - -
    License
    -
    MIT
    - -
    Authors
    -
    - Denis Brumann
    - - -
    Releases
    -
    - - v1.0.4
    - - -
    Required by
    -
    - -
    -
    -
    -
    -
    @@ -827,7 +785,7 @@
    Setting up this repository in your projects
    Releases
    - 1.30.5
    + 1.31.0
    Required by
    @@ -954,6 +912,7 @@
    Setting up this repository in your projects
    @@ -999,6 +958,7 @@
    Setting up this repository in your projects
    Releases
    + 1.5.1, 1.5.0
    @@ -1007,6 +967,7 @@
    Setting up this repository in your projects
    @@ -1829,7 +1790,7 @@
    Setting up this repository in your projects
    Releases
    - 0.1
    + v0.1.1
    Required by
    @@ -1883,7 +1844,8 @@
    Setting up this repository in your projects
    Releases
    - v1.8.0
    + v1.8.0, + v1.4.0
    Required by
    @@ -1894,6 +1856,7 @@
    Setting up this repository in your projects
  • doctrine/reflection
  • drupal/console
  • drupal/core
  • +
  • drupal/core-recommended
  • @@ -1928,7 +1891,6 @@
    Setting up this repository in your projects
    memcached php redis - riak xcache @@ -1948,7 +1910,8 @@
    Setting up this repository in your projects
    Releases
    - 1.9.1
    + 1.10.0, + v1.6.2
    Required by
    @@ -1956,6 +1919,7 @@
    Setting up this repository in your projects
    @@ -2004,7 +1968,8 @@
    Setting up this repository in your projects
    Releases
    - 1.6.4
    + 1.6.4, + v1.4.0
    Required by
    @@ -2014,6 +1979,7 @@
    Setting up this repository in your projects
  • doctrine/common
  • doctrine/persistence
  • drupal/console
  • +
  • drupal/core-recommended
  • @@ -2061,13 +2027,15 @@
    Setting up this repository in your projects
    Releases
    - v2.11.0
    + 2.12.0, + v2.7.3
    Required by
    @@ -2173,13 +2141,15 @@
    Setting up this repository in your projects
    Releases
    - 1.3.1
    + 1.3.1, + v1.2.0
    Required by
    @@ -2283,7 +2253,8 @@
    Setting up this repository in your projects
    Releases
    - 1.2.0
    + 1.2.0, + 1.0.2
    Required by
    @@ -2291,6 +2262,7 @@
    Setting up this repository in your projects
    @@ -2341,7 +2313,7 @@
    Setting up this repository in your projects
    Releases
    - 1.2.0
    + 1.3.5
    Required by
    @@ -2366,7 +2338,7 @@
    Setting up this repository in your projects
    -

    Doctrine Reflection component

    +

    The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.

    @@ -2375,6 +2347,7 @@
    Setting up this repository in your projects
    Keywords
    reflection + static
    Homepage
    @@ -2387,13 +2360,13 @@
    Setting up this repository in your projects
    Authors
    - Roman Borschel, Benjamin Eberlei, Guilherme Blanco, Jonathan Wage, Johannes Schmitt, Marco Pivetta
    + Guilherme Blanco, Roman Borschel, Benjamin Eberlei, Jonathan Wage, Johannes Schmitt, Marco Pivetta
    Releases
    - v1.0.0
    + v1.1.0
    Required by
    @@ -2720,7 +2693,7 @@
    Setting up this repository in your projects
    Releases
    - 2.8.0, + 2.9.0, 2.6.0
    @@ -2776,7 +2749,7 @@
    Setting up this repository in your projects
    Releases
    - 2.8.0, + 2.9.0, 2.6.0
    @@ -2883,7 +2856,7 @@
    Setting up this repository in your projects
    Releases
    - 8.3.6
    + 8.3.7
    Required by
    @@ -3044,7 +3017,7 @@
    Setting up this repository in your projects
    Authors
    - Tommy Lynge Jørgensen, Fabian Bircher
    + Tommy Lynge Jørgensen, Fabian Bircher, tlyngej
    Support
    @@ -3658,8 +3631,7 @@
    Setting up this repository in your projects
    Releases
    - 8.7.10, - 8.7.9
    + 8.8.1
    Required by
    @@ -3681,6 +3653,7 @@
    Setting up this repository in your projects
  • drupal/consumers
  • drupal/contact_storage
  • drupal/context
  • +
  • drupal/core-recommended
  • drupal/crop
  • drupal/ctools
  • drupal/ctools_block
  • @@ -3748,6 +3721,46 @@
    Setting up this repository in your projects
  • drupal/username_enumeration_prevention
  • drupal/video_embed_field
  • drupal/webform
  • + + +
    +
    +
    + +
    + + +
    +

    Locked core dependencies; require this project INSTEAD OF drupal/core.

    + +
    +
    +
    + + + +
    License
    +
    GPL-2.0-or-later
    + + + +
    Releases
    +
    + + 8.8.1
    + + +
    Required by
    +
    +
    @@ -3791,7 +3804,7 @@
    Setting up this repository in your projects
    Releases
    - 8.7.10
    + 8.8.1
    Required by
    @@ -3840,7 +3853,7 @@
    Setting up this repository in your projects
    Releases
    - 8.7.10
    + 8.8.1
    Required by
    @@ -3896,7 +3909,7 @@
    Setting up this repository in your projects
    Releases
    - 1.5.0
    + 2.0.0
    Required by
    @@ -4409,6 +4422,7 @@
    Setting up this repository in your projects
    Releases
    + 1.8.0, 1.7.0
    @@ -4466,7 +4480,7 @@
    Setting up this repository in your projects
    Releases
    - 1.0.0
    + 1.3.0
    Required by
    @@ -4740,6 +4754,7 @@
    Setting up this repository in your projects
    Releases
    + 1.7.0, 1.6.0
    @@ -5053,7 +5068,7 @@
    Setting up this repository in your projects
    Authors
    - Hydra, Stalski, jyve, swentel, zuuperman
    + Hydra, Stalski, jyve, nils.destoop, swentel
    Support
    @@ -5440,7 +5455,7 @@
    Setting up this repository in your projects
    Authors
    - bojanz, dawehner, joachim, kaythay, rszrama, slashrsm, webflo
    + bojanz, dawehner, geek-merlin, joachim, jsacksick, kaythay, oknate, rszrama, slashrsm, webflo
    Support
    @@ -5874,7 +5889,7 @@
    Setting up this repository in your projects
    Authors
    - SeriousMatters, davy-r, redndahead
    + Berdir, SeriousMatters, davy-r, mbovan, redndahead
    Support
    @@ -5946,7 +5961,7 @@
    Setting up this repository in your projects
    Releases
    - 1.10.0, + 1.11.0, 1.9.0
    @@ -6099,7 +6114,7 @@
    Setting up this repository in your projects
    Authors
    - Tim Plunkett, dsnopek, japerry, manuel.adan
    + Tim Plunkett, dsnopek, japerry, manuel.adan, phenaproxima
    Support
    @@ -6443,7 +6458,7 @@
    Setting up this repository in your projects
    Releases
    - 1.3.0
    + 1.6.0
    Required by
    @@ -7317,7 +7332,7 @@
    Setting up this repository in your projects
    Authors
    - BarisW, geek.merlin aka axel.rutz, greggles, markdorison, moshe weitzman, msonnabaum, netaustin, robwilmshurst
    + BarisW, geek-merlin, greggles, markdorison, moshe weitzman, msonnabaum, netaustin, robwilmshurst
    Support
    @@ -7408,7 +7423,7 @@
    Setting up this repository in your projects
    -

    Provides a user interface for the Token API and some missing core tokens.

    +

    Provides a user interface for the Token API, some missing core tokens.

    @@ -7421,7 +7436,7 @@
    Setting up this repository in your projects
    License
    -
    GPL-2.0-or-later
    +
    GPL-2.0+
    Authors
    @@ -7437,6 +7452,7 @@
    Setting up this repository in your projects
    Releases
    + 1.6.0, 1.5.0
    @@ -7770,6 +7786,7 @@
    Setting up this repository in your projects
    @@ -7819,6 +7836,7 @@
    Setting up this repository in your projects
    Releases
    + 2.1.14, 2.1.11
    @@ -7826,6 +7844,7 @@
    Setting up this repository in your projects
    @@ -7923,6 +7942,7 @@
    Setting up this repository in your projects
    Releases
    + v3.3.0, v3.2.3
    @@ -7973,7 +7993,7 @@
    Setting up this repository in your projects
    Releases
    - 1.x-dev
    + 1.x-dev @@ -8237,7 +8257,8 @@
    Setting up this repository in your projects
    Releases
    - 6.4.1
    + 6.5.2, + 6.3.3
    Required by
    @@ -8245,6 +8266,7 @@
    Setting up this repository in your projects
    @@ -8293,6 +8315,7 @@
    Setting up this repository in your projects
    Required by
    @@ -8348,6 +8371,7 @@
    Setting up this repository in your projects
    Required by
    @@ -8355,6 +8379,63 @@
    Setting up this repository in your projects
    +
    + + +
    +

    Chosen is a JavaScript plugin that makes select boxes user-friendly. It is currently available in both jQuery and Prototype flavors.

    + +
    +
    +
    + +
    Keywords
    +
    + dropdown + form + input + multiselect + select + ui +
    + +
    Homepage
    +
    + https://harvesthq.github.io/chosen/ +
    + +
    License
    +
    MIT
    + +
    Authors
    +
    + Koen Punt, Patrick Filler, Christophe Coevoet, Ken Earley
    + + +
    Releases
    +
    + + v1.8.7
    + + +
    Required by
    +
    + +
    +
    +
    +
    +
    @@ -9000,13 +9081,15 @@
    Setting up this repository in your projects
    Releases
    - 2.7.0
    + 2.7.0, + 2.3.0
    Required by
    @@ -9104,7 +9187,7 @@
    Setting up this repository in your projects
    Releases
    - 1.25.2
    + 1.25.3
    Required by
    @@ -9153,7 +9236,7 @@
    Setting up this repository in your projects
    Releases
    - 1.9.3
    + 1.9.4
    Required by
    @@ -9301,16 +9384,14 @@
    Setting up this repository in your projects
    Releases
    - v9.99.99, - v2.0.18
    + v9.99.99
    Required by
    @@ -9346,7 +9427,7 @@
    Setting up this repository in your projects
    Releases
    - 2.5.2
    + 2.6.1
    Required by
    @@ -9399,13 +9480,14 @@
    Setting up this repository in your projects
    Releases
    - 1.4.8
    + 1.4.9
    Required by
    @@ -9437,18 +9519,20 @@
    Setting up this repository in your projects
    Authors
    - Greg Beaver, Andrei Zmievski, Stig Bakken
    + Andrei Zmievski, Stig Bakken, Greg Beaver
    Releases
    + v1.4.3, v1.4.2
    Required by
    @@ -9487,12 +9571,14 @@
    Setting up this repository in your projects
    Releases
    - v1.10.10
    + v1.10.10, + v1.10.9
    Required by
    @@ -9539,12 +9625,14 @@
    Setting up this repository in your projects
    Releases
    + v1.0.1, v1.0.0
    Required by
    @@ -9677,7 +9765,7 @@
    Setting up this repository in your projects
    License
    -
    LGPL-3.0
    +
    LGPL-3.0-only
    Authors
    @@ -9687,7 +9775,7 @@
    Setting up this repository in your projects
    Releases
    - 2.16.1
    + 2.16.2 @@ -9782,7 +9870,7 @@
    Setting up this repository in your projects
    Releases
    - 4.3.2
    + 4.3.4
    Required by
    @@ -9939,7 +10027,7 @@
    Setting up this repository in your projects
    Releases
    - 1.9.0
    + 1.10.1
    Required by
    @@ -10381,6 +10469,7 @@
    Setting up this repository in your projects
    @@ -10389,6 +10478,56 @@
    Setting up this repository in your projects
    +
    + + +
    +

    Standard interfaces for event handling.

    + +
    +
    +
    + +
    Keywords
    +
    + events + psr + psr-14 +
    + + +
    License
    +
    MIT
    + +
    Authors
    +
    + PHP-FIG
    + + +
    Releases
    +
    + + 1.0.0
    + + +
    Required by
    +
    + +
    +
    +
    +
    +
    @@ -10439,6 +10578,7 @@
    Setting up this repository in your projects
    Required by
    Required by
    @@ -10498,10 +10639,12 @@
    Setting up this repository in your projects
    @@ -10551,7 +10694,7 @@
    Setting up this repository in your projects
    Releases
    - v0.9.9
    + v0.9.12
    Required by
    @@ -10602,6 +10745,7 @@
    Setting up this repository in your projects
    Required by
    @@ -11269,7 +11413,7 @@
    Setting up this repository in your projects
    Releases
    - 3.5.2
    + 3.5.3
    Required by
    @@ -11325,6 +11469,7 @@
    Setting up this repository in your projects
    @@ -11477,6 +11622,7 @@
    Setting up this repository in your projects
    @@ -11518,7 +11664,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8
    + v5.0.2, + v4.4.2
    Required by
    @@ -11567,6 +11714,7 @@
    Setting up this repository in your projects
    Releases
    + v3.4.36, v3.4.35
    @@ -11575,6 +11723,7 @@
    Setting up this repository in your projects
    @@ -11616,8 +11765,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.2, + v4.4.2, + v3.4.36
    Required by
    @@ -11668,7 +11818,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -11684,6 +11836,7 @@
    Setting up this repository in your projects
  • consolidation/self-update
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • drush/drush
  • psy/psysh
  • stecman/symfony-console-completion
  • @@ -11728,8 +11881,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.2, + v4.4.2, + v3.4.36
    Required by
    @@ -11779,7 +11933,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v4.4.2, + v3.4.36, v3.4.35
    @@ -11787,7 +11942,9 @@
    Setting up this repository in your projects
    @@ -11830,7 +11987,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -11840,6 +11999,7 @@
    Setting up this repository in your projects
  • behat/behat
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • drupal/drupal-driver
  • drupal/drupal-extension
  • pdepend/pdepend
  • @@ -11884,8 +12044,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.2, + v4.4.2, + v3.4.36
    Required by
    @@ -11901,6 +12062,55 @@
    Setting up this repository in your projects
    +
    + + +
    +

    Symfony ErrorHandler Component

    + +
    +
    +
    + + +
    Homepage
    +
    + https://symfony.com +
    + +
    License
    +
    MIT
    + +
    Authors
    +
    + Fabien Potencier, Symfony Community
    + + +
    Releases
    +
    + + v5.0.2, + v4.4.2
    + + +
    Required by
    +
    + +
    +
    +
    +
    +
    @@ -11936,7 +12146,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -11948,6 +12160,7 @@
    Setting up this repository in your projects
  • consolidation/robo
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • drupal/drupal-extension
  • drush/drush
  • solarium/solarium
  • @@ -12002,6 +12215,7 @@
    Setting up this repository in your projects
    Releases
    + v2.0.1, v1.1.7
    @@ -12050,8 +12264,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.2, + v4.4.2, + v3.4.36
    Required by
    @@ -12105,8 +12320,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v4.4.2, + v3.4.36
    Required by
    @@ -12160,7 +12375,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -12170,6 +12387,7 @@
    Setting up this repository in your projects
  • asm89/stack-cors
  • drupal/console
  • drupal/core
  • +
  • drupal/core-recommended
  • stack/builder
  • symfony/http-kernel
  • symfony/psr-http-message-bridge
  • @@ -12214,7 +12432,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -12223,6 +12443,7 @@
    Setting up this repository in your projects
    @@ -12271,7 +12492,7 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8
    + v5.0.2
    Required by
    @@ -12319,7 +12540,8 @@
    Setting up this repository in your projects
    Releases
    - v3.4.35
    + v4.4.2, + v3.4.36
    Required by
    @@ -12374,12 +12596,14 @@
    Setting up this repository in your projects
    Releases
    + v1.13.1, v1.12.0
    Required by
    Required by
    @@ -12552,6 +12777,7 @@
    Setting up this repository in your projects
    Releases
    + v1.13.1, v1.12.0
    @@ -12559,7 +12785,7 @@
    Setting up this repository in your projects
    Required by
    @@ -12783,7 +13013,7 @@
    Setting up this repository in your projects
    Releases
    - v1.12.0
    + v1.13.1
    Required by
    @@ -12839,12 +13069,14 @@
    Setting up this repository in your projects
    Releases
    + v1.13.1, v1.12.0
    Required by
    @@ -12887,7 +13119,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v4.4.2, + v3.4.36, v3.4.35
    @@ -12899,6 +13132,7 @@
    Setting up this repository in your projects
  • consolidation/site-process
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • drupal/drupal-driver
  • drush/drush
  • @@ -12943,19 +13177,21 @@
    Setting up this repository in your projects
    Authors
    - Symfony Community, Fabien Potencier
    + Fabien Potencier, Symfony Community
    Releases
    - v1.2.0
    + v1.3.0, + v1.1.2
    Required by
    @@ -13004,6 +13240,7 @@
    Setting up this repository in your projects
    Releases
    + v3.4.36, v3.4.35
    @@ -13011,6 +13248,7 @@
    Setting up this repository in your projects
    @@ -13053,6 +13291,7 @@
    Setting up this repository in your projects
    Releases
    + v3.4.36, v3.4.35
    @@ -13060,6 +13299,7 @@
    Setting up this repository in your projects
    @@ -13110,7 +13350,7 @@
    Setting up this repository in your projects
    Releases
    - v1.1.8
    + v2.0.1
    Required by
    @@ -13159,7 +13399,8 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v4.4.2, + v3.4.36, v3.4.35
    @@ -13169,6 +13410,7 @@
    Setting up this repository in your projects
  • behat/behat
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • symfony/validator
  • @@ -13220,7 +13462,7 @@
    Setting up this repository in your projects
    Releases
    - v1.1.7
    + v2.0.1
    Required by
    @@ -13268,6 +13510,7 @@
    Setting up this repository in your projects
    Releases
    + v3.4.36, v3.4.35
    @@ -13275,6 +13518,7 @@
    Setting up this repository in your projects
    @@ -13321,8 +13565,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, - v3.4.35
    + v5.0.2, + v4.4.2, + v3.4.36
    Required by
    @@ -13331,6 +13576,7 @@
    Setting up this repository in your projects
  • drupal/devel
  • drush/drush
  • psy/psysh
  • +
  • symfony/error-handler
  • @@ -13372,7 +13618,9 @@
    Setting up this repository in your projects
    Releases
    - v4.3.8, + v5.0.2, + v4.4.2, + v3.4.36, v3.4.35
    @@ -13384,9 +13632,9 @@
    Setting up this repository in your projects
  • drupal/console-core
  • drupal/console-extend-plugin
  • drupal/core
  • +
  • drupal/core-recommended
  • drush/drush
  • grasmash/yaml-expander
  • -
  • phing/phing
  • @@ -13470,14 +13718,15 @@
    Setting up this repository in your projects
    Authors
    - Fabien Potencier, Twig Team, Armin Ronacher
    + Fabien Potencier, Twig Team, Armin Ronacher
    Releases
    - v2.12.2, - v1.42.4
    + v2.12.3, + v1.42.4, + v1.42.3
    Required by
    @@ -13486,6 +13735,7 @@
    Setting up this repository in your projects
  • chi-teck/drupal-code-generator
  • drupal/console-core
  • drupal/core
  • +
  • drupal/core-recommended
  • @@ -13531,13 +13781,14 @@
    Setting up this repository in your projects
    Releases
    - v2.1.3
    + v3.1.3
    Required by
    @@ -13627,7 +13878,7 @@
    Setting up this repository in your projects
    Releases
    - 1.5.0
    + 1.6.0
    Required by
    @@ -13782,8 +14033,8 @@
    Setting up this repository in your projects
    -
    -
    +
    +
    @@ -13791,6 +14042,11 @@
    Setting up this repository in your projects
    zendframework/zend-diactoros
    +

    + Abandoned! + Package is abandoned, you should avoid using it. + Use laminas/laminas-diactoros instead. +

    @@ -13827,14 +14083,15 @@
    Setting up this repository in your projects
    -
    -
    +
    +
    @@ -13842,6 +14099,11 @@
    Setting up this repository in your projects
    zendframework/zend-escaper
    +

    + Abandoned! + Package is abandoned, you should avoid using it. + Use laminas/laminas-escaper instead. +

    @@ -13873,6 +14135,7 @@
    Setting up this repository in your projects
    Required by
    @@ -13880,8 +14143,8 @@
    Setting up this repository in your projects
    -
    -
    +
    +
    @@ -13889,6 +14152,11 @@
    Setting up this repository in your projects
    zendframework/zend-feed
    +

    + Abandoned! + Package is abandoned, you should avoid using it. + Use laminas/laminas-feed instead. +

    @@ -13921,14 +14189,15 @@
    Setting up this repository in your projects
    -
    -
    +
    +
    @@ -13936,6 +14205,11 @@
    Setting up this repository in your projects
    zendframework/zend-stdlib
    +

    + Abandoned! + Package is abandoned, you should avoid using it. + Use laminas/laminas-stdlib instead. +

    @@ -13967,6 +14241,7 @@
    Setting up this repository in your projects
    Required by
    diff --git a/app/master/packages.json b/app/master/packages.json index c498268..7ee5404 100644 --- a/app/master/packages.json +++ b/app/master/packages.json @@ -1,8 +1,8 @@ { "packages": [], "includes": { - "include/all$ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55.json": { - "sha1": "ea1228ae2a3996fe5c9a5473ffffc0c6b6273d55" + "include/all$df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb.json": { + "sha1": "df9b144cc98fb89e1a8f22cee1fbbb1b90ab9aeb" } } } diff --git a/app/packages.json b/app/packages.json index 8a5fb05..99ce207 100644 --- a/app/packages.json +++ b/app/packages.json @@ -1,8 +1,8 @@ { "packages": [], "includes": { - "include/all$10697d3bcef9fffe5febb4a1a276049d5b2df91a.json": { - "sha1": "10697d3bcef9fffe5febb4a1a276049d5b2df91a" + "include/all$36dacd79a7903ab24c6c2d341361721187248df5.json": { + "sha1": "36dacd79a7903ab24c6c2d341361721187248df5" } } } diff --git a/app/whitelist/include/all$8a5c79065eb567d58f7fce0de7cd1b348705a38a.json b/app/whitelist/include/all$8a5c79065eb567d58f7fce0de7cd1b348705a38a.json deleted file mode 100644 index 9b36ed3..0000000 --- a/app/whitelist/include/all$8a5c79065eb567d58f7fce0de7cd1b348705a38a.json +++ /dev/null @@ -1,377 +0,0 @@ -{ - "packages": { - "drupal/dvf": { - "dev-develop": { - "name": "drupal/dvf", - "version": "dev-develop", - "version_normalized": "dev-develop", - "source": { - "type": "git", - "url": "https://github.com/govCMS/dvf.git", - "reference": "a5511d830edd8341c6863a7aca783ab7415e150f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/govCMS/dvf/zipball/a5511d830edd8341c6863a7aca783ab7415e150f", - "reference": "a5511d830edd8341c6863a7aca783ab7415e150f", - "shasum": "" - }, - "require": { - "flow/jsonpath": "^0.4.0" - }, - "time": "2019-09-19T04:53:46+00:00", - "type": "drupal-module", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Jeremy Graham", - "homepage": "https://www.drupal.org/u/jez500" - }, - { - "name": "Jorge Castro", - "homepage": "https://www.drupal.org/u/jorgegc" - }, - { - "name": "Toby Bellwood", - "homepage": "https://www.drupal.org/u/tobybellwood" - } - ], - "description": "Data Visualisation Framework makes it easy to generate visualisations from different data sources.", - "homepage": "https://github.com/govCMS/dvf", - "support": { - "issues": "https://github.com/govCMS/dvf/issues", - "source": "https://github.com/govCMS/dvf" - } - } - }, - "drupal/entity_pilot": { - "1.0.0": { - "name": "drupal/entity_pilot", - "version": "1.0.0", - "version_normalized": "1.0.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/entity_pilot.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_pilot-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "e2da67fc254e5e14975d57799be5aef2d22a3173" - }, - "require": { - "defuse/php-encryption": "~2.0", - "drupal/core": "*", - "drupal/dynamic_entity_reference": "~1.0|~2.0" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0", - "datestamp": "1569626288", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Lee Rowlands", - "homepage": "https://www.drupal.org/user/395439", - "email": "hello@entitypilot.com" - } - ], - "description": "Painless content staging for Drupal", - "homepage": "https://www.drupal.org/project/entity_pilot", - "support": { - "source": "https://git.drupalcode.org/project/entity_pilot" - } - } - }, - "drupal/migrate_cron": { - "1.2.0": { - "name": "drupal/migrate_cron", - "version": "1.2.0", - "version_normalized": "1.2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_cron.git", - "reference": "8.x-1.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_cron-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "eaf813c0a626f6d33f59c5d5068d73c2442e6019" - }, - "require": { - "drupal/core": "*", - "drupal/migrate_plus": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.2", - "datestamp": "1549636080", - "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "vadimski", - "homepage": "https://www.drupal.org/user/3395802" - } - ], - "description": "Run migrations at cron", - "homepage": "https://www.drupal.org/project/migrate_cron", - "support": { - "source": "https://git.drupalcode.org/project/migrate_cron" - } - } - }, - "drupal/migrate_file": { - "1.1.0": { - "name": "drupal/migrate_file", - "version": "1.1.0", - "version_normalized": "1.1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_file.git", - "reference": "8.x-1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_file-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "4a24edc577541b5aa67682a4f89c8dfd7c0788d5" - }, - "require": { - "drupal/core": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.1", - "datestamp": "1539064380", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drclaw", - "homepage": "https://www.drupal.org/user/823702" - } - ], - "description": "Additional support for migrating files including downloading remote files and using remote uris (without download)", - "homepage": "https://www.drupal.org/project/migrate_file", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/migrate_file", - "issues": "https://www.drupal.org/project/issues/migrate_file" - } - } - }, - "drupal/migrate_plus": { - "4.1.0": { - "name": "drupal/migrate_plus", - "version": "4.1.0", - "version_normalized": "4.1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_plus.git", - "reference": "8.x-4.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.1.zip", - "reference": "8.x-4.1", - "shasum": "cfd7ef2b17ede664b2b74eb101032a03c386457e" - }, - "require": { - "drupal/core": "^8.3" - }, - "require-dev": { - "drupal/migrate_example_advanced_setup": "*", - "drupal/migrate_example_setup": "*", - "drupal/migrate_tools": "*" - }, - "suggest": { - "ext-soap": "*", - "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-4.x": "4.x-dev" - }, - "drupal": { - "version": "8.x-4.1", - "datestamp": "1555683487", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Mike Ryan", - "homepage": "https://www.drupal.org/u/mikeryan", - "role": "Maintainer" - }, - { - "name": "mikeryan", - "homepage": "https://www.drupal.org/user/4420" - } - ], - "description": "Enhancements to core migration support.", - "homepage": "https://www.drupal.org/project/migrate_plus", - "support": { - "source": "https://cgit.drupalcode.org/migrate_plus", - "issues": "https://www.drupal.org/project/issues/migrate_plus", - "irc": "irc://irc.freenode.org/drupal-migrate" - } - } - }, - "drupal/migrate_tools": { - "4.1.0": { - "name": "drupal/migrate_tools", - "version": "4.1.0", - "version_normalized": "4.1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_tools.git", - "reference": "8.x-4.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.1.zip", - "reference": "8.x-4.1", - "shasum": "0355d5309fbb738759332779d0ecf5f19a1da0a4" - }, - "require": { - "drupal/core": "^8.3", - "drupal/migrate_plus": "^4" - }, - "require-dev": { - "drupal/migrate_plus": "4.x-dev", - "drupal/migrate_source_csv": "^2.2", - "drush/drush": "^9" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-4.x": "4.x-dev" - }, - "drupal": { - "version": "8.x-4.1", - "datestamp": "1565213885", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "heddn", - "homepage": "https://www.drupal.org/user/1463982" - }, - { - "name": "mikeryan", - "homepage": "https://www.drupal.org/user/4420" - }, - { - "name": "moshe weitzman", - "homepage": "https://www.drupal.org/user/23" - } - ], - "description": "Tools to assist in developing and running migrations.", - "homepage": "http://drupal.org/project/migrate_tools", - "support": { - "source": "http://cgit.drupalcode.org/migrate_tools", - "issues": "http://drupal.org/project/migrate_tools", - "irc": "irc://irc.freenode.org/drupal-migrate" - } - } - }, - "govcms/consultation": { - "dev-8.x-1.x": { - "name": "govcms/consultation", - "version": "dev-8.x-1.x", - "version_normalized": "dev-8.x-1.x", - "source": { - "type": "git", - "url": "https://github.com/govCMS/consultation.git", - "reference": "f787971f5a8258ee41312fe9f5ef9074920e84bf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/govCMS/consultation/zipball/f787971f5a8258ee41312fe9f5ef9074920e84bf", - "reference": "f787971f5a8258ee41312fe9f5ef9074920e84bf", - "shasum": "" - }, - "time": "2019-07-31T04:50:32+00:00", - "type": "drupal-module", - "license": [ - "GPL-2.0" - ], - "description": "Consulation or 'Have your say'", - "keywords": [ - "drupal", - "govcms" - ], - "support": { - "source": "https://github.com/govCMS/consultation/tree/8.x-1.x", - "issues": "https://github.com/govCMS/consultation/issues" - } - } - } - } -} diff --git a/app/whitelist/include/all$a10dda598333cb33245820e4cf8ff824f616971c.json b/app/whitelist/include/all$a10dda598333cb33245820e4cf8ff824f616971c.json new file mode 100644 index 0000000..ca592d3 --- /dev/null +++ b/app/whitelist/include/all$a10dda598333cb33245820e4cf8ff824f616971c.json @@ -0,0 +1,1272 @@ +{ + "packages": { + "drupal/ckan_connect": { + "1.0.0-alpha1": { + "name": "drupal/ckan_connect", + "version": "1.0.0-alpha1", + "version_normalized": "1.0.0.0-alpha1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ckan_connect.git", + "reference": "8.x-1.0-alpha1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ckan_connect-8.x-1.0-alpha1.zip", + "reference": "8.x-1.0-alpha1", + "shasum": "4de1ad948aeec84fe1a61c54e85aad57087a324d" + }, + "require": { + "drupal/core": "~8.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-alpha1", + "datestamp": "1535958480", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Joseph Zhao", + "homepage": "https://www.drupal.org/user/1987218" + }, + { + "name": "jorgegc", + "homepage": "https://www.drupal.org/user/834154" + }, + { + "name": "ruwanl", + "homepage": "https://www.drupal.org/user/2906813" + }, + { + "name": "tobybellwood", + "homepage": "https://www.drupal.org/user/3529537" + } + ], + "description": "Connect to a CKAN endpoint providing a wrapper around the CKAN Action API.", + "homepage": "https://www.drupal.org/project/ckan_connect", + "support": { + "source": "https://git.drupalcode.org/project/ckan_connect" + } + } + }, + "drupal/dvf": { + "dev-develop": { + "name": "drupal/dvf", + "version": "dev-develop", + "version_normalized": "dev-develop", + "source": { + "type": "git", + "url": "https://github.com/govCMS/dvf.git", + "reference": "a5511d830edd8341c6863a7aca783ab7415e150f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/govCMS/dvf/zipball/a5511d830edd8341c6863a7aca783ab7415e150f", + "reference": "a5511d830edd8341c6863a7aca783ab7415e150f", + "shasum": "" + }, + "require": { + "flow/jsonpath": "^0.4.0" + }, + "time": "2019-09-19T04:53:46+00:00", + "type": "drupal-module", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Jeremy Graham", + "homepage": "https://www.drupal.org/u/jez500" + }, + { + "name": "Jorge Castro", + "homepage": "https://www.drupal.org/u/jorgegc" + }, + { + "name": "Toby Bellwood", + "homepage": "https://www.drupal.org/u/tobybellwood" + } + ], + "description": "Data Visualisation Framework makes it easy to generate visualisations from different data sources.", + "homepage": "https://github.com/govCMS/dvf", + "support": { + "issues": "https://github.com/govCMS/dvf/issues", + "source": "https://github.com/govCMS/dvf" + } + } + }, + "drupal/migrate_cron": { + "1.0.0": { + "name": "drupal/migrate_cron", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_cron.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_cron-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "7d60b77a07683ae52d33413d997cc67a4e68e211" + }, + "require": { + "drupal/core": "~8.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0", + "datestamp": "1541062380", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "vadimski", + "homepage": "https://www.drupal.org/user/3395802" + } + ], + "homepage": "https://www.drupal.org/project/migrate_cron", + "support": { + "source": "https://git.drupalcode.org/project/migrate_cron" + } + }, + "1.1.0": { + "name": "drupal/migrate_cron", + "version": "1.1.0", + "version_normalized": "1.1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_cron.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_cron-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "61cff57cd4b6c98acf03156bdc26bb47a9f4c07d" + }, + "require": { + "drupal/core": "*", + "drupal/migrate_plus": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.1", + "datestamp": "1549636080", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "vadimski", + "homepage": "https://www.drupal.org/user/3395802" + } + ], + "description": "Run migrations at cron", + "homepage": "https://www.drupal.org/project/migrate_cron", + "support": { + "source": "https://git.drupalcode.org/project/migrate_cron" + } + }, + "1.2.0": { + "name": "drupal/migrate_cron", + "version": "1.2.0", + "version_normalized": "1.2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_cron.git", + "reference": "8.x-1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_cron-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "eaf813c0a626f6d33f59c5d5068d73c2442e6019" + }, + "require": { + "drupal/core": "*", + "drupal/migrate_plus": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.2", + "datestamp": "1549636080", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "vadimski", + "homepage": "https://www.drupal.org/user/3395802" + } + ], + "description": "Run migrations at cron", + "homepage": "https://www.drupal.org/project/migrate_cron", + "support": { + "source": "https://git.drupalcode.org/project/migrate_cron" + } + } + }, + "drupal/migrate_file": { + "1.0.0-alpha1": { + "name": "drupal/migrate_file", + "version": "1.0.0-alpha1", + "version_normalized": "1.0.0.0-alpha1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_file.git", + "reference": "8.x-1.0-alpha1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_file-8.x-1.0-alpha1.zip", + "reference": "8.x-1.0-alpha1", + "shasum": "3d4be89f8078c2ef54d4df02b60fedb551600fe4" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-alpha1", + "datestamp": "1513892585", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "drclaw", + "homepage": "https://www.drupal.org/user/823702" + } + ], + "description": "Additional support for migrating files including downloading remote files and using remote uris (without download)", + "homepage": "https://www.drupal.org/project/migrate_file", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/migrate_file", + "issues": "https://www.drupal.org/project/issues/migrate_file" + } + }, + "1.0.0-alpha2": { + "name": "drupal/migrate_file", + "version": "1.0.0-alpha2", + "version_normalized": "1.0.0.0-alpha2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_file.git", + "reference": "8.x-1.0-alpha2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_file-8.x-1.0-alpha2.zip", + "reference": "8.x-1.0-alpha2", + "shasum": "0119cde7a61ea1946a627a882b51e67dcf1eb89f" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-alpha2", + "datestamp": "1515523385", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "drclaw", + "homepage": "https://www.drupal.org/user/823702" + } + ], + "description": "Additional support for migrating files including downloading remote files and using remote uris (without download)", + "homepage": "https://www.drupal.org/project/migrate_file", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/migrate_file", + "issues": "https://www.drupal.org/project/issues/migrate_file" + } + }, + "1.0.0-alpha3": { + "name": "drupal/migrate_file", + "version": "1.0.0-alpha3", + "version_normalized": "1.0.0.0-alpha3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_file.git", + "reference": "8.x-1.0-alpha3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_file-8.x-1.0-alpha3.zip", + "reference": "8.x-1.0-alpha3", + "shasum": "616c942cbc9e848f686b3ee3a00b8ec9c690c6e4" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-alpha3", + "datestamp": "1525029480", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "drclaw", + "homepage": "https://www.drupal.org/user/823702" + } + ], + "description": "Additional support for migrating files including downloading remote files and using remote uris (without download)", + "homepage": "https://www.drupal.org/project/migrate_file", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/migrate_file", + "issues": "https://www.drupal.org/project/issues/migrate_file" + } + }, + "1.0.0-alpha4": { + "name": "drupal/migrate_file", + "version": "1.0.0-alpha4", + "version_normalized": "1.0.0.0-alpha4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_file.git", + "reference": "8.x-1.0-alpha4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_file-8.x-1.0-alpha4.zip", + "reference": "8.x-1.0-alpha4", + "shasum": "5fb451006bdcf75781bc7ada0c1de0785dae2b67" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-alpha4", + "datestamp": "1539064380", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "drclaw", + "homepage": "https://www.drupal.org/user/823702" + } + ], + "description": "Additional support for migrating files including downloading remote files and using remote uris (without download)", + "homepage": "https://www.drupal.org/project/migrate_file", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/migrate_file", + "issues": "https://www.drupal.org/project/issues/migrate_file" + } + }, + "1.1.0": { + "name": "drupal/migrate_file", + "version": "1.1.0", + "version_normalized": "1.1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_file.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_file-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "4a24edc577541b5aa67682a4f89c8dfd7c0788d5" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.1", + "datestamp": "1539064380", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "drclaw", + "homepage": "https://www.drupal.org/user/823702" + } + ], + "description": "Additional support for migrating files including downloading remote files and using remote uris (without download)", + "homepage": "https://www.drupal.org/project/migrate_file", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/migrate_file", + "issues": "https://www.drupal.org/project/issues/migrate_file" + } + }, + "dev-1.x": { + "name": "drupal/migrate_file", + "version": "dev-1.x", + "version_normalized": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_file.git", + "reference": "2d3b4e25ab619ac12cdab346479f49b71c3f4eab" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.1+0-dev", + "datestamp": "1539064080", + "security-coverage": { + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "drclaw", + "homepage": "https://www.drupal.org/user/823702" + } + ], + "description": "Additional support for migrating files including downloading remote files and using remote uris (without download)", + "homepage": "https://www.drupal.org/project/migrate_file", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/migrate_file", + "issues": "https://www.drupal.org/project/issues/migrate_file" + } + } + }, + "drupal/migrate_plus": { + "4.0.0": { + "name": "drupal/migrate_plus", + "version": "4.0.0", + "version_normalized": "4.0.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_plus.git", + "reference": "8.x-4.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0.zip", + "reference": "8.x-4.0", + "shasum": "63dad289defe8298aa5ca5e30062fe9761d19eca" + }, + "require": { + "drupal/core": "^8.3" + }, + "require-dev": { + "drupal/migrate_example_advanced_setup": "*", + "drupal/migrate_example_setup": "*" + }, + "suggest": { + "ext-soap": "*", + "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, + "drupal": { + "version": "8.x-4.0", + "datestamp": "1546879080", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Mike Ryan", + "homepage": "https://www.drupal.org/u/mikeryan", + "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Enhancements to core migration support.", + "homepage": "https://www.drupal.org/project/migrate_plus", + "support": { + "source": "https://cgit.drupalcode.org/migrate_plus", + "issues": "https://www.drupal.org/project/issues/migrate_plus", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + }, + "4.0.0-rc1": { + "name": "drupal/migrate_plus", + "version": "4.0.0-rc1", + "version_normalized": "4.0.0.0-RC1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_plus.git", + "reference": "8.x-4.0-rc1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0-rc1.zip", + "reference": "8.x-4.0-rc1", + "shasum": "23cd08ec4bf976cd9f6bc018ada1a332a0a89cdd" + }, + "require": { + "drupal/core": "^8.3" + }, + "require-dev": { + "drupal/migrate_example_advanced_setup": "*", + "drupal/migrate_example_setup": "*" + }, + "suggest": { + "ext-soap": "*", + "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, + "drupal": { + "version": "8.x-4.0-rc1", + "datestamp": "1536264180", + "security-coverage": { + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Mike Ryan", + "homepage": "https://www.drupal.org/u/mikeryan", + "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Enhancements to core migration support.", + "homepage": "https://www.drupal.org/project/migrate_plus", + "support": { + "source": "https://cgit.drupalcode.org/migrate_plus", + "issues": "https://www.drupal.org/project/issues/migrate_plus", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + }, + "4.0.0-beta1": { + "name": "drupal/migrate_plus", + "version": "4.0.0-beta1", + "version_normalized": "4.0.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_plus.git", + "reference": "8.x-4.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0-beta1.zip", + "reference": "8.x-4.0-beta1", + "shasum": "e64bac006e3ef9ae697b0f2c4b3744af0524e208" + }, + "require": { + "drupal/core": "^8.3" + }, + "require-dev": { + "drupal/migrate_example_advanced_setup": "*", + "drupal/migrate_example_setup": "*" + }, + "suggest": { + "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, + "drupal": { + "version": "8.x-4.0-beta1", + "datestamp": "1513088288", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Mike Ryan", + "homepage": "https://www.drupal.org/u/mikeryan", + "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Enhancements to core migration support.", + "homepage": "https://www.drupal.org/project/migrate_plus", + "support": { + "source": "https://cgit.drupalcode.org/migrate_plus", + "issues": "https://www.drupal.org/project/issues/migrate_plus", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + }, + "4.0.0-beta2": { + "name": "drupal/migrate_plus", + "version": "4.0.0-beta2", + "version_normalized": "4.0.0.0-beta2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_plus.git", + "reference": "8.x-4.0-beta2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0-beta2.zip", + "reference": "8.x-4.0-beta2", + "shasum": "af0f129b516fb62a58458f6e4c717310cda17986" + }, + "require": { + "drupal/core": "^8.3" + }, + "require-dev": { + "drupal/migrate_example_advanced_setup": "*", + "drupal/migrate_example_setup": "*" + }, + "suggest": { + "ext-soap": "*", + "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, + "drupal": { + "version": "8.x-4.0-beta2", + "datestamp": "1519400592", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Mike Ryan", + "homepage": "https://www.drupal.org/u/mikeryan", + "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Enhancements to core migration support.", + "homepage": "https://www.drupal.org/project/migrate_plus", + "support": { + "source": "https://cgit.drupalcode.org/migrate_plus", + "issues": "https://www.drupal.org/project/issues/migrate_plus", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + }, + "4.0.0-beta3": { + "name": "drupal/migrate_plus", + "version": "4.0.0-beta3", + "version_normalized": "4.0.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_plus.git", + "reference": "8.x-4.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0-beta3.zip", + "reference": "8.x-4.0-beta3", + "shasum": "a0da6dc169a0315bf29a8dd0ee2146d18215a56b" + }, + "require": { + "drupal/core": "^8.3" + }, + "require-dev": { + "drupal/migrate_example_advanced_setup": "*", + "drupal/migrate_example_setup": "*" + }, + "suggest": { + "ext-soap": "*", + "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, + "drupal": { + "version": "8.x-4.0-beta3", + "datestamp": "1535381280", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Mike Ryan", + "homepage": "https://www.drupal.org/u/mikeryan", + "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Enhancements to core migration support.", + "homepage": "https://www.drupal.org/project/migrate_plus", + "support": { + "source": "https://cgit.drupalcode.org/migrate_plus", + "issues": "https://www.drupal.org/project/issues/migrate_plus", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + }, + "4.1.0": { + "name": "drupal/migrate_plus", + "version": "4.1.0", + "version_normalized": "4.1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_plus.git", + "reference": "8.x-4.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.1.zip", + "reference": "8.x-4.1", + "shasum": "cfd7ef2b17ede664b2b74eb101032a03c386457e" + }, + "require": { + "drupal/core": "^8.3" + }, + "require-dev": { + "drupal/migrate_example_advanced_setup": "*", + "drupal/migrate_example_setup": "*", + "drupal/migrate_tools": "*" + }, + "suggest": { + "ext-soap": "*", + "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, + "drupal": { + "version": "8.x-4.1", + "datestamp": "1555683487", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Mike Ryan", + "homepage": "https://www.drupal.org/u/mikeryan", + "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Enhancements to core migration support.", + "homepage": "https://www.drupal.org/project/migrate_plus", + "support": { + "source": "https://cgit.drupalcode.org/migrate_plus", + "issues": "https://www.drupal.org/project/issues/migrate_plus", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + }, + "4.2.0": { + "name": "drupal/migrate_plus", + "version": "4.2.0", + "version_normalized": "4.2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_plus.git", + "reference": "8.x-4.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip", + "reference": "8.x-4.2", + "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3" + }, + "require": { + "drupal/core": "^8.3" + }, + "require-dev": { + "drupal/entity": "*", + "drupal/migrate_example_advanced_setup": "*", + "drupal/migrate_example_setup": "*", + "drupal/migrate_tools": "*", + "drupal/profile": "*" + }, + "suggest": { + "ext-soap": "*", + "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, + "drupal": { + "version": "8.x-4.2", + "datestamp": "1555683487", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Mike Ryan", + "homepage": "https://www.drupal.org/u/mikeryan", + "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Enhancements to core migration support.", + "homepage": "https://www.drupal.org/project/migrate_plus", + "support": { + "source": "https://cgit.drupalcode.org/migrate_plus", + "issues": "https://www.drupal.org/project/issues/migrate_plus", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + }, + "dev-4.x": { + "name": "drupal/migrate_plus", + "version": "dev-4.x", + "version_normalized": "dev-4.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_plus.git", + "reference": "8182985a29e4d839a63b57ec29fb1902d8fad4d7" + }, + "require": { + "drupal/core": "^8.3" + }, + "require-dev": { + "drupal/entity": "*", + "drupal/migrate_example_advanced_setup": "*", + "drupal/migrate_example_setup": "*", + "drupal/migrate_tools": "*", + "drupal/profile": "*" + }, + "suggest": { + "ext-soap": "*", + "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, + "drupal": { + "version": "8.x-4.2+10-dev", + "datestamp": "1578062586", + "security-coverage": { + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Mike Ryan", + "homepage": "https://www.drupal.org/u/mikeryan", + "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Enhancements to core migration support.", + "homepage": "https://www.drupal.org/project/migrate_plus", + "support": { + "source": "https://cgit.drupalcode.org/migrate_plus", + "issues": "https://www.drupal.org/project/issues/migrate_plus", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + } + }, + "drupal/migrate_tools": { + "1.0.0": { + "name": "drupal/migrate_tools", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_tools.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "0e042b02a6dfa551312183f81918350df02d4a24" + }, + "require": { + "drupal/core": "<8.1", + "drupal/migrate_plus": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0", + "datestamp": "1458167758", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "heddn", + "homepage": "https://www.drupal.org/user/1463982" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + }, + { + "name": "moshe weitzman", + "homepage": "https://www.drupal.org/user/23" + } + ], + "description": "Tools to assist in developing and running migrations.", + "homepage": "https://www.drupal.org/project/migrate_tools", + "support": { + "source": "https://git.drupalcode.org/project/migrate_tools" + } + }, + "1.0.0-beta1": { + "name": "drupal/migrate_tools", + "version": "1.0.0-beta1", + "version_normalized": "1.0.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_tools.git", + "reference": "8.x-1.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "db3b150dde6e09db8f3de89a8d569f4c556c03ef" + }, + "require": { + "drupal/core": "~8.0", + "drupal/migrate_plus": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta1", + "datestamp": "1458167758", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "heddn", + "homepage": "https://www.drupal.org/user/1463982" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + }, + { + "name": "moshe weitzman", + "homepage": "https://www.drupal.org/user/23" + } + ], + "description": "Tools to assist in developing and running migrations.", + "homepage": "https://www.drupal.org/project/migrate_tools", + "support": { + "source": "https://git.drupalcode.org/project/migrate_tools" + } + }, + "dev-1.x": { + "name": "drupal/migrate_tools", + "version": "dev-1.x", + "version_normalized": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_tools.git", + "reference": "31b72a98fa0d4d869a069a7cdda77d6a831142e6" + }, + "require": { + "drupal/core": "<8.1", + "drupal/migrate_plus": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta1+14-dev", + "datestamp": "1458160439", + "security-coverage": { + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "heddn", + "homepage": "https://www.drupal.org/user/1463982" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + }, + { + "name": "moshe weitzman", + "homepage": "https://www.drupal.org/user/23" + } + ], + "description": "Tools to assist in developing and running migrations.", + "homepage": "https://www.drupal.org/project/migrate_tools", + "support": { + "source": "https://git.drupalcode.org/project/migrate_tools" + } + } + }, + "govcms/consultation": { + "dev-8.x-1.x": { + "name": "govcms/consultation", + "version": "dev-8.x-1.x", + "version_normalized": "dev-8.x-1.x", + "source": { + "type": "git", + "url": "https://github.com/govCMS/consultation.git", + "reference": "f787971f5a8258ee41312fe9f5ef9074920e84bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/govCMS/consultation/zipball/f787971f5a8258ee41312fe9f5ef9074920e84bf", + "reference": "f787971f5a8258ee41312fe9f5ef9074920e84bf", + "shasum": "" + }, + "time": "2019-07-31T04:50:32+00:00", + "type": "drupal-module", + "license": [ + "GPL-2.0" + ], + "description": "Consulation or 'Have your say'", + "keywords": [ + "drupal", + "govcms" + ], + "support": { + "source": "https://github.com/govCMS/consultation/tree/8.x-1.x", + "issues": "https://github.com/govCMS/consultation/issues" + } + } + } + } +} diff --git a/app/whitelist/index.html b/app/whitelist/index.html index 9f1ee4c..04347b1 100644 --- a/app/whitelist/index.html +++ b/app/whitelist/index.html @@ -21,8 +21,8 @@

    govcms/satis-whitelist

    - -
    Last updated:
    + +
    Last updated:
    @@ -69,18 +69,18 @@
    Setting up this repository in your projects
    -
    - +
    -

    Data Visualisation Framework makes it easy to generate visualisations from different data sources.

    +

    Connect to a CKAN endpoint providing a wrapper around the CKAN Action API.

    @@ -89,28 +89,27 @@
    Setting up this repository in your projects
    Homepage
    - https://github.com/govCMS/dvf + https://www.drupal.org/project/ckan_connect
    License
    -
    GPL-2.0+
    +
    GPL-2.0-or-later
    Authors
    - Jeremy Graham, Jorge Castro, Toby Bellwood
    + Joseph Zhao, jorgegc, ruwanl, tobybellwood
    Support
    Releases
    - dev-develop
    + 1.0.0-alpha1
    @@ -118,18 +117,18 @@
    Setting up this repository in your projects
    -
    - +
    -

    Painless content staging for Drupal

    +

    Data Visualisation Framework makes it easy to generate visualisations from different data sources.

    @@ -138,27 +137,28 @@
    Setting up this repository in your projects
    Homepage
    - https://www.drupal.org/project/entity_pilot + https://github.com/govCMS/dvf
    License
    -
    GPL-2.0-or-later
    +
    GPL-2.0+
    Authors
    - Lee Rowlands
    + Jeremy Graham, Jorge Castro, Toby Bellwood
    Support
    Releases
    - 1.0.0
    + dev-develop
    @@ -206,7 +206,9 @@
    Setting up this repository in your projects
    Releases
    - 1.2.0
    + 1.2.0, + 1.1.0, + 1.0.0 @@ -259,7 +261,12 @@
    Setting up this repository in your projects
    Releases
    - 1.1.0
    + 1.1.0, + 1.0.0-alpha4, + 1.0.0-alpha3, + 1.0.0-alpha2, + 1.0.0-alpha1, + dev-1.x @@ -309,7 +316,14 @@
    Setting up this repository in your projects
    Releases
    - 4.1.0
    + 4.2.0, + 4.1.0, + 4.0.0, + 4.0.0-rc1, + 4.0.0-beta3, + 4.0.0-beta2, + 4.0.0-beta1, + dev-4.x
    Required by
    @@ -344,7 +358,7 @@
    Setting up this repository in your projects
    Homepage
    - http://drupal.org/project/migrate_tools + https://www.drupal.org/project/migrate_tools
    License
    @@ -357,16 +371,16 @@
    Setting up this repository in your projects
    Support
    Releases
    - 4.1.0
    + 1.0.0, + 1.0.0-beta1, + dev-1.x diff --git a/app/whitelist/packages.json b/app/whitelist/packages.json index 3d8c2ea..65c1808 100644 --- a/app/whitelist/packages.json +++ b/app/whitelist/packages.json @@ -1,8 +1,8 @@ { "packages": [], "includes": { - "include/all$8a5c79065eb567d58f7fce0de7cd1b348705a38a.json": { - "sha1": "8a5c79065eb567d58f7fce0de7cd1b348705a38a" + "include/all$a10dda598333cb33245820e4cf8ff824f616971c.json": { + "sha1": "a10dda598333cb33245820e4cf8ff824f616971c" } } } diff --git a/satis-config/govcms-develop.json b/satis-config/govcms-develop.json index 82becb4..67aacab 100644 --- a/satis-config/govcms-develop.json +++ b/satis-config/govcms-develop.json @@ -12,11 +12,9 @@ "govcms/govcms": "1.x-dev", "govcms/scaffold-tooling": "dev-develop", "govcms/require-dev": "dev-develop" + "fabpot/goutte": "3.2.3" }, "require-dependencies": true, "require-dev-dependencies": true, "only-best-candidates": true, - "blacklist": { - "drupal/entity_reference_revisions": ">1.6" - } } diff --git a/satis-config/govcms-master.json b/satis-config/govcms-master.json index 1e4dca9..0d67089 100644 --- a/satis-config/govcms-master.json +++ b/satis-config/govcms-master.json @@ -11,12 +11,10 @@ "require": { "govcms/govcms": "1.x-dev", "govcms/scaffold-tooling": "dev-master", - "govcms/require-dev": "dev-master" + "govcms/require-dev": "dev-master", + "fabpot/goutte": "3.2.3" }, "require-dependencies": true, "require-dev-dependencies": true, - "only-best-candidates": true, - "blacklist": { - "drupal/entity_reference_revisions": ">1.6" - } + "only-best-candidates": true } diff --git a/satis-config/govcms-stable.json b/satis-config/govcms-stable.json index 4ecdc7a..8ac97a3 100644 --- a/satis-config/govcms-stable.json +++ b/satis-config/govcms-stable.json @@ -9,15 +9,12 @@ { "type": "vcs", "url": "https://github.com/govcms/require-dev" } ], "require": { - "govcms/govcms": "1.0-beta11", + "govcms/govcms": "1.0.0", "govcms/scaffold-tooling": "1.0.0", - "govcms/require-dev": "1.0.1" + "govcms/require-dev": "1.0.1", + "fabpot/goutte": "3.2.3" }, "require-dependencies": true, "require-dev-dependencies": true, - "only-best-candidates": true, - "blacklist": { - "drupal/entity_reference_revisions": ">1.6", - "drupal/core": ">8.7.9" - } + "only-best-candidates": true } diff --git a/satis-config/govcms-whitelist.json b/satis-config/govcms-whitelist.json index 68276c1..1866dab 100644 --- a/satis-config/govcms-whitelist.json +++ b/satis-config/govcms-whitelist.json @@ -6,17 +6,17 @@ { "type": "composer", "url": "https://packages.drupal.org/8" }, { "type": "composer", "url": "https://asset-packagist.org" }, { "type": "vcs", "url": "https://github.com/govcms/consultation" }, - { "type": "vcs", "url": "https://github.com/govcms/dvf" }, - { "type": "vcs", "url": "https://github.com/govcms/scaffold-tooling" } + { "type": "vcs", "url": "https://github.com/govcms/dvf" } ], "require": { + "drupal/ckan_connect": "1.0.0-alpha1", "govcms/consultation": "dev-8.x-1.x", "drupal/dvf": "dev-develop", - "drupal/migrate_cron": "1.2.0", - "drupal/migrate_plus": "4.1.0", - "drupal/migrate_tools": "4.1.0", - "drupal/migrate_file": "1.1.0", - "drupal/entity_pilot": "1.0.0" + "flow/jsonpath": "^1", + "drupal/migrate_cron": "^1", + "drupal/migrate_plus": "^4", + "drupal/migrate_tools": "^1", + "drupal/migrate_file": "^1" }, "require-dependencies": false, "require-dev-dependencies": false,