aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2020-05-25 18:10:41 +0200
committerGitHub <noreply@github.com>2020-05-25 18:10:41 +0200
commitd647e5059781f2ec216249c3cf289f72c50c5231 (patch)
treeeaa2d7c76e3c24b3979afc866565c031a2861036
parent372810b687e767a7f1114fded82955397bb88040 (diff)
parent0cf743f6fbfbc449c599ee0271e4e62ece0e47ac (diff)
downloadwallabag-d647e5059781f2ec216249c3cf289f72c50c5231.tar.gz
wallabag-d647e5059781f2ec216249c3cf289f72c50c5231.tar.zst
wallabag-d647e5059781f2ec216249c3cf289f72c50c5231.zip
Merge pull request #4416 from wallabag/update-deps
Update deps
-rw-r--r--.travis.yml27
-rw-r--r--app/AppKernel.php2
-rw-r--r--composer.json105
-rw-r--r--composer.lock1591
4 files changed, 1069 insertions, 656 deletions
diff --git a/.travis.yml b/.travis.yml
index 8adef62e..06963df9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,5 @@
1os: linux
2dist: xenial
1language: php 3language: php
2 4
3services: 5services:
@@ -10,8 +12,7 @@ services:
10cache: 12cache:
11 apt: true 13 apt: true
12 directories: 14 directories:
13 - vendor 15 - $HOME/.composer/cache/files
14 - $HOME/.composer/cache
15 - node_modules 16 - node_modules
16 - $HOME/.npm 17 - $HOME/.npm
17 - $HOME/.yarn-cache 18 - $HOME/.yarn-cache
@@ -34,7 +35,7 @@ env:
34 - DB=pgsql 35 - DB=pgsql
35 - DB=sqlite 36 - DB=sqlite
36 37
37matrix: 38jobs:
38 fast_finish: true 39 fast_finish: true
39 include: 40 include:
40 - php: 7.3 41 - php: 7.3
@@ -47,13 +48,6 @@ branches:
47 48
48before_install: 49before_install:
49 - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi; 50 - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi;
50
51install:
52 - if [[ $ASSETS = build ]]; then source ~/.nvm/nvm.sh && nvm install 6.10; fi;
53 - if [[ $ASSETS = build ]]; then npm install -g yarn@latest; fi;
54 - if [[ $ASSETS = build ]]; then yarn install; fi;
55
56before_script:
57 - PHP=$TRAVIS_PHP_VERSION 51 - PHP=$TRAVIS_PHP_VERSION
58 - echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini 52 - echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
59 - phpenv config-rm xdebug.ini || echo "xdebug not available" 53 - phpenv config-rm xdebug.ini || echo "xdebug not available"
@@ -63,15 +57,18 @@ before_script:
63 - pecl channel-update pecl.php.net 57 - pecl channel-update pecl.php.net
64 - yes | pecl install imagick 58 - yes | pecl install imagick
65 59
66script: 60install:
67 - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist 61 - if [[ $ASSETS = build ]]; then source ~/.nvm/nvm.sh && nvm install 6.10; fi;
62 - if [[ $ASSETS = build ]]; then npm install -g yarn@latest; fi;
63 - if [[ $ASSETS = build ]]; then yarn install; fi;
64 - composer install -o --no-interaction --no-progress --prefer-dist --no-suggest
65 - php bin/simple-phpunit install
68 66
69 - echo "travis_fold:start:prepare" 67before_script:
70 - make prepare DB=$DB 68 - make prepare DB=$DB
71 - echo "travis_fold:end:prepare"
72
73 - make fixtures 69 - make fixtures
74 70
71script:
75 - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then ./bin/simple-phpunit -v ; fi; 72 - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then ./bin/simple-phpunit -v ; fi;
76 # PHPStan needs PHPUnit to be installed and cache app to be generated 73 # PHPStan needs PHPUnit to be installed and cache app to be generated
77 - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then php bin/phpstan analyse src tests --no-progress --level 1 ; fi; 74 - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then php bin/phpstan analyse src tests --no-progress --level 1 ; fi;
diff --git a/app/AppKernel.php b/app/AppKernel.php
index fcf929c6..7b84e130 100644
--- a/app/AppKernel.php
+++ b/app/AppKernel.php
@@ -56,7 +56,7 @@ class AppKernel extends Kernel
56 } 56 }
57 57
58 if ('dev' === $this->getEnvironment()) { 58 if ('dev' === $this->getEnvironment()) {
59 $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(); 59 $bundles[] = new Symfony\Bundle\MakerBundle\MakerBundle();
60 $bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle(); 60 $bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle();
61 } 61 }
62 } 62 }
diff --git a/composer.json b/composer.json
index 03b030a7..6133f5e8 100644
--- a/composer.json
+++ b/composer.json
@@ -32,81 +32,83 @@
32 }, 32 },
33 "require": { 33 "require": {
34 "php": ">=7.1.3", 34 "php": ">=7.1.3",
35 "ext-pcre": "*", 35 "ext-ctype": "*",
36 "ext-dom": "*",
37 "ext-curl": "*", 36 "ext-curl": "*",
37 "ext-dom": "*",
38 "ext-gd": "*", 38 "ext-gd": "*",
39 "ext-session": "*",
40 "ext-ctype": "*",
41 "ext-hash": "*", 39 "ext-hash": "*",
42 "ext-simplexml": "*", 40 "ext-iconv": "*",
43 "ext-json": "*", 41 "ext-json": "*",
44 "ext-mbstring": "*", 42 "ext-mbstring": "*",
45 "ext-xml": "*", 43 "ext-pcre": "*",
46 "ext-iconv": "*",
47 "ext-tokenizer": "*",
48 "ext-pdo": "*", 44 "ext-pdo": "*",
45 "ext-session": "*",
46 "ext-simplexml": "*",
49 "ext-tidy": "*", 47 "ext-tidy": "*",
50 "symfony/symfony": "3.4.*", 48 "ext-tokenizer": "*",
51 "doctrine/orm": "^2.6", 49 "ext-xml": "*",
50 "bdunogier/guzzle-site-authenticator": "^1.0.0",
51 "craue/config-bundle": "^2.3.0",
52 "defuse/php-encryption": "^2.1",
53 "doctrine/dbal": "2.9.2",
52 "doctrine/doctrine-bundle": "^1.9", 54 "doctrine/doctrine-bundle": "^1.9",
53 "doctrine/doctrine-cache-bundle": "^1.3", 55 "doctrine/doctrine-cache-bundle": "^1.3",
54 "doctrine/dbal": "2.9.2", 56 "doctrine/doctrine-migrations-bundle": "^1.3",
55 "twig/extensions": "^1.5", 57 "doctrine/orm": "^2.6",
56 "symfony/swiftmailer-bundle": "^3.2", 58 "friendsofsymfony/jsrouting-bundle": "^2.2",
57 "symfony/monolog-bundle": "^3.1", 59 "friendsofsymfony/oauth-server-bundle": "^1.5",
58 "sensio/distribution-bundle": "^5.0",
59 "sensio/framework-extra-bundle": "^5.2",
60 "incenteev/composer-parameter-handler": "^2.1",
61 "nelmio/cors-bundle": "~1.5",
62 "friendsofsymfony/rest-bundle": "~2.1", 60 "friendsofsymfony/rest-bundle": "~2.1",
63 "jms/serializer-bundle": "~2.2",
64 "nelmio/api-doc-bundle": "^2.13.2",
65 "mgargano/simplehtmldom": "~1.5",
66 "tecnickcom/tcpdf": "^6.3.0",
67 "willdurand/hateoas-bundle": "~1.3",
68 "liip/theme-bundle": "^1.4.6",
69 "lexik/form-filter-bundle": "^5.0.4",
70 "j0k3r/graby": "^2.0",
71 "php-http/guzzle5-adapter": "^2.0",
72 "friendsofsymfony/user-bundle": "2.0.*", 61 "friendsofsymfony/user-bundle": "2.0.*",
73 "friendsofsymfony/oauth-server-bundle": "^1.5",
74 "stof/doctrine-extensions-bundle": "^1.2",
75 "scheb/two-factor-bundle": "^4.4",
76 "wallabag/phpepub": "^4.0.7.2",
77 "wallabag/php-mobi": "~1.0",
78 "kphoen/rulerz-bundle": "~0.13",
79 "guzzlehttp/guzzle": "^5.3.1", 62 "guzzlehttp/guzzle": "^5.3.1",
80 "doctrine/doctrine-migrations-bundle": "^1.3", 63 "html2text/html2text": "^4.1",
81 "craue/config-bundle": "^2.3.0", 64 "incenteev/composer-parameter-handler": "^2.1",
65 "j0k3r/graby": "^2.0",
66 "javibravo/simpleue": "^2.0",
67 "jms/serializer-bundle": "~2.2",
68 "kphoen/rulerz-bundle": "~0.13",
69 "laminas/laminas-code": "^3.4",
70 "laminas/laminas-diactoros": "^2.3",
71 "lexik/form-filter-bundle": "^5.0.4",
72 "liip/theme-bundle": "^1.4.6",
73 "mgargano/simplehtmldom": "~1.5",
82 "mnapoli/piwik-twig-extension": "^3.0", 74 "mnapoli/piwik-twig-extension": "^3.0",
75 "nelmio/api-doc-bundle": "^2.13.2",
76 "nelmio/cors-bundle": "~1.5",
83 "ocramius/proxy-manager": "^2.1.1", 77 "ocramius/proxy-manager": "^2.1.1",
84 "white-october/pagerfanta-bundle": "^1.1",
85 "php-amqplib/rabbitmq-bundle": "^1.14", 78 "php-amqplib/rabbitmq-bundle": "^1.14",
79 "php-http/guzzle5-adapter": "^2.0",
80 "php-http/httplug-bundle": "^1.14",
81 "pragmarx/recovery": "^0.1.0",
86 "predis/predis": "v1.1.x-dev", 82 "predis/predis": "v1.1.x-dev",
87 "javibravo/simpleue": "^2.0", 83 "scheb/two-factor-bundle": "4.5.0",
84 "sensio/distribution-bundle": "^5.0",
85 "sensio/framework-extra-bundle": "^5.2",
86 "sentry/sentry-symfony": "^3.0",
87 "stof/doctrine-extensions-bundle": "^1.2",
88 "symfony/dom-crawler": "^3.4", 88 "symfony/dom-crawler": "^3.4",
89 "friendsofsymfony/jsrouting-bundle": "^2.2", 89 "symfony/monolog-bundle": "^3.1",
90 "bdunogier/guzzle-site-authenticator": "^1.0.0", 90 "symfony/swiftmailer-bundle": "^3.2",
91 "defuse/php-encryption": "^2.1", 91 "symfony/symfony": "3.4.*",
92 "html2text/html2text": "^4.1", 92 "tecnickcom/tcpdf": "^6.3.0",
93 "pragmarx/recovery": "^0.1.0", 93 "twig/extensions": "^1.5",
94 "php-http/httplug-bundle": "^1.14", 94 "wallabag/php-mobi": "~1.0",
95 "sentry/sentry-symfony": "^3.0" 95 "wallabag/phpepub": "^4.0.7.2",
96 "white-october/pagerfanta-bundle": "^1.1",
97 "willdurand/hateoas-bundle": "~1.3"
96 }, 98 },
97 "require-dev": { 99 "require-dev": {
100 "dama/doctrine-test-bundle": "^5.0",
98 "doctrine/doctrine-fixtures-bundle": "~3.0", 101 "doctrine/doctrine-fixtures-bundle": "~3.0",
99 "sensio/generator-bundle": "^3.0",
100 "symfony/phpunit-bridge": "~4.3.8",
101 "friendsofphp/php-cs-fixer": "~2.13", 102 "friendsofphp/php-cs-fixer": "~2.13",
103 "guzzlehttp/psr7": "^1.0",
102 "m6web/redis-mock": "^5.0", 104 "m6web/redis-mock": "^5.0",
103 "dama/doctrine-test-bundle": "^5.0", 105 "php-http/mock-client": "^1.0",
104 "phpstan/phpstan": "^0.11.0", 106 "phpstan/phpstan": "^0.11.0",
107 "phpstan/phpstan-doctrine": "^0.11.0",
105 "phpstan/phpstan-phpunit": "^0.11.0", 108 "phpstan/phpstan-phpunit": "^0.11.0",
106 "phpstan/phpstan-symfony": "^0.11.0", 109 "phpstan/phpstan-symfony": "^0.11.0",
107 "phpstan/phpstan-doctrine": "^0.11.0", 110 "symfony/maker-bundle": "^1.18",
108 "php-http/mock-client": "^1.0", 111 "symfony/phpunit-bridge": "~4.3.8"
109 "guzzlehttp/psr7": "^1.0"
110 }, 112 },
111 "suggest": { 113 "suggest": {
112 "ext-imagick": "To keep GIF animation when downloading image is enabled" 114 "ext-imagick": "To keep GIF animation when downloading image is enabled"
@@ -158,7 +160,8 @@
158 "bin-dir": "bin", 160 "bin-dir": "bin",
159 "platform": { 161 "platform": {
160 "php": "7.1.3" 162 "php": "7.1.3"
161 } 163 },
164 "sort-packages": true
162 }, 165 },
163 "minimum-stability": "dev", 166 "minimum-stability": "dev",
164 "prefer-stable": true 167 "prefer-stable": true
diff --git a/composer.lock b/composer.lock
index 4575a98f..88a3d4ba 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
4 "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 4 "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5 "This file is @generated automatically" 5 "This file is @generated automatically"
6 ], 6 ],
7 "content-hash": "552a7c133014fd0a95d78a04fab4beba", 7 "content-hash": "9460c8c5f1534c0655a9639167c3e1a1",
8 "packages": [ 8 "packages": [
9 { 9 {
10 "name": "bdunogier/guzzle-site-authenticator", 10 "name": "bdunogier/guzzle-site-authenticator",
@@ -120,16 +120,16 @@
120 }, 120 },
121 { 121 {
122 "name": "behat/transliterator", 122 "name": "behat/transliterator",
123 "version": "v1.2.0", 123 "version": "v1.3.0",
124 "source": { 124 "source": {
125 "type": "git", 125 "type": "git",
126 "url": "https://github.com/Behat/Transliterator.git", 126 "url": "https://github.com/Behat/Transliterator.git",
127 "reference": "826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c" 127 "reference": "3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc"
128 }, 128 },
129 "dist": { 129 "dist": {
130 "type": "zip", 130 "type": "zip",
131 "url": "https://api.github.com/repos/Behat/Transliterator/zipball/826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c", 131 "url": "https://api.github.com/repos/Behat/Transliterator/zipball/3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc",
132 "reference": "826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c", 132 "reference": "3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc",
133 "shasum": "" 133 "shasum": ""
134 }, 134 },
135 "require": { 135 "require": {
@@ -137,7 +137,8 @@
137 }, 137 },
138 "require-dev": { 138 "require-dev": {
139 "chuyskywalker/rolling-curl": "^3.1", 139 "chuyskywalker/rolling-curl": "^3.1",
140 "php-yaoi/php-yaoi": "^1.0" 140 "php-yaoi/php-yaoi": "^1.0",
141 "phpunit/phpunit": "^4.8.36|^6.3"
141 }, 142 },
142 "type": "library", 143 "type": "library",
143 "extra": { 144 "extra": {
@@ -146,8 +147,8 @@
146 } 147 }
147 }, 148 },
148 "autoload": { 149 "autoload": {
149 "psr-0": { 150 "psr-4": {
150 "Behat\\Transliterator": "src/" 151 "Behat\\Transliterator\\": "src/Behat/Transliterator"
151 } 152 }
152 }, 153 },
153 "notification-url": "https://packagist.org/downloads/", 154 "notification-url": "https://packagist.org/downloads/",
@@ -160,7 +161,7 @@
160 "slug", 161 "slug",
161 "transliterator" 162 "transliterator"
162 ], 163 ],
163 "time": "2017-04-04T11:38:05+00:00" 164 "time": "2020-01-14T16:39:13+00:00"
164 }, 165 },
165 { 166 {
166 "name": "clue/stream-filter", 167 "name": "clue/stream-filter",
@@ -571,16 +572,16 @@
571 }, 572 },
572 { 573 {
573 "name": "doctrine/common", 574 "name": "doctrine/common",
574 "version": "2.12.0", 575 "version": "2.13.0",
575 "source": { 576 "source": {
576 "type": "git", 577 "type": "git",
577 "url": "https://github.com/doctrine/common.git", 578 "url": "https://github.com/doctrine/common.git",
578 "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6" 579 "reference": "308728eae8d90412d850c155d40b1cfbede549da"
579 }, 580 },
580 "dist": { 581 "dist": {
581 "type": "zip", 582 "type": "zip",
582 "url": "https://api.github.com/repos/doctrine/common/zipball/2053eafdf60c2172ee1373d1b9289ba1db7f1fc6", 583 "url": "https://api.github.com/repos/doctrine/common/zipball/308728eae8d90412d850c155d40b1cfbede549da",
583 "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6", 584 "reference": "308728eae8d90412d850c155d40b1cfbede549da",
584 "shasum": "" 585 "shasum": ""
585 }, 586 },
586 "require": { 587 "require": {
@@ -590,7 +591,7 @@
590 "doctrine/event-manager": "^1.0", 591 "doctrine/event-manager": "^1.0",
591 "doctrine/inflector": "^1.0", 592 "doctrine/inflector": "^1.0",
592 "doctrine/lexer": "^1.0", 593 "doctrine/lexer": "^1.0",
593 "doctrine/persistence": "^1.1", 594 "doctrine/persistence": "^1.3.3",
594 "doctrine/reflection": "^1.0", 595 "doctrine/reflection": "^1.0",
595 "php": "^7.1" 596 "php": "^7.1"
596 }, 597 },
@@ -650,7 +651,21 @@
650 "doctrine", 651 "doctrine",
651 "php" 652 "php"
652 ], 653 ],
653 "time": "2020-01-10T15:49:25+00:00" 654 "funding": [
655 {
656 "url": "https://www.doctrine-project.org/sponsorship.html",
657 "type": "custom"
658 },
659 {
660 "url": "https://www.patreon.com/phpdoctrine",
661 "type": "patreon"
662 },
663 {
664 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
665 "type": "tidelift"
666 }
667 ],
668 "time": "2020-05-15T05:51:54+00:00"
654 }, 669 },
655 { 670 {
656 "name": "doctrine/dbal", 671 "name": "doctrine/dbal",
@@ -826,6 +841,20 @@
826 "orm", 841 "orm",
827 "persistence" 842 "persistence"
828 ], 843 ],
844 "funding": [
845 {
846 "url": "https://www.doctrine-project.org/sponsorship.html",
847 "type": "custom"
848 },
849 {
850 "url": "https://www.patreon.com/phpdoctrine",
851 "type": "patreon"
852 },
853 {
854 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
855 "type": "tidelift"
856 }
857 ],
829 "time": "2020-04-23T10:38:48+00:00" 858 "time": "2020-04-23T10:38:48+00:00"
830 }, 859 },
831 { 860 {
@@ -1475,6 +1504,20 @@
1475 "orm", 1504 "orm",
1476 "persistence" 1505 "persistence"
1477 ], 1506 ],
1507 "funding": [
1508 {
1509 "url": "https://www.doctrine-project.org/sponsorship.html",
1510 "type": "custom"
1511 },
1512 {
1513 "url": "https://www.patreon.com/phpdoctrine",
1514 "type": "patreon"
1515 },
1516 {
1517 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
1518 "type": "tidelift"
1519 }
1520 ],
1478 "time": "2020-03-21T15:13:52+00:00" 1521 "time": "2020-03-21T15:13:52+00:00"
1479 }, 1522 },
1480 { 1523 {
@@ -1557,27 +1600,27 @@
1557 }, 1600 },
1558 { 1601 {
1559 "name": "egulias/email-validator", 1602 "name": "egulias/email-validator",
1560 "version": "2.1.12", 1603 "version": "2.1.17",
1561 "source": { 1604 "source": {
1562 "type": "git", 1605 "type": "git",
1563 "url": "https://github.com/egulias/EmailValidator.git", 1606 "url": "https://github.com/egulias/EmailValidator.git",
1564 "reference": "a6255605af39f2db7f5cb62e672bd8a7bad8d208" 1607 "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
1565 }, 1608 },
1566 "dist": { 1609 "dist": {
1567 "type": "zip", 1610 "type": "zip",
1568 "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/a6255605af39f2db7f5cb62e672bd8a7bad8d208", 1611 "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
1569 "reference": "a6255605af39f2db7f5cb62e672bd8a7bad8d208", 1612 "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
1570 "shasum": "" 1613 "shasum": ""
1571 }, 1614 },
1572 "require": { 1615 "require": {
1573 "doctrine/lexer": "^1.0.1", 1616 "doctrine/lexer": "^1.0.1",
1574 "php": ">= 5.5" 1617 "php": ">=5.5",
1618 "symfony/polyfill-intl-idn": "^1.10"
1575 }, 1619 },
1576 "require-dev": { 1620 "require-dev": {
1577 "dominicsayers/isemail": "dev-master", 1621 "dominicsayers/isemail": "^3.0.7",
1578 "phpunit/phpunit": "^4.8.35||^5.7||^6.0", 1622 "phpunit/phpunit": "^4.8.36|^7.5.15",
1579 "satooshi/php-coveralls": "^1.0.1", 1623 "satooshi/php-coveralls": "^1.0.1"
1580 "symfony/phpunit-bridge": "^4.4@dev"
1581 }, 1624 },
1582 "suggest": { 1625 "suggest": {
1583 "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" 1626 "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
@@ -1611,7 +1654,7 @@
1611 "validation", 1654 "validation",
1612 "validator" 1655 "validator"
1613 ], 1656 ],
1614 "time": "2019-12-20T12:49:39+00:00" 1657 "time": "2020-02-13T22:36:52+00:00"
1615 }, 1658 },
1616 { 1659 {
1617 "name": "electrolinux/php-html5lib", 1660 "name": "electrolinux/php-html5lib",
@@ -2157,16 +2200,16 @@
2157 }, 2200 },
2158 { 2201 {
2159 "name": "gedmo/doctrine-extensions", 2202 "name": "gedmo/doctrine-extensions",
2160 "version": "v2.4.38", 2203 "version": "v2.4.41",
2161 "source": { 2204 "source": {
2162 "type": "git", 2205 "type": "git",
2163 "url": "https://github.com/Atlantic18/DoctrineExtensions.git", 2206 "url": "https://github.com/Atlantic18/DoctrineExtensions.git",
2164 "reference": "81681364331b131518060e4776300a5346df1eb5" 2207 "reference": "e55a6727052f91834a968937c93b6fb193be8fb6"
2165 }, 2208 },
2166 "dist": { 2209 "dist": {
2167 "type": "zip", 2210 "type": "zip",
2168 "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/81681364331b131518060e4776300a5346df1eb5", 2211 "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/e55a6727052f91834a968937c93b6fb193be8fb6",
2169 "reference": "81681364331b131518060e4776300a5346df1eb5", 2212 "reference": "e55a6727052f91834a968937c93b6fb193be8fb6",
2170 "shasum": "" 2213 "shasum": ""
2171 }, 2214 },
2172 "require": { 2215 "require": {
@@ -2183,7 +2226,7 @@
2183 "doctrine/mongodb-odm": ">=1.0.2 <2.0", 2226 "doctrine/mongodb-odm": ">=1.0.2 <2.0",
2184 "doctrine/orm": ">=2.5.0", 2227 "doctrine/orm": ">=2.5.0",
2185 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5", 2228 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
2186 "symfony/yaml": "~2.6 || ~3.0 || ~4.0" 2229 "symfony/yaml": "^2.6 || ^3.0 || ^4.0 || ^5.0"
2187 }, 2230 },
2188 "suggest": { 2231 "suggest": {
2189 "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM", 2232 "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM",
@@ -2235,7 +2278,7 @@
2235 "tree", 2278 "tree",
2236 "uploadable" 2279 "uploadable"
2237 ], 2280 ],
2238 "time": "2019-11-08T22:33:07+00:00" 2281 "time": "2020-05-10T22:20:03+00:00"
2239 }, 2282 },
2240 { 2283 {
2241 "name": "grandt/binstring", 2284 "name": "grandt/binstring",
@@ -3758,16 +3801,16 @@
3758 }, 3801 },
3759 { 3802 {
3760 "name": "j0k3r/graby-site-config", 3803 "name": "j0k3r/graby-site-config",
3761 "version": "1.0.105", 3804 "version": "1.0.106",
3762 "source": { 3805 "source": {
3763 "type": "git", 3806 "type": "git",
3764 "url": "https://github.com/j0k3r/graby-site-config.git", 3807 "url": "https://github.com/j0k3r/graby-site-config.git",
3765 "reference": "489208b33e9f43f3812626b0543cfe42ef896052" 3808 "reference": "d50dbfe2644c684a9fe0d99c74ca0734354cc3c0"
3766 }, 3809 },
3767 "dist": { 3810 "dist": {
3768 "type": "zip", 3811 "type": "zip",
3769 "url": "https://api.github.com/repos/j0k3r/graby-site-config/zipball/489208b33e9f43f3812626b0543cfe42ef896052", 3812 "url": "https://api.github.com/repos/j0k3r/graby-site-config/zipball/d50dbfe2644c684a9fe0d99c74ca0734354cc3c0",
3770 "reference": "489208b33e9f43f3812626b0543cfe42ef896052", 3813 "reference": "d50dbfe2644c684a9fe0d99c74ca0734354cc3c0",
3771 "shasum": "" 3814 "shasum": ""
3772 }, 3815 },
3773 "require": { 3816 "require": {
@@ -3794,7 +3837,7 @@
3794 } 3837 }
3795 ], 3838 ],
3796 "description": "Graby site config files", 3839 "description": "Graby site config files",
3797 "time": "2020-04-21T12:42:03+00:00" 3840 "time": "2020-05-13T05:29:30+00:00"
3798 }, 3841 },
3799 { 3842 {
3800 "name": "j0k3r/httplug-ssrf-plugin", 3843 "name": "j0k3r/httplug-ssrf-plugin",
@@ -4186,16 +4229,16 @@
4186 }, 4229 },
4187 { 4230 {
4188 "name": "jms/serializer", 4231 "name": "jms/serializer",
4189 "version": "1.14.0", 4232 "version": "1.14.1",
4190 "source": { 4233 "source": {
4191 "type": "git", 4234 "type": "git",
4192 "url": "https://github.com/schmittjoh/serializer.git", 4235 "url": "https://github.com/schmittjoh/serializer.git",
4193 "reference": "ee96d57024af9a7716d56fcbe3aa94b3d030f3ca" 4236 "reference": "ba908d278fff27ec01fb4349f372634ffcd697c0"
4194 }, 4237 },
4195 "dist": { 4238 "dist": {
4196 "type": "zip", 4239 "type": "zip",
4197 "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/ee96d57024af9a7716d56fcbe3aa94b3d030f3ca", 4240 "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/ba908d278fff27ec01fb4349f372634ffcd697c0",
4198 "reference": "ee96d57024af9a7716d56fcbe3aa94b3d030f3ca", 4241 "reference": "ba908d278fff27ec01fb4349f372634ffcd697c0",
4199 "shasum": "" 4242 "shasum": ""
4200 }, 4243 },
4201 "require": { 4244 "require": {
@@ -4249,12 +4292,12 @@
4249 ], 4292 ],
4250 "authors": [ 4293 "authors": [
4251 { 4294 {
4252 "name": "Asmir Mustafic",
4253 "email": "goetas@gmail.com"
4254 },
4255 {
4256 "name": "Johannes M. Schmitt", 4295 "name": "Johannes M. Schmitt",
4257 "email": "schmittjoh@gmail.com" 4296 "email": "schmittjoh@gmail.com"
4297 },
4298 {
4299 "name": "Asmir Mustafic",
4300 "email": "goetas@gmail.com"
4258 } 4301 }
4259 ], 4302 ],
4260 "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.", 4303 "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.",
@@ -4266,7 +4309,7 @@
4266 "serialization", 4309 "serialization",
4267 "xml" 4310 "xml"
4268 ], 4311 ],
4269 "time": "2019-04-17T08:12:16+00:00" 4312 "time": "2020-02-22T20:59:37+00:00"
4270 }, 4313 },
4271 { 4314 {
4272 "name": "jms/serializer-bundle", 4315 "name": "jms/serializer-bundle",
@@ -4527,17 +4570,287 @@
4527 "time": "2018-09-17T09:02:32+00:00" 4570 "time": "2018-09-17T09:02:32+00:00"
4528 }, 4571 },
4529 { 4572 {
4573 "name": "laminas/laminas-code",
4574 "version": "3.4.1",
4575 "source": {
4576 "type": "git",
4577 "url": "https://github.com/laminas/laminas-code.git",
4578 "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766"
4579 },
4580 "dist": {
4581 "type": "zip",
4582 "url": "https://api.github.com/repos/laminas/laminas-code/zipball/1cb8f203389ab1482bf89c0e70a04849bacd7766",
4583 "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766",
4584 "shasum": ""
4585 },
4586 "require": {
4587 "laminas/laminas-eventmanager": "^2.6 || ^3.0",
4588 "laminas/laminas-zendframework-bridge": "^1.0",
4589 "php": "^7.1"
4590 },
4591 "conflict": {
4592 "phpspec/prophecy": "<1.9.0"
4593 },
4594 "replace": {
4595 "zendframework/zend-code": "self.version"
4596 },
4597 "require-dev": {
4598 "doctrine/annotations": "^1.7",
4599 "ext-phar": "*",
4600 "laminas/laminas-coding-standard": "^1.0",
4601 "laminas/laminas-stdlib": "^2.7 || ^3.0",
4602 "phpunit/phpunit": "^7.5.16 || ^8.4"
4603 },
4604 "suggest": {
4605 "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
4606 "laminas/laminas-stdlib": "Laminas\\Stdlib component"
4607 },
4608 "type": "library",
4609 "extra": {
4610 "branch-alias": {
4611 "dev-master": "3.4.x-dev",
4612 "dev-develop": "3.5.x-dev",
4613 "dev-dev-4.0": "4.0.x-dev"
4614 }
4615 },
4616 "autoload": {
4617 "psr-4": {
4618 "Laminas\\Code\\": "src/"
4619 }
4620 },
4621 "notification-url": "https://packagist.org/downloads/",
4622 "license": [
4623 "BSD-3-Clause"
4624 ],
4625 "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
4626 "homepage": "https://laminas.dev",
4627 "keywords": [
4628 "code",
4629 "laminas"
4630 ],
4631 "time": "2019-12-31T16:28:24+00:00"
4632 },
4633 {
4634 "name": "laminas/laminas-diactoros",
4635 "version": "2.3.0",
4636 "source": {
4637 "type": "git",
4638 "url": "https://github.com/laminas/laminas-diactoros.git",
4639 "reference": "5ab185dba63ec655a2380c97711b09adc7061f89"
4640 },
4641 "dist": {
4642 "type": "zip",
4643 "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/5ab185dba63ec655a2380c97711b09adc7061f89",
4644 "reference": "5ab185dba63ec655a2380c97711b09adc7061f89",
4645 "shasum": ""
4646 },
4647 "require": {
4648 "laminas/laminas-zendframework-bridge": "^1.0",
4649 "php": "^7.1",
4650 "psr/http-factory": "^1.0",
4651 "psr/http-message": "^1.0"
4652 },
4653 "conflict": {
4654 "phpspec/prophecy": "<1.9.0"
4655 },
4656 "provide": {
4657 "psr/http-factory-implementation": "1.0",
4658 "psr/http-message-implementation": "1.0"
4659 },
4660 "replace": {
4661 "zendframework/zend-diactoros": "^2.2.1"
4662 },
4663 "require-dev": {
4664 "ext-curl": "*",
4665 "ext-dom": "*",
4666 "ext-libxml": "*",
4667 "http-interop/http-factory-tests": "^0.5.0",
4668 "laminas/laminas-coding-standard": "~1.0.0",
4669 "php-http/psr7-integration-tests": "^1.0",
4670 "phpunit/phpunit": "^7.5.18"
4671 },
4672 "type": "library",
4673 "extra": {
4674 "branch-alias": {
4675 "dev-master": "2.3.x-dev",
4676 "dev-develop": "2.4.x-dev"
4677 },
4678 "laminas": {
4679 "config-provider": "Laminas\\Diactoros\\ConfigProvider",
4680 "module": "Laminas\\Diactoros"
4681 }
4682 },
4683 "autoload": {
4684 "files": [
4685 "src/functions/create_uploaded_file.php",
4686 "src/functions/marshal_headers_from_sapi.php",
4687 "src/functions/marshal_method_from_sapi.php",
4688 "src/functions/marshal_protocol_version_from_sapi.php",
4689 "src/functions/marshal_uri_from_sapi.php",
4690 "src/functions/normalize_server.php",
4691 "src/functions/normalize_uploaded_files.php",
4692 "src/functions/parse_cookie_header.php",
4693 "src/functions/create_uploaded_file.legacy.php",
4694 "src/functions/marshal_headers_from_sapi.legacy.php",
4695 "src/functions/marshal_method_from_sapi.legacy.php",
4696 "src/functions/marshal_protocol_version_from_sapi.legacy.php",
4697 "src/functions/marshal_uri_from_sapi.legacy.php",
4698 "src/functions/normalize_server.legacy.php",
4699 "src/functions/normalize_uploaded_files.legacy.php",
4700 "src/functions/parse_cookie_header.legacy.php"
4701 ],
4702 "psr-4": {
4703 "Laminas\\Diactoros\\": "src/"
4704 }
4705 },
4706 "notification-url": "https://packagist.org/downloads/",
4707 "license": [
4708 "BSD-3-Clause"
4709 ],
4710 "description": "PSR HTTP Message implementations",
4711 "homepage": "https://laminas.dev",
4712 "keywords": [
4713 "http",
4714 "laminas",
4715 "psr",
4716 "psr-7"
4717 ],
4718 "funding": [
4719 {
4720 "url": "https://funding.communitybridge.org/projects/laminas-project",
4721 "type": "community_bridge"
4722 }
4723 ],
4724 "time": "2020-04-27T17:07:01+00:00"
4725 },
4726 {
4727 "name": "laminas/laminas-eventmanager",
4728 "version": "3.2.1",
4729 "source": {
4730 "type": "git",
4731 "url": "https://github.com/laminas/laminas-eventmanager.git",
4732 "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748"
4733 },
4734 "dist": {
4735 "type": "zip",
4736 "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/ce4dc0bdf3b14b7f9815775af9dfee80a63b4748",
4737 "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748",
4738 "shasum": ""
4739 },
4740 "require": {
4741 "laminas/laminas-zendframework-bridge": "^1.0",
4742 "php": "^5.6 || ^7.0"
4743 },
4744 "replace": {
4745 "zendframework/zend-eventmanager": "self.version"
4746 },
4747 "require-dev": {
4748 "athletic/athletic": "^0.1",
4749 "container-interop/container-interop": "^1.1.0",
4750 "laminas/laminas-coding-standard": "~1.0.0",
4751 "laminas/laminas-stdlib": "^2.7.3 || ^3.0",
4752 "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
4753 },
4754 "suggest": {
4755 "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
4756 "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
4757 },
4758 "type": "library",
4759 "extra": {
4760 "branch-alias": {
4761 "dev-master": "3.2-dev",
4762 "dev-develop": "3.3-dev"
4763 }
4764 },
4765 "autoload": {
4766 "psr-4": {
4767 "Laminas\\EventManager\\": "src/"
4768 }
4769 },
4770 "notification-url": "https://packagist.org/downloads/",
4771 "license": [
4772 "BSD-3-Clause"
4773 ],
4774 "description": "Trigger and listen to events within a PHP application",
4775 "homepage": "https://laminas.dev",
4776 "keywords": [
4777 "event",
4778 "eventmanager",
4779 "events",
4780 "laminas"
4781 ],
4782 "time": "2019-12-31T16:44:52+00:00"
4783 },
4784 {
4785 "name": "laminas/laminas-zendframework-bridge",
4786 "version": "1.0.4",
4787 "source": {
4788 "type": "git",
4789 "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
4790 "reference": "fcd87520e4943d968557803919523772475e8ea3"
4791 },
4792 "dist": {
4793 "type": "zip",
4794 "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
4795 "reference": "fcd87520e4943d968557803919523772475e8ea3",
4796 "shasum": ""
4797 },
4798 "require": {
4799 "php": "^5.6 || ^7.0"
4800 },
4801 "require-dev": {
4802 "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
4803 "squizlabs/php_codesniffer": "^3.5"
4804 },
4805 "type": "library",
4806 "extra": {
4807 "branch-alias": {
4808 "dev-master": "1.0.x-dev",
4809 "dev-develop": "1.1.x-dev"
4810 },
4811 "laminas": {
4812 "module": "Laminas\\ZendFrameworkBridge"
4813 }
4814 },
4815 "autoload": {
4816 "files": [
4817 "src/autoload.php"
4818 ],
4819 "psr-4": {
4820 "Laminas\\ZendFrameworkBridge\\": "src//"
4821 }
4822 },
4823 "notification-url": "https://packagist.org/downloads/",
4824 "license": [
4825 "BSD-3-Clause"
4826 ],
4827 "description": "Alias legacy ZF class names to Laminas Project equivalents.",
4828 "keywords": [
4829 "ZendFramework",
4830 "autoloading",
4831 "laminas",
4832 "zf"
4833 ],
4834 "funding": [
4835 {
4836 "url": "https://funding.communitybridge.org/projects/laminas-project",
4837 "type": "community_bridge"
4838 }
4839 ],
4840 "time": "2020-05-20T16:45:56+00:00"
4841 },
4842 {
4530 "name": "lcobucci/jwt", 4843 "name": "lcobucci/jwt",
4531 "version": "3.3.1", 4844 "version": "3.3.2",
4532 "source": { 4845 "source": {
4533 "type": "git", 4846 "type": "git",
4534 "url": "https://github.com/lcobucci/jwt.git", 4847 "url": "https://github.com/lcobucci/jwt.git",
4535 "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18" 4848 "reference": "56f10808089e38623345e28af2f2d5e4eb579455"
4536 }, 4849 },
4537 "dist": { 4850 "dist": {
4538 "type": "zip", 4851 "type": "zip",
4539 "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", 4852 "url": "https://api.github.com/repos/lcobucci/jwt/zipball/56f10808089e38623345e28af2f2d5e4eb579455",
4540 "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", 4853 "reference": "56f10808089e38623345e28af2f2d5e4eb579455",
4541 "shasum": "" 4854 "shasum": ""
4542 }, 4855 },
4543 "require": { 4856 "require": {
@@ -4579,7 +4892,17 @@
4579 "JWS", 4892 "JWS",
4580 "jwt" 4893 "jwt"
4581 ], 4894 ],
4582 "time": "2019-05-24T18:30:49+00:00" 4895 "funding": [
4896 {
4897 "url": "https://github.com/lcobucci",
4898 "type": "github"
4899 },
4900 {
4901 "url": "https://www.patreon.com/lcobucci",
4902 "type": "patreon"
4903 }
4904 ],
4905 "time": "2020-05-22T08:21:12+00:00"
4583 }, 4906 },
4584 { 4907 {
4585 "name": "lexik/form-filter-bundle", 4908 "name": "lexik/form-filter-bundle",
@@ -4906,16 +5229,16 @@
4906 }, 5229 },
4907 { 5230 {
4908 "name": "monolog/monolog", 5231 "name": "monolog/monolog",
4909 "version": "1.25.3", 5232 "version": "1.25.4",
4910 "source": { 5233 "source": {
4911 "type": "git", 5234 "type": "git",
4912 "url": "https://github.com/Seldaek/monolog.git", 5235 "url": "https://github.com/Seldaek/monolog.git",
4913 "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1" 5236 "reference": "3022efff205e2448b560c833c6fbbf91c3139168"
4914 }, 5237 },
4915 "dist": { 5238 "dist": {
4916 "type": "zip", 5239 "type": "zip",
4917 "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1", 5240 "url": "https://api.github.com/repos/Seldaek/monolog/zipball/3022efff205e2448b560c833c6fbbf91c3139168",
4918 "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1", 5241 "reference": "3022efff205e2448b560c833c6fbbf91c3139168",
4919 "shasum": "" 5242 "shasum": ""
4920 }, 5243 },
4921 "require": { 5244 "require": {
@@ -4929,11 +5252,10 @@
4929 "aws/aws-sdk-php": "^2.4.9 || ^3.0", 5252 "aws/aws-sdk-php": "^2.4.9 || ^3.0",
4930 "doctrine/couchdb": "~1.0@dev", 5253 "doctrine/couchdb": "~1.0@dev",
4931 "graylog2/gelf-php": "~1.0", 5254 "graylog2/gelf-php": "~1.0",
4932 "jakub-onderka/php-parallel-lint": "0.9",
4933 "php-amqplib/php-amqplib": "~2.4", 5255 "php-amqplib/php-amqplib": "~2.4",
4934 "php-console/php-console": "^3.1.3", 5256 "php-console/php-console": "^3.1.3",
5257 "php-parallel-lint/php-parallel-lint": "^1.0",
4935 "phpunit/phpunit": "~4.5", 5258 "phpunit/phpunit": "~4.5",
4936 "phpunit/phpunit-mock-objects": "2.3.0",
4937 "ruflin/elastica": ">=0.90 <3.0", 5259 "ruflin/elastica": ">=0.90 <3.0",
4938 "sentry/sentry": "^0.13", 5260 "sentry/sentry": "^0.13",
4939 "swiftmailer/swiftmailer": "^5.3|^6.0" 5261 "swiftmailer/swiftmailer": "^5.3|^6.0"
@@ -4980,7 +5302,17 @@
4980 "logging", 5302 "logging",
4981 "psr-3" 5303 "psr-3"
4982 ], 5304 ],
4983 "time": "2019-12-20T14:15:16+00:00" 5305 "funding": [
5306 {
5307 "url": "https://github.com/Seldaek",
5308 "type": "github"
5309 },
5310 {
5311 "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
5312 "type": "tidelift"
5313 }
5314 ],
5315 "time": "2020-05-22T07:31:27+00:00"
4984 }, 5316 },
4985 { 5317 {
4986 "name": "nelmio/api-doc-bundle", 5318 "name": "nelmio/api-doc-bundle",
@@ -5426,16 +5758,16 @@
5426 }, 5758 },
5427 { 5759 {
5428 "name": "php-amqplib/php-amqplib", 5760 "name": "php-amqplib/php-amqplib",
5429 "version": "v2.11.0", 5761 "version": "v2.11.3",
5430 "source": { 5762 "source": {
5431 "type": "git", 5763 "type": "git",
5432 "url": "https://github.com/php-amqplib/php-amqplib.git", 5764 "url": "https://github.com/php-amqplib/php-amqplib.git",
5433 "reference": "9ee212baced63442ca1ab029acde38e1144a00b8" 5765 "reference": "6353c5d2d3021a301914bc6566e695c99cfeb742"
5434 }, 5766 },
5435 "dist": { 5767 "dist": {
5436 "type": "zip", 5768 "type": "zip",
5437 "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/9ee212baced63442ca1ab029acde38e1144a00b8", 5769 "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/6353c5d2d3021a301914bc6566e695c99cfeb742",
5438 "reference": "9ee212baced63442ca1ab029acde38e1144a00b8", 5770 "reference": "6353c5d2d3021a301914bc6566e695c99cfeb742",
5439 "shasum": "" 5771 "shasum": ""
5440 }, 5772 },
5441 "require": { 5773 "require": {
@@ -5444,6 +5776,9 @@
5444 "php": ">=5.6.3", 5776 "php": ">=5.6.3",
5445 "phpseclib/phpseclib": "^2.0.0" 5777 "phpseclib/phpseclib": "^2.0.0"
5446 }, 5778 },
5779 "conflict": {
5780 "php": "7.4.0 - 7.4.1"
5781 },
5447 "replace": { 5782 "replace": {
5448 "videlalvaro/php-amqplib": "self.version" 5783 "videlalvaro/php-amqplib": "self.version"
5449 }, 5784 },
@@ -5474,11 +5809,6 @@
5474 "role": "Original Maintainer" 5809 "role": "Original Maintainer"
5475 }, 5810 },
5476 { 5811 {
5477 "name": "John Kelly",
5478 "email": "johnmkelly86@gmail.com",
5479 "role": "Maintainer"
5480 },
5481 {
5482 "name": "Raúl Araya", 5812 "name": "Raúl Araya",
5483 "email": "nubeiro@gmail.com", 5813 "email": "nubeiro@gmail.com",
5484 "role": "Maintainer" 5814 "role": "Maintainer"
@@ -5487,6 +5817,11 @@
5487 "name": "Luke Bakken", 5817 "name": "Luke Bakken",
5488 "email": "luke@bakken.io", 5818 "email": "luke@bakken.io",
5489 "role": "Maintainer" 5819 "role": "Maintainer"
5820 },
5821 {
5822 "name": "Ramūnas Dronga",
5823 "email": "github@ramuno.lt",
5824 "role": "Maintainer"
5490 } 5825 }
5491 ], 5826 ],
5492 "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.", 5827 "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
@@ -5496,7 +5831,7 @@
5496 "queue", 5831 "queue",
5497 "rabbitmq" 5832 "rabbitmq"
5498 ], 5833 ],
5499 "time": "2019-11-19T15:15:19+00:00" 5834 "time": "2020-05-13T13:56:11+00:00"
5500 }, 5835 },
5501 { 5836 {
5502 "name": "php-amqplib/rabbitmq-bundle", 5837 "name": "php-amqplib/rabbitmq-bundle",
@@ -6317,20 +6652,20 @@
6317 }, 6652 },
6318 { 6653 {
6319 "name": "phpoption/phpoption", 6654 "name": "phpoption/phpoption",
6320 "version": "1.7.2", 6655 "version": "1.7.3",
6321 "source": { 6656 "source": {
6322 "type": "git", 6657 "type": "git",
6323 "url": "https://github.com/schmittjoh/php-option.git", 6658 "url": "https://github.com/schmittjoh/php-option.git",
6324 "reference": "77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959" 6659 "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae"
6325 }, 6660 },
6326 "dist": { 6661 "dist": {
6327 "type": "zip", 6662 "type": "zip",
6328 "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959", 6663 "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
6329 "reference": "77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959", 6664 "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
6330 "shasum": "" 6665 "shasum": ""
6331 }, 6666 },
6332 "require": { 6667 "require": {
6333 "php": "^5.5.9 || ^7.0" 6668 "php": "^5.5.9 || ^7.0 || ^8.0"
6334 }, 6669 },
6335 "require-dev": { 6670 "require-dev": {
6336 "bamarni/composer-bin-plugin": "^1.3", 6671 "bamarni/composer-bin-plugin": "^1.3",
@@ -6368,20 +6703,20 @@
6368 "php", 6703 "php",
6369 "type" 6704 "type"
6370 ], 6705 ],
6371 "time": "2019-12-15T19:35:24+00:00" 6706 "time": "2020-03-21T18:07:53+00:00"
6372 }, 6707 },
6373 { 6708 {
6374 "name": "phpseclib/phpseclib", 6709 "name": "phpseclib/phpseclib",
6375 "version": "2.0.23", 6710 "version": "2.0.27",
6376 "source": { 6711 "source": {
6377 "type": "git", 6712 "type": "git",
6378 "url": "https://github.com/phpseclib/phpseclib.git", 6713 "url": "https://github.com/phpseclib/phpseclib.git",
6379 "reference": "c78eb5058d5bb1a183133c36d4ba5b6675dfa099" 6714 "reference": "34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc"
6380 }, 6715 },
6381 "dist": { 6716 "dist": {
6382 "type": "zip", 6717 "type": "zip",
6383 "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c78eb5058d5bb1a183133c36d4ba5b6675dfa099", 6718 "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc",
6384 "reference": "c78eb5058d5bb1a183133c36d4ba5b6675dfa099", 6719 "reference": "34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc",
6385 "shasum": "" 6720 "shasum": ""
6386 }, 6721 },
6387 "require": { 6722 "require": {
@@ -6460,7 +6795,21 @@
6460 "x.509", 6795 "x.509",
6461 "x509" 6796 "x509"
6462 ], 6797 ],
6463 "time": "2019-09-17T03:41:22+00:00" 6798 "funding": [
6799 {
6800 "url": "https://github.com/terrafrost",
6801 "type": "github"
6802 },
6803 {
6804 "url": "https://www.patreon.com/phpseclib",
6805 "type": "patreon"
6806 },
6807 {
6808 "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
6809 "type": "tidelift"
6810 }
6811 ],
6812 "time": "2020-04-04T23:17:33+00:00"
6464 }, 6813 },
6465 { 6814 {
6466 "name": "phpzip/phpzip", 6815 "name": "phpzip/phpzip",
@@ -7131,111 +7480,24 @@
7131 "time": "2019-03-08T08:55:37+00:00" 7480 "time": "2019-03-08T08:55:37+00:00"
7132 }, 7481 },
7133 { 7482 {
7134 "name": "ramsey/uuid",
7135 "version": "3.9.2",
7136 "source": {
7137 "type": "git",
7138 "url": "https://github.com/ramsey/uuid.git",
7139 "reference": "7779489a47d443f845271badbdcedfe4df8e06fb"
7140 },
7141 "dist": {
7142 "type": "zip",
7143 "url": "https://api.github.com/repos/ramsey/uuid/zipball/7779489a47d443f845271badbdcedfe4df8e06fb",
7144 "reference": "7779489a47d443f845271badbdcedfe4df8e06fb",
7145 "shasum": ""
7146 },
7147 "require": {
7148 "ext-json": "*",
7149 "paragonie/random_compat": "^1 | ^2 | 9.99.99",
7150 "php": "^5.4 | ^7 | ^8",
7151 "symfony/polyfill-ctype": "^1.8"
7152 },
7153 "replace": {
7154 "rhumsaa/uuid": "self.version"
7155 },
7156 "require-dev": {
7157 "codeception/aspect-mock": "^1 | ^2",
7158 "doctrine/annotations": "^1.2",
7159 "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
7160 "jakub-onderka/php-parallel-lint": "^1",
7161 "mockery/mockery": "^0.9.11 | ^1",
7162 "moontoast/math": "^1.1",
7163 "paragonie/random-lib": "^2",
7164 "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
7165 "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
7166 "squizlabs/php_codesniffer": "^3.5"
7167 },
7168 "suggest": {
7169 "ext-ctype": "Provides support for PHP Ctype functions",
7170 "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
7171 "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
7172 "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
7173 "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
7174 "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
7175 "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
7176 "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
7177 },
7178 "type": "library",
7179 "extra": {
7180 "branch-alias": {
7181 "dev-master": "3.x-dev"
7182 }
7183 },
7184 "autoload": {
7185 "psr-4": {
7186 "Ramsey\\Uuid\\": "src/"
7187 },
7188 "files": [
7189 "src/functions.php"
7190 ]
7191 },
7192 "notification-url": "https://packagist.org/downloads/",
7193 "license": [
7194 "MIT"
7195 ],
7196 "authors": [
7197 {
7198 "name": "Ben Ramsey",
7199 "email": "ben@benramsey.com",
7200 "homepage": "https://benramsey.com"
7201 },
7202 {
7203 "name": "Marijn Huizendveld",
7204 "email": "marijn.huizendveld@gmail.com"
7205 },
7206 {
7207 "name": "Thibaud Fabre",
7208 "email": "thibaud@aztech.io"
7209 }
7210 ],
7211 "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
7212 "homepage": "https://github.com/ramsey/uuid",
7213 "keywords": [
7214 "guid",
7215 "identifier",
7216 "uuid"
7217 ],
7218 "time": "2019-12-17T08:18:51+00:00"
7219 },
7220 {
7221 "name": "react/promise", 7483 "name": "react/promise",
7222 "version": "v2.7.1", 7484 "version": "v2.8.0",
7223 "source": { 7485 "source": {
7224 "type": "git", 7486 "type": "git",
7225 "url": "https://github.com/reactphp/promise.git", 7487 "url": "https://github.com/reactphp/promise.git",
7226 "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d" 7488 "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
7227 }, 7489 },
7228 "dist": { 7490 "dist": {
7229 "type": "zip", 7491 "type": "zip",
7230 "url": "https://api.github.com/repos/reactphp/promise/zipball/31ffa96f8d2ed0341a57848cbb84d88b89dd664d", 7492 "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
7231 "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d", 7493 "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
7232 "shasum": "" 7494 "shasum": ""
7233 }, 7495 },
7234 "require": { 7496 "require": {
7235 "php": ">=5.4.0" 7497 "php": ">=5.4.0"
7236 }, 7498 },
7237 "require-dev": { 7499 "require-dev": {
7238 "phpunit/phpunit": "~4.8" 7500 "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
7239 }, 7501 },
7240 "type": "library", 7502 "type": "library",
7241 "autoload": { 7503 "autoload": {
@@ -7261,55 +7523,49 @@
7261 "promise", 7523 "promise",
7262 "promises" 7524 "promises"
7263 ], 7525 ],
7264 "time": "2019-01-07T21:25:54+00:00" 7526 "time": "2020-05-12T15:16:56+00:00"
7265 }, 7527 },
7266 { 7528 {
7267 "name": "scheb/two-factor-bundle", 7529 "name": "scheb/two-factor-bundle",
7268 "version": "v4.16.0", 7530 "version": "v4.5.0",
7269 "source": { 7531 "source": {
7270 "type": "git", 7532 "type": "git",
7271 "url": "https://github.com/scheb/two-factor-bundle.git", 7533 "url": "https://github.com/scheb/two-factor-bundle.git",
7272 "reference": "44ae7d1394296ed54aa621dd96516786ade2eeed" 7534 "reference": "8dd92c33aeff4a5274e782629a0c1df4bbf77db2"
7273 }, 7535 },
7274 "dist": { 7536 "dist": {
7275 "type": "zip", 7537 "type": "zip",
7276 "url": "https://api.github.com/repos/scheb/two-factor-bundle/zipball/44ae7d1394296ed54aa621dd96516786ade2eeed", 7538 "url": "https://api.github.com/repos/scheb/two-factor-bundle/zipball/8dd92c33aeff4a5274e782629a0c1df4bbf77db2",
7277 "reference": "44ae7d1394296ed54aa621dd96516786ade2eeed", 7539 "reference": "8dd92c33aeff4a5274e782629a0c1df4bbf77db2",
7278 "shasum": "" 7540 "shasum": ""
7279 }, 7541 },
7280 "require": { 7542 "require": {
7281 "lcobucci/jwt": "^3.2", 7543 "lcobucci/jwt": "^3.2",
7282 "paragonie/constant_time_encoding": "^2.2", 7544 "paragonie/constant_time_encoding": "^2.2",
7283 "php": "^7.1.3", 7545 "php": "^7.1.3",
7284 "spomky-labs/otphp": "^9.1|^10.0", 7546 "spomky-labs/otphp": "^9.1",
7285 "symfony/config": "^3.4|^4.0|^5.0", 7547 "symfony/config": "^3.4|^4.0",
7286 "symfony/dependency-injection": "^3.4|^4.0|^5.0", 7548 "symfony/dependency-injection": "^3.4|^4.0",
7287 "symfony/event-dispatcher": "^3.4|^4.0|^5.0", 7549 "symfony/event-dispatcher": "^3.4|^4.0",
7288 "symfony/framework-bundle": "^3.4|^4.0|^5.0", 7550 "symfony/framework-bundle": "^3.4|^4.0",
7289 "symfony/http-foundation": "^3.4|^4.0|^5.0", 7551 "symfony/http-foundation": "^3.4|^4.0",
7290 "symfony/http-kernel": "^3.4|^4.0|^5.0", 7552 "symfony/http-kernel": "^3.4|^4.0",
7291 "symfony/property-access": "^3.4|^4.0|^5.0", 7553 "symfony/property-access": "^3.4|^4.0",
7292 "symfony/security-bundle": "^3.4|^4.0|^5.0", 7554 "symfony/security-bundle": "^3.4|^4.0",
7293 "symfony/twig-bundle": "^3.4|^4.0|^5.0" 7555 "symfony/twig-bundle": "^3.4|^4.0"
7294 }, 7556 },
7295 "require-dev": { 7557 "require-dev": {
7296 "doctrine/persistence": "^1.3", 7558 "doctrine/lexer": "^1.0.1",
7297 "escapestudios/symfony2-coding-standard": "^3.9", 7559 "doctrine/orm": "^2.6",
7298 "phpunit/phpunit": "^7.0|^8.0|^9.0", 7560 "phpunit/phpunit": "^7.0|^8.0",
7299 "squizlabs/php_codesniffer": "^3.5",
7300 "swiftmailer/swiftmailer": "^6.0", 7561 "swiftmailer/swiftmailer": "^6.0",
7301 "symfony/polyfill-php80": "^1.15", 7562 "symfony/yaml": "^3.4|^4.0"
7302 "symfony/yaml": "^3.4|^4.0|^5.0",
7303 "vimeo/psalm": "^3.11"
7304 }, 7563 },
7305 "type": "symfony-bundle", 7564 "type": "symfony-bundle",
7306 "autoload": { 7565 "autoload": {
7307 "psr-4": { 7566 "psr-4": {
7308 "Scheb\\TwoFactorBundle\\": "" 7567 "Scheb\\TwoFactorBundle\\": ""
7309 }, 7568 }
7310 "exclude-from-classmap": [
7311 "/Tests/"
7312 ]
7313 }, 7569 },
7314 "notification-url": "https://packagist.org/downloads/", 7570 "notification-url": "https://packagist.org/downloads/",
7315 "license": [ 7571 "license": [
@@ -7330,7 +7586,7 @@
7330 "two-factor", 7586 "two-factor",
7331 "two-step" 7587 "two-step"
7332 ], 7588 ],
7333 "time": "2020-05-08T19:32:30+00:00" 7589 "time": "2019-08-07T18:26:54+00:00"
7334 }, 7590 },
7335 { 7591 {
7336 "name": "sensio/distribution-bundle", 7592 "name": "sensio/distribution-bundle",
@@ -7540,22 +7796,23 @@
7540 }, 7796 },
7541 { 7797 {
7542 "name": "sentry/sentry", 7798 "name": "sentry/sentry",
7543 "version": "2.2.6", 7799 "version": "2.4.0",
7544 "source": { 7800 "source": {
7545 "type": "git", 7801 "type": "git",
7546 "url": "https://github.com/getsentry/sentry-php.git", 7802 "url": "https://github.com/getsentry/sentry-php.git",
7547 "reference": "c9b253229b95f8e5bbf6a3661a170a0be0f80563" 7803 "reference": "e44561875e0d724bac3d9cdb705bf58847acd425"
7548 }, 7804 },
7549 "dist": { 7805 "dist": {
7550 "type": "zip", 7806 "type": "zip",
7551 "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/c9b253229b95f8e5bbf6a3661a170a0be0f80563", 7807 "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/e44561875e0d724bac3d9cdb705bf58847acd425",
7552 "reference": "c9b253229b95f8e5bbf6a3661a170a0be0f80563", 7808 "reference": "e44561875e0d724bac3d9cdb705bf58847acd425",
7553 "shasum": "" 7809 "shasum": ""
7554 }, 7810 },
7555 "require": { 7811 "require": {
7556 "ext-json": "*", 7812 "ext-json": "*",
7557 "ext-mbstring": "*", 7813 "ext-mbstring": "*",
7558 "guzzlehttp/promises": "^1.3", 7814 "guzzlehttp/promises": "^1.3",
7815 "guzzlehttp/psr7": "^1.6",
7559 "jean85/pretty-package-versions": "^1.2", 7816 "jean85/pretty-package-versions": "^1.2",
7560 "php": "^7.1", 7817 "php": "^7.1",
7561 "php-http/async-client-implementation": "^1.0", 7818 "php-http/async-client-implementation": "^1.0",
@@ -7563,22 +7820,23 @@
7563 "php-http/discovery": "^1.6.1", 7820 "php-http/discovery": "^1.6.1",
7564 "php-http/httplug": "^1.1|^2.0", 7821 "php-http/httplug": "^1.1|^2.0",
7565 "php-http/message": "^1.5", 7822 "php-http/message": "^1.5",
7823 "psr/http-factory": "^1.0",
7566 "psr/http-message-implementation": "^1.0", 7824 "psr/http-message-implementation": "^1.0",
7567 "ramsey/uuid": "^3.3", 7825 "psr/log": "^1.0",
7568 "symfony/options-resolver": "^2.7|^3.0|^4.0|^5.0", 7826 "symfony/options-resolver": "^2.7|^3.0|^4.0|^5.0",
7569 "zendframework/zend-diactoros": "^1.7.1|^2.0" 7827 "symfony/polyfill-uuid": "^1.13.1"
7570 }, 7828 },
7571 "conflict": { 7829 "conflict": {
7572 "php-http/client-common": "1.8.0", 7830 "php-http/client-common": "1.8.0",
7573 "raven/raven": "*" 7831 "raven/raven": "*"
7574 }, 7832 },
7575 "require-dev": { 7833 "require-dev": {
7576 "friendsofphp/php-cs-fixer": "^2.13", 7834 "friendsofphp/php-cs-fixer": "^2.16",
7577 "monolog/monolog": "^1.3|^2.0", 7835 "monolog/monolog": "^1.3|^2.0",
7578 "php-http/mock-client": "^1.0", 7836 "php-http/mock-client": "^1.3",
7579 "phpstan/extension-installer": "^1.0", 7837 "phpstan/extension-installer": "^1.0",
7580 "phpstan/phpstan": "^0.11", 7838 "phpstan/phpstan": "^0.12",
7581 "phpstan/phpstan-phpunit": "^0.11", 7839 "phpstan/phpstan-phpunit": "^0.12",
7582 "phpunit/phpunit": "^7.5.18", 7840 "phpunit/phpunit": "^7.5.18",
7583 "symfony/phpunit-bridge": "^4.3|^5.0", 7841 "symfony/phpunit-bridge": "^4.3|^5.0",
7584 "vimeo/psalm": "^3.4" 7842 "vimeo/psalm": "^3.4"
@@ -7589,7 +7847,7 @@
7589 "type": "library", 7847 "type": "library",
7590 "extra": { 7848 "extra": {
7591 "branch-alias": { 7849 "branch-alias": {
7592 "dev-develop": "2.2-dev" 7850 "dev-master": "2.4-dev"
7593 } 7851 }
7594 }, 7852 },
7595 "autoload": { 7853 "autoload": {
@@ -7621,43 +7879,58 @@
7621 "logging", 7879 "logging",
7622 "sentry" 7880 "sentry"
7623 ], 7881 ],
7624 "time": "2019-12-18T08:56:34+00:00" 7882 "funding": [
7883 {
7884 "url": "https://sentry.io/",
7885 "type": "custom"
7886 },
7887 {
7888 "url": "https://sentry.io/pricing/",
7889 "type": "custom"
7890 }
7891 ],
7892 "time": "2020-05-20T20:49:38+00:00"
7625 }, 7893 },
7626 { 7894 {
7627 "name": "sentry/sentry-symfony", 7895 "name": "sentry/sentry-symfony",
7628 "version": "3.2.1", 7896 "version": "3.3.2",
7629 "source": { 7897 "source": {
7630 "type": "git", 7898 "type": "git",
7631 "url": "https://github.com/getsentry/sentry-symfony.git", 7899 "url": "https://github.com/getsentry/sentry-symfony.git",
7632 "reference": "620b90dc35c12ef96c6460df74e30441e359ce6d" 7900 "reference": "3a9c2669969604c362cc63ba8fa118d9a00ac711"
7633 }, 7901 },
7634 "dist": { 7902 "dist": {
7635 "type": "zip", 7903 "type": "zip",
7636 "url": "https://api.github.com/repos/getsentry/sentry-symfony/zipball/620b90dc35c12ef96c6460df74e30441e359ce6d", 7904 "url": "https://api.github.com/repos/getsentry/sentry-symfony/zipball/3a9c2669969604c362cc63ba8fa118d9a00ac711",
7637 "reference": "620b90dc35c12ef96c6460df74e30441e359ce6d", 7905 "reference": "3a9c2669969604c362cc63ba8fa118d9a00ac711",
7638 "shasum": "" 7906 "shasum": ""
7639 }, 7907 },
7640 "require": { 7908 "require": {
7641 "jean85/pretty-package-versions": "^1.0", 7909 "jean85/pretty-package-versions": "^1.0",
7910 "ocramius/package-versions": "^1.3.0",
7642 "php": "^7.1", 7911 "php": "^7.1",
7643 "sentry/sdk": "^2.0", 7912 "sentry/sdk": "^2.0",
7644 "symfony/config": "^2.8||^3.0||^4.0", 7913 "symfony/config": "^3.4||^4.0||^5.0",
7645 "symfony/console": "^2.8||^3.0||^4.0", 7914 "symfony/console": "^3.4||^4.0||^5.0",
7646 "symfony/dependency-injection": "^2.8||^3.0||^4.0", 7915 "symfony/dependency-injection": "^3.4||^4.0||^5.0",
7647 "symfony/event-dispatcher": "^2.8||^3.0||^4.0", 7916 "symfony/event-dispatcher": "^3.4||^4.0||^5.0",
7648 "symfony/http-kernel": "^2.8||^3.0||^4.0", 7917 "symfony/http-kernel": "^3.4||^4.0||^5.0",
7649 "symfony/security-core": "^2.8||^3.0||^4.0" 7918 "symfony/security-core": "^3.4||^4.0||^5.0"
7650 }, 7919 },
7651 "require-dev": { 7920 "require-dev": {
7652 "friendsofphp/php-cs-fixer": "^2.8", 7921 "friendsofphp/php-cs-fixer": "^2.8",
7653 "jangregor/phpstan-prophecy": "^0.3.0", 7922 "jangregor/phpstan-prophecy": "^0.3.0",
7654 "monolog/monolog": "^1.11||^2.0", 7923 "monolog/monolog": "^1.11||^2.0",
7655 "php-http/mock-client": "^1.0", 7924 "php-http/mock-client": "^1.0",
7656 "phpstan/phpstan": "^0.11",
7657 "phpstan/phpstan-phpunit": "^0.11", 7925 "phpstan/phpstan-phpunit": "^0.11",
7658 "phpunit/phpunit": "^7.5", 7926 "phpstan/phpstan-shim": "^0.11",
7659 "scrutinizer/ocular": "^1.4", 7927 "phpunit/phpunit": "^7.5||^8.5",
7660 "symfony/expression-language": "^2.8||^3.0||^4.0" 7928 "symfony/browser-kit": "^3.4||^4.0||^5.0",
7929 "symfony/expression-language": "^3.4||^4.0||^5.0",
7930 "symfony/framework-bundle": "^3.4||^4.0||^5.0",
7931 "symfony/monolog-bundle": "^3.4",
7932 "symfony/phpunit-bridge": "^5.0",
7933 "symfony/yaml": "^3.4||^4.0||^5.0"
7661 }, 7934 },
7662 "suggest": { 7935 "suggest": {
7663 "monolog/monolog": "Required to use the Monolog handler" 7936 "monolog/monolog": "Required to use the Monolog handler"
@@ -7698,20 +7971,20 @@
7698 "sentry", 7971 "sentry",
7699 "symfony" 7972 "symfony"
7700 ], 7973 ],
7701 "time": "2019-11-29T21:24:37+00:00" 7974 "time": "2020-01-16T08:45:03+00:00"
7702 }, 7975 },
7703 { 7976 {
7704 "name": "simplepie/simplepie", 7977 "name": "simplepie/simplepie",
7705 "version": "1.5.4", 7978 "version": "1.5.5",
7706 "source": { 7979 "source": {
7707 "type": "git", 7980 "type": "git",
7708 "url": "https://github.com/simplepie/simplepie.git", 7981 "url": "https://github.com/simplepie/simplepie.git",
7709 "reference": "f4c8246511a38fc9d99a59fb42f61eeeafb31663" 7982 "reference": "ae49e2201b6da9c808e5dac437aca356a11831b4"
7710 }, 7983 },
7711 "dist": { 7984 "dist": {
7712 "type": "zip", 7985 "type": "zip",
7713 "url": "https://api.github.com/repos/simplepie/simplepie/zipball/f4c8246511a38fc9d99a59fb42f61eeeafb31663", 7986 "url": "https://api.github.com/repos/simplepie/simplepie/zipball/ae49e2201b6da9c808e5dac437aca356a11831b4",
7714 "reference": "f4c8246511a38fc9d99a59fb42f61eeeafb31663", 7987 "reference": "ae49e2201b6da9c808e5dac437aca356a11831b4",
7715 "shasum": "" 7988 "shasum": ""
7716 }, 7989 },
7717 "require": { 7990 "require": {
@@ -7747,8 +8020,8 @@
7747 "role": "Creator, alumnus developer" 8020 "role": "Creator, alumnus developer"
7748 }, 8021 },
7749 { 8022 {
7750 "name": "Geoffrey Sneddon", 8023 "name": "Sam Sneddon",
7751 "homepage": "http://gsnedders.com/", 8024 "homepage": "https://gsnedders.com/",
7752 "role": "Alumnus developer" 8025 "role": "Alumnus developer"
7753 }, 8026 },
7754 { 8027 {
@@ -7765,7 +8038,7 @@
7765 "feeds", 8038 "feeds",
7766 "rss" 8039 "rss"
7767 ], 8040 ],
7768 "time": "2019-11-23T07:05:15+00:00" 8041 "time": "2020-05-01T12:23:14+00:00"
7769 }, 8042 },
7770 { 8043 {
7771 "name": "smalot/pdfparser", 8044 "name": "smalot/pdfparser",
@@ -8007,16 +8280,16 @@
8007 }, 8280 },
8008 { 8281 {
8009 "name": "symfony/http-client", 8282 "name": "symfony/http-client",
8010 "version": "v4.4.2", 8283 "version": "v4.4.8",
8011 "source": { 8284 "source": {
8012 "type": "git", 8285 "type": "git",
8013 "url": "https://github.com/symfony/http-client.git", 8286 "url": "https://github.com/symfony/http-client.git",
8014 "reference": "9ebfc77b5018a05226b38642def82746f3e2ce0f" 8287 "reference": "88d1745f4095727b8bf0574a0f414331f4ec229c"
8015 }, 8288 },
8016 "dist": { 8289 "dist": {
8017 "type": "zip", 8290 "type": "zip",
8018 "url": "https://api.github.com/repos/symfony/http-client/zipball/9ebfc77b5018a05226b38642def82746f3e2ce0f", 8291 "url": "https://api.github.com/repos/symfony/http-client/zipball/88d1745f4095727b8bf0574a0f414331f4ec229c",
8019 "reference": "9ebfc77b5018a05226b38642def82746f3e2ce0f", 8292 "reference": "88d1745f4095727b8bf0574a0f414331f4ec229c",
8020 "shasum": "" 8293 "shasum": ""
8021 }, 8294 },
8022 "require": { 8295 "require": {
@@ -8071,7 +8344,21 @@
8071 ], 8344 ],
8072 "description": "Symfony HttpClient component", 8345 "description": "Symfony HttpClient component",
8073 "homepage": "https://symfony.com", 8346 "homepage": "https://symfony.com",
8074 "time": "2019-12-19T15:57:49+00:00" 8347 "funding": [
8348 {
8349 "url": "https://symfony.com/sponsor",
8350 "type": "custom"
8351 },
8352 {
8353 "url": "https://github.com/fabpot",
8354 "type": "github"
8355 },
8356 {
8357 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8358 "type": "tidelift"
8359 }
8360 ],
8361 "time": "2020-04-12T16:14:02+00:00"
8075 }, 8362 },
8076 { 8363 {
8077 "name": "symfony/http-client-contracts", 8364 "name": "symfony/http-client-contracts",
@@ -8132,16 +8419,16 @@
8132 }, 8419 },
8133 { 8420 {
8134 "name": "symfony/mime", 8421 "name": "symfony/mime",
8135 "version": "v4.4.2", 8422 "version": "v4.4.8",
8136 "source": { 8423 "source": {
8137 "type": "git", 8424 "type": "git",
8138 "url": "https://github.com/symfony/mime.git", 8425 "url": "https://github.com/symfony/mime.git",
8139 "reference": "010cc488e56cafe5f7494dea70aea93100c234df" 8426 "reference": "7a583ffb6c7dd5aabb5db920817a3cc39261c517"
8140 }, 8427 },
8141 "dist": { 8428 "dist": {
8142 "type": "zip", 8429 "type": "zip",
8143 "url": "https://api.github.com/repos/symfony/mime/zipball/010cc488e56cafe5f7494dea70aea93100c234df", 8430 "url": "https://api.github.com/repos/symfony/mime/zipball/7a583ffb6c7dd5aabb5db920817a3cc39261c517",
8144 "reference": "010cc488e56cafe5f7494dea70aea93100c234df", 8431 "reference": "7a583ffb6c7dd5aabb5db920817a3cc39261c517",
8145 "shasum": "" 8432 "shasum": ""
8146 }, 8433 },
8147 "require": { 8434 "require": {
@@ -8190,7 +8477,21 @@
8190 "mime", 8477 "mime",
8191 "mime-type" 8478 "mime-type"
8192 ], 8479 ],
8193 "time": "2019-11-30T08:27:26+00:00" 8480 "funding": [
8481 {
8482 "url": "https://symfony.com/sponsor",
8483 "type": "custom"
8484 },
8485 {
8486 "url": "https://github.com/fabpot",
8487 "type": "github"
8488 },
8489 {
8490 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8491 "type": "tidelift"
8492 }
8493 ],
8494 "time": "2020-04-16T14:49:30+00:00"
8194 }, 8495 },
8195 { 8496 {
8196 "name": "symfony/monolog-bundle", 8497 "name": "symfony/monolog-bundle",
@@ -8257,16 +8558,16 @@
8257 }, 8558 },
8258 { 8559 {
8259 "name": "symfony/polyfill-apcu", 8560 "name": "symfony/polyfill-apcu",
8260 "version": "v1.15.0", 8561 "version": "v1.17.0",
8261 "source": { 8562 "source": {
8262 "type": "git", 8563 "type": "git",
8263 "url": "https://github.com/symfony/polyfill-apcu.git", 8564 "url": "https://github.com/symfony/polyfill-apcu.git",
8264 "reference": "d6b5c4ac62cd4ed622e583d027ae684de2d3c4bd" 8565 "reference": "9ec426b564916afb9bfd15f78708ec322eeb8538"
8265 }, 8566 },
8266 "dist": { 8567 "dist": {
8267 "type": "zip", 8568 "type": "zip",
8268 "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/d6b5c4ac62cd4ed622e583d027ae684de2d3c4bd", 8569 "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/9ec426b564916afb9bfd15f78708ec322eeb8538",
8269 "reference": "d6b5c4ac62cd4ed622e583d027ae684de2d3c4bd", 8570 "reference": "9ec426b564916afb9bfd15f78708ec322eeb8538",
8270 "shasum": "" 8571 "shasum": ""
8271 }, 8572 },
8272 "require": { 8573 "require": {
@@ -8275,7 +8576,7 @@
8275 "type": "library", 8576 "type": "library",
8276 "extra": { 8577 "extra": {
8277 "branch-alias": { 8578 "branch-alias": {
8278 "dev-master": "1.15-dev" 8579 "dev-master": "1.17-dev"
8279 } 8580 }
8280 }, 8581 },
8281 "autoload": { 8582 "autoload": {
@@ -8309,20 +8610,34 @@
8309 "portable", 8610 "portable",
8310 "shim" 8611 "shim"
8311 ], 8612 ],
8312 "time": "2020-02-27T09:26:54+00:00" 8613 "funding": [
8614 {
8615 "url": "https://symfony.com/sponsor",
8616 "type": "custom"
8617 },
8618 {
8619 "url": "https://github.com/fabpot",
8620 "type": "github"
8621 },
8622 {
8623 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8624 "type": "tidelift"
8625 }
8626 ],
8627 "time": "2020-05-12T16:14:59+00:00"
8313 }, 8628 },
8314 { 8629 {
8315 "name": "symfony/polyfill-ctype", 8630 "name": "symfony/polyfill-ctype",
8316 "version": "v1.15.0", 8631 "version": "v1.17.0",
8317 "source": { 8632 "source": {
8318 "type": "git", 8633 "type": "git",
8319 "url": "https://github.com/symfony/polyfill-ctype.git", 8634 "url": "https://github.com/symfony/polyfill-ctype.git",
8320 "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14" 8635 "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
8321 }, 8636 },
8322 "dist": { 8637 "dist": {
8323 "type": "zip", 8638 "type": "zip",
8324 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/4719fa9c18b0464d399f1a63bf624b42b6fa8d14", 8639 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
8325 "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14", 8640 "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
8326 "shasum": "" 8641 "shasum": ""
8327 }, 8642 },
8328 "require": { 8643 "require": {
@@ -8334,7 +8649,7 @@
8334 "type": "library", 8649 "type": "library",
8335 "extra": { 8650 "extra": {
8336 "branch-alias": { 8651 "branch-alias": {
8337 "dev-master": "1.15-dev" 8652 "dev-master": "1.17-dev"
8338 } 8653 }
8339 }, 8654 },
8340 "autoload": { 8655 "autoload": {
@@ -8367,20 +8682,34 @@
8367 "polyfill", 8682 "polyfill",
8368 "portable" 8683 "portable"
8369 ], 8684 ],
8370 "time": "2020-02-27T09:26:54+00:00" 8685 "funding": [
8686 {
8687 "url": "https://symfony.com/sponsor",
8688 "type": "custom"
8689 },
8690 {
8691 "url": "https://github.com/fabpot",
8692 "type": "github"
8693 },
8694 {
8695 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8696 "type": "tidelift"
8697 }
8698 ],
8699 "time": "2020-05-12T16:14:59+00:00"
8371 }, 8700 },
8372 { 8701 {
8373 "name": "symfony/polyfill-iconv", 8702 "name": "symfony/polyfill-iconv",
8374 "version": "v1.13.1", 8703 "version": "v1.17.0",
8375 "source": { 8704 "source": {
8376 "type": "git", 8705 "type": "git",
8377 "url": "https://github.com/symfony/polyfill-iconv.git", 8706 "url": "https://github.com/symfony/polyfill-iconv.git",
8378 "reference": "a019efccc03f1a335af6b4f20c30f5ea8060be36" 8707 "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
8379 }, 8708 },
8380 "dist": { 8709 "dist": {
8381 "type": "zip", 8710 "type": "zip",
8382 "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/a019efccc03f1a335af6b4f20c30f5ea8060be36", 8711 "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
8383 "reference": "a019efccc03f1a335af6b4f20c30f5ea8060be36", 8712 "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
8384 "shasum": "" 8713 "shasum": ""
8385 }, 8714 },
8386 "require": { 8715 "require": {
@@ -8392,7 +8721,7 @@
8392 "type": "library", 8721 "type": "library",
8393 "extra": { 8722 "extra": {
8394 "branch-alias": { 8723 "branch-alias": {
8395 "dev-master": "1.13-dev" 8724 "dev-master": "1.17-dev"
8396 } 8725 }
8397 }, 8726 },
8398 "autoload": { 8727 "autoload": {
@@ -8426,20 +8755,34 @@
8426 "portable", 8755 "portable",
8427 "shim" 8756 "shim"
8428 ], 8757 ],
8429 "time": "2019-11-27T13:56:44+00:00" 8758 "funding": [
8759 {
8760 "url": "https://symfony.com/sponsor",
8761 "type": "custom"
8762 },
8763 {
8764 "url": "https://github.com/fabpot",
8765 "type": "github"
8766 },
8767 {
8768 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8769 "type": "tidelift"
8770 }
8771 ],
8772 "time": "2020-05-12T16:47:27+00:00"
8430 }, 8773 },
8431 { 8774 {
8432 "name": "symfony/polyfill-intl-icu", 8775 "name": "symfony/polyfill-intl-icu",
8433 "version": "v1.15.0", 8776 "version": "v1.17.0",
8434 "source": { 8777 "source": {
8435 "type": "git", 8778 "type": "git",
8436 "url": "https://github.com/symfony/polyfill-intl-icu.git", 8779 "url": "https://github.com/symfony/polyfill-intl-icu.git",
8437 "reference": "9c281272735eb66476e0fa7381e03fb0d4b60197" 8780 "reference": "4ef3923e4a86e1b6ef72d42be59dbf7d33a685e3"
8438 }, 8781 },
8439 "dist": { 8782 "dist": {
8440 "type": "zip", 8783 "type": "zip",
8441 "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/9c281272735eb66476e0fa7381e03fb0d4b60197", 8784 "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/4ef3923e4a86e1b6ef72d42be59dbf7d33a685e3",
8442 "reference": "9c281272735eb66476e0fa7381e03fb0d4b60197", 8785 "reference": "4ef3923e4a86e1b6ef72d42be59dbf7d33a685e3",
8443 "shasum": "" 8786 "shasum": ""
8444 }, 8787 },
8445 "require": { 8788 "require": {
@@ -8452,7 +8795,7 @@
8452 "type": "library", 8795 "type": "library",
8453 "extra": { 8796 "extra": {
8454 "branch-alias": { 8797 "branch-alias": {
8455 "dev-master": "1.15-dev" 8798 "dev-master": "1.17-dev"
8456 } 8799 }
8457 }, 8800 },
8458 "autoload": { 8801 "autoload": {
@@ -8484,26 +8827,40 @@
8484 "portable", 8827 "portable",
8485 "shim" 8828 "shim"
8486 ], 8829 ],
8487 "time": "2020-02-27T09:26:54+00:00" 8830 "funding": [
8831 {
8832 "url": "https://symfony.com/sponsor",
8833 "type": "custom"
8834 },
8835 {
8836 "url": "https://github.com/fabpot",
8837 "type": "github"
8838 },
8839 {
8840 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8841 "type": "tidelift"
8842 }
8843 ],
8844 "time": "2020-05-12T16:14:59+00:00"
8488 }, 8845 },
8489 { 8846 {
8490 "name": "symfony/polyfill-intl-idn", 8847 "name": "symfony/polyfill-intl-idn",
8491 "version": "v1.13.1", 8848 "version": "v1.17.0",
8492 "source": { 8849 "source": {
8493 "type": "git", 8850 "type": "git",
8494 "url": "https://github.com/symfony/polyfill-intl-idn.git", 8851 "url": "https://github.com/symfony/polyfill-intl-idn.git",
8495 "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46" 8852 "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
8496 }, 8853 },
8497 "dist": { 8854 "dist": {
8498 "type": "zip", 8855 "type": "zip",
8499 "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6f9c239e61e1b0c9229a28ff89a812dc449c3d46", 8856 "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
8500 "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46", 8857 "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
8501 "shasum": "" 8858 "shasum": ""
8502 }, 8859 },
8503 "require": { 8860 "require": {
8504 "php": ">=5.3.3", 8861 "php": ">=5.3.3",
8505 "symfony/polyfill-mbstring": "^1.3", 8862 "symfony/polyfill-mbstring": "^1.3",
8506 "symfony/polyfill-php72": "^1.9" 8863 "symfony/polyfill-php72": "^1.10"
8507 }, 8864 },
8508 "suggest": { 8865 "suggest": {
8509 "ext-intl": "For best performance" 8866 "ext-intl": "For best performance"
@@ -8511,7 +8868,7 @@
8511 "type": "library", 8868 "type": "library",
8512 "extra": { 8869 "extra": {
8513 "branch-alias": { 8870 "branch-alias": {
8514 "dev-master": "1.13-dev" 8871 "dev-master": "1.17-dev"
8515 } 8872 }
8516 }, 8873 },
8517 "autoload": { 8874 "autoload": {
@@ -8546,20 +8903,34 @@
8546 "portable", 8903 "portable",
8547 "shim" 8904 "shim"
8548 ], 8905 ],
8549 "time": "2019-11-27T13:56:44+00:00" 8906 "funding": [
8907 {
8908 "url": "https://symfony.com/sponsor",
8909 "type": "custom"
8910 },
8911 {
8912 "url": "https://github.com/fabpot",
8913 "type": "github"
8914 },
8915 {
8916 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8917 "type": "tidelift"
8918 }
8919 ],
8920 "time": "2020-05-12T16:47:27+00:00"
8550 }, 8921 },
8551 { 8922 {
8552 "name": "symfony/polyfill-mbstring", 8923 "name": "symfony/polyfill-mbstring",
8553 "version": "v1.15.0", 8924 "version": "v1.17.0",
8554 "source": { 8925 "source": {
8555 "type": "git", 8926 "type": "git",
8556 "url": "https://github.com/symfony/polyfill-mbstring.git", 8927 "url": "https://github.com/symfony/polyfill-mbstring.git",
8557 "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac" 8928 "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
8558 }, 8929 },
8559 "dist": { 8930 "dist": {
8560 "type": "zip", 8931 "type": "zip",
8561 "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/81ffd3a9c6d707be22e3012b827de1c9775fc5ac", 8932 "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
8562 "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac", 8933 "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
8563 "shasum": "" 8934 "shasum": ""
8564 }, 8935 },
8565 "require": { 8936 "require": {
@@ -8571,7 +8942,7 @@
8571 "type": "library", 8942 "type": "library",
8572 "extra": { 8943 "extra": {
8573 "branch-alias": { 8944 "branch-alias": {
8574 "dev-master": "1.15-dev" 8945 "dev-master": "1.17-dev"
8575 } 8946 }
8576 }, 8947 },
8577 "autoload": { 8948 "autoload": {
@@ -8605,20 +8976,34 @@
8605 "portable", 8976 "portable",
8606 "shim" 8977 "shim"
8607 ], 8978 ],
8608 "time": "2020-03-09T19:04:49+00:00" 8979 "funding": [
8980 {
8981 "url": "https://symfony.com/sponsor",
8982 "type": "custom"
8983 },
8984 {
8985 "url": "https://github.com/fabpot",
8986 "type": "github"
8987 },
8988 {
8989 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8990 "type": "tidelift"
8991 }
8992 ],
8993 "time": "2020-05-12T16:47:27+00:00"
8609 }, 8994 },
8610 { 8995 {
8611 "name": "symfony/polyfill-php56", 8996 "name": "symfony/polyfill-php56",
8612 "version": "v1.15.0", 8997 "version": "v1.17.0",
8613 "source": { 8998 "source": {
8614 "type": "git", 8999 "type": "git",
8615 "url": "https://github.com/symfony/polyfill-php56.git", 9000 "url": "https://github.com/symfony/polyfill-php56.git",
8616 "reference": "d51ec491c8ddceae7dca8dd6c7e30428f543f37d" 9001 "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
8617 }, 9002 },
8618 "dist": { 9003 "dist": {
8619 "type": "zip", 9004 "type": "zip",
8620 "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/d51ec491c8ddceae7dca8dd6c7e30428f543f37d", 9005 "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
8621 "reference": "d51ec491c8ddceae7dca8dd6c7e30428f543f37d", 9006 "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
8622 "shasum": "" 9007 "shasum": ""
8623 }, 9008 },
8624 "require": { 9009 "require": {
@@ -8628,7 +9013,7 @@
8628 "type": "library", 9013 "type": "library",
8629 "extra": { 9014 "extra": {
8630 "branch-alias": { 9015 "branch-alias": {
8631 "dev-master": "1.15-dev" 9016 "dev-master": "1.17-dev"
8632 } 9017 }
8633 }, 9018 },
8634 "autoload": { 9019 "autoload": {
@@ -8661,20 +9046,34 @@
8661 "portable", 9046 "portable",
8662 "shim" 9047 "shim"
8663 ], 9048 ],
8664 "time": "2020-03-09T19:04:49+00:00" 9049 "funding": [
9050 {
9051 "url": "https://symfony.com/sponsor",
9052 "type": "custom"
9053 },
9054 {
9055 "url": "https://github.com/fabpot",
9056 "type": "github"
9057 },
9058 {
9059 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9060 "type": "tidelift"
9061 }
9062 ],
9063 "time": "2020-05-12T16:47:27+00:00"
8665 }, 9064 },
8666 { 9065 {
8667 "name": "symfony/polyfill-php70", 9066 "name": "symfony/polyfill-php70",
8668 "version": "v1.15.0", 9067 "version": "v1.17.0",
8669 "source": { 9068 "source": {
8670 "type": "git", 9069 "type": "git",
8671 "url": "https://github.com/symfony/polyfill-php70.git", 9070 "url": "https://github.com/symfony/polyfill-php70.git",
8672 "reference": "2a18e37a489803559284416df58c71ccebe50bf0" 9071 "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
8673 }, 9072 },
8674 "dist": { 9073 "dist": {
8675 "type": "zip", 9074 "type": "zip",
8676 "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/2a18e37a489803559284416df58c71ccebe50bf0", 9075 "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
8677 "reference": "2a18e37a489803559284416df58c71ccebe50bf0", 9076 "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
8678 "shasum": "" 9077 "shasum": ""
8679 }, 9078 },
8680 "require": { 9079 "require": {
@@ -8684,7 +9083,7 @@
8684 "type": "library", 9083 "type": "library",
8685 "extra": { 9084 "extra": {
8686 "branch-alias": { 9085 "branch-alias": {
8687 "dev-master": "1.15-dev" 9086 "dev-master": "1.17-dev"
8688 } 9087 }
8689 }, 9088 },
8690 "autoload": { 9089 "autoload": {
@@ -8720,20 +9119,34 @@
8720 "portable", 9119 "portable",
8721 "shim" 9120 "shim"
8722 ], 9121 ],
8723 "time": "2020-02-27T09:26:54+00:00" 9122 "funding": [
9123 {
9124 "url": "https://symfony.com/sponsor",
9125 "type": "custom"
9126 },
9127 {
9128 "url": "https://github.com/fabpot",
9129 "type": "github"
9130 },
9131 {
9132 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9133 "type": "tidelift"
9134 }
9135 ],
9136 "time": "2020-05-12T16:47:27+00:00"
8724 }, 9137 },
8725 { 9138 {
8726 "name": "symfony/polyfill-php72", 9139 "name": "symfony/polyfill-php72",
8727 "version": "v1.15.0", 9140 "version": "v1.17.0",
8728 "source": { 9141 "source": {
8729 "type": "git", 9142 "type": "git",
8730 "url": "https://github.com/symfony/polyfill-php72.git", 9143 "url": "https://github.com/symfony/polyfill-php72.git",
8731 "reference": "37b0976c78b94856543260ce09b460a7bc852747" 9144 "reference": "f048e612a3905f34931127360bdd2def19a5e582"
8732 }, 9145 },
8733 "dist": { 9146 "dist": {
8734 "type": "zip", 9147 "type": "zip",
8735 "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/37b0976c78b94856543260ce09b460a7bc852747", 9148 "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
8736 "reference": "37b0976c78b94856543260ce09b460a7bc852747", 9149 "reference": "f048e612a3905f34931127360bdd2def19a5e582",
8737 "shasum": "" 9150 "shasum": ""
8738 }, 9151 },
8739 "require": { 9152 "require": {
@@ -8742,7 +9155,7 @@
8742 "type": "library", 9155 "type": "library",
8743 "extra": { 9156 "extra": {
8744 "branch-alias": { 9157 "branch-alias": {
8745 "dev-master": "1.15-dev" 9158 "dev-master": "1.17-dev"
8746 } 9159 }
8747 }, 9160 },
8748 "autoload": { 9161 "autoload": {
@@ -8775,20 +9188,34 @@
8775 "portable", 9188 "portable",
8776 "shim" 9189 "shim"
8777 ], 9190 ],
8778 "time": "2020-02-27T09:26:54+00:00" 9191 "funding": [
9192 {
9193 "url": "https://symfony.com/sponsor",
9194 "type": "custom"
9195 },
9196 {
9197 "url": "https://github.com/fabpot",
9198 "type": "github"
9199 },
9200 {
9201 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9202 "type": "tidelift"
9203 }
9204 ],
9205 "time": "2020-05-12T16:47:27+00:00"
8779 }, 9206 },
8780 { 9207 {
8781 "name": "symfony/polyfill-php73", 9208 "name": "symfony/polyfill-php73",
8782 "version": "v1.13.1", 9209 "version": "v1.17.0",
8783 "source": { 9210 "source": {
8784 "type": "git", 9211 "type": "git",
8785 "url": "https://github.com/symfony/polyfill-php73.git", 9212 "url": "https://github.com/symfony/polyfill-php73.git",
8786 "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f" 9213 "reference": "a760d8964ff79ab9bf057613a5808284ec852ccc"
8787 }, 9214 },
8788 "dist": { 9215 "dist": {
8789 "type": "zip", 9216 "type": "zip",
8790 "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/4b0e2222c55a25b4541305a053013d5647d3a25f", 9217 "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a760d8964ff79ab9bf057613a5808284ec852ccc",
8791 "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f", 9218 "reference": "a760d8964ff79ab9bf057613a5808284ec852ccc",
8792 "shasum": "" 9219 "shasum": ""
8793 }, 9220 },
8794 "require": { 9221 "require": {
@@ -8797,7 +9224,7 @@
8797 "type": "library", 9224 "type": "library",
8798 "extra": { 9225 "extra": {
8799 "branch-alias": { 9226 "branch-alias": {
8800 "dev-master": "1.13-dev" 9227 "dev-master": "1.17-dev"
8801 } 9228 }
8802 }, 9229 },
8803 "autoload": { 9230 "autoload": {
@@ -8833,20 +9260,34 @@
8833 "portable", 9260 "portable",
8834 "shim" 9261 "shim"
8835 ], 9262 ],
8836 "time": "2019-11-27T16:25:15+00:00" 9263 "funding": [
9264 {
9265 "url": "https://symfony.com/sponsor",
9266 "type": "custom"
9267 },
9268 {
9269 "url": "https://github.com/fabpot",
9270 "type": "github"
9271 },
9272 {
9273 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9274 "type": "tidelift"
9275 }
9276 ],
9277 "time": "2020-05-12T16:47:27+00:00"
8837 }, 9278 },
8838 { 9279 {
8839 "name": "symfony/polyfill-util", 9280 "name": "symfony/polyfill-util",
8840 "version": "v1.15.0", 9281 "version": "v1.17.0",
8841 "source": { 9282 "source": {
8842 "type": "git", 9283 "type": "git",
8843 "url": "https://github.com/symfony/polyfill-util.git", 9284 "url": "https://github.com/symfony/polyfill-util.git",
8844 "reference": "d8e76c104127675d0ea3df3be0f2ae24a8619027" 9285 "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
8845 }, 9286 },
8846 "dist": { 9287 "dist": {
8847 "type": "zip", 9288 "type": "zip",
8848 "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/d8e76c104127675d0ea3df3be0f2ae24a8619027", 9289 "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
8849 "reference": "d8e76c104127675d0ea3df3be0f2ae24a8619027", 9290 "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
8850 "shasum": "" 9291 "shasum": ""
8851 }, 9292 },
8852 "require": { 9293 "require": {
@@ -8855,7 +9296,7 @@
8855 "type": "library", 9296 "type": "library",
8856 "extra": { 9297 "extra": {
8857 "branch-alias": { 9298 "branch-alias": {
8858 "dev-master": "1.15-dev" 9299 "dev-master": "1.17-dev"
8859 } 9300 }
8860 }, 9301 },
8861 "autoload": { 9302 "autoload": {
@@ -8885,7 +9326,94 @@
8885 "polyfill", 9326 "polyfill",
8886 "shim" 9327 "shim"
8887 ], 9328 ],
8888 "time": "2020-03-02T11:55:35+00:00" 9329 "funding": [
9330 {
9331 "url": "https://symfony.com/sponsor",
9332 "type": "custom"
9333 },
9334 {
9335 "url": "https://github.com/fabpot",
9336 "type": "github"
9337 },
9338 {
9339 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9340 "type": "tidelift"
9341 }
9342 ],
9343 "time": "2020-05-12T16:14:59+00:00"
9344 },
9345 {
9346 "name": "symfony/polyfill-uuid",
9347 "version": "v1.17.0",
9348 "source": {
9349 "type": "git",
9350 "url": "https://github.com/symfony/polyfill-uuid.git",
9351 "reference": "6dbf0269e8aeab8253a5059c51c1760fb4034e87"
9352 },
9353 "dist": {
9354 "type": "zip",
9355 "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/6dbf0269e8aeab8253a5059c51c1760fb4034e87",
9356 "reference": "6dbf0269e8aeab8253a5059c51c1760fb4034e87",
9357 "shasum": ""
9358 },
9359 "require": {
9360 "paragonie/random_compat": "~1.0|~2.0|~9.99",
9361 "php": ">=5.3.3"
9362 },
9363 "suggest": {
9364 "ext-uuid": "For best performance"
9365 },
9366 "type": "library",
9367 "extra": {
9368 "branch-alias": {
9369 "dev-master": "1.17-dev"
9370 }
9371 },
9372 "autoload": {
9373 "psr-4": {
9374 "Symfony\\Polyfill\\Uuid\\": ""
9375 },
9376 "files": [
9377 "bootstrap.php"
9378 ]
9379 },
9380 "notification-url": "https://packagist.org/downloads/",
9381 "license": [
9382 "MIT"
9383 ],
9384 "authors": [
9385 {
9386 "name": "Grégoire Pineau",
9387 "email": "lyrixx@lyrixx.info"
9388 },
9389 {
9390 "name": "Symfony Community",
9391 "homepage": "https://symfony.com/contributors"
9392 }
9393 ],
9394 "description": "Symfony polyfill for uuid functions",
9395 "homepage": "https://symfony.com",
9396 "keywords": [
9397 "compatibility",
9398 "polyfill",
9399 "portable",
9400 "uuid"
9401 ],
9402 "funding": [
9403 {
9404 "url": "https://symfony.com/sponsor",
9405 "type": "custom"
9406 },
9407 {
9408 "url": "https://github.com/fabpot",
9409 "type": "github"
9410 },
9411 {
9412 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9413 "type": "tidelift"
9414 }
9415 ],
9416 "time": "2020-05-12T16:47:27+00:00"
8889 }, 9417 },
8890 { 9418 {
8891 "name": "symfony/service-contracts", 9419 "name": "symfony/service-contracts",
@@ -9164,6 +9692,20 @@
9164 "keywords": [ 9692 "keywords": [
9165 "framework" 9693 "framework"
9166 ], 9694 ],
9695 "funding": [
9696 {
9697 "url": "https://symfony.com/sponsor",
9698 "type": "custom"
9699 },
9700 {
9701 "url": "https://github.com/fabpot",
9702 "type": "github"
9703 },
9704 {
9705 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9706 "type": "tidelift"
9707 }
9708 ],
9167 "time": "2020-04-28T17:41:57+00:00" 9709 "time": "2020-04-28T17:41:57+00:00"
9168 }, 9710 },
9169 { 9711 {
@@ -9774,187 +10316,6 @@
9774 "negotiation" 10316 "negotiation"
9775 ], 10317 ],
9776 "time": "2017-05-14T17:21:12+00:00" 10318 "time": "2017-05-14T17:21:12+00:00"
9777 },
9778 {
9779 "name": "zendframework/zend-code",
9780 "version": "3.4.1",
9781 "source": {
9782 "type": "git",
9783 "url": "https://github.com/zendframework/zend-code.git",
9784 "reference": "268040548f92c2bfcba164421c1add2ba43abaaa"
9785 },
9786 "dist": {
9787 "type": "zip",
9788 "url": "https://api.github.com/repos/zendframework/zend-code/zipball/268040548f92c2bfcba164421c1add2ba43abaaa",
9789 "reference": "268040548f92c2bfcba164421c1add2ba43abaaa",
9790 "shasum": ""
9791 },
9792 "require": {
9793 "php": "^7.1",
9794 "zendframework/zend-eventmanager": "^2.6 || ^3.0"
9795 },
9796 "conflict": {
9797 "phpspec/prophecy": "<1.9.0"
9798 },
9799 "require-dev": {
9800 "doctrine/annotations": "^1.7",
9801 "ext-phar": "*",
9802 "phpunit/phpunit": "^7.5.16 || ^8.4",
9803 "zendframework/zend-coding-standard": "^1.0",
9804 "zendframework/zend-stdlib": "^2.7 || ^3.0"
9805 },
9806 "suggest": {
9807 "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
9808 "zendframework/zend-stdlib": "Zend\\Stdlib component"
9809 },
9810 "type": "library",
9811 "extra": {
9812 "branch-alias": {
9813 "dev-master": "3.4.x-dev",
9814 "dev-develop": "3.5.x-dev",
9815 "dev-dev-4.0": "4.0.x-dev"
9816 }
9817 },
9818 "autoload": {
9819 "psr-4": {
9820 "Zend\\Code\\": "src/"
9821 }
9822 },
9823 "notification-url": "https://packagist.org/downloads/",
9824 "license": [
9825 "BSD-3-Clause"
9826 ],
9827 "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
9828 "keywords": [
9829 "ZendFramework",
9830 "code",
9831 "zf"
9832 ],
9833 "abandoned": "laminas/laminas-code",
9834 "time": "2019-12-10T19:21:15+00:00"
9835 },
9836 {
9837 "name": "zendframework/zend-diactoros",
9838 "version": "2.2.1",
9839 "source": {
9840 "type": "git",
9841 "url": "https://github.com/zendframework/zend-diactoros.git",
9842 "reference": "de5847b068362a88684a55b0dbb40d85986cfa52"
9843 },
9844 "dist": {
9845 "type": "zip",
9846 "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/de5847b068362a88684a55b0dbb40d85986cfa52",
9847 "reference": "de5847b068362a88684a55b0dbb40d85986cfa52",
9848 "shasum": ""
9849 },
9850 "require": {
9851 "php": "^7.1",
9852 "psr/http-factory": "^1.0",
9853 "psr/http-message": "^1.0"
9854 },
9855 "provide": {
9856 "psr/http-factory-implementation": "1.0",
9857 "psr/http-message-implementation": "1.0"
9858 },
9859 "require-dev": {
9860 "ext-curl": "*",
9861 "ext-dom": "*",
9862 "ext-libxml": "*",
9863 "http-interop/http-factory-tests": "^0.5.0",
9864 "php-http/psr7-integration-tests": "dev-master",
9865 "phpunit/phpunit": "^7.0.2",
9866 "zendframework/zend-coding-standard": "~1.0.0"
9867 },
9868 "type": "library",
9869 "extra": {
9870 "branch-alias": {
9871 "dev-master": "2.1.x-dev",
9872 "dev-develop": "2.2.x-dev",
9873 "dev-release-1.8": "1.8.x-dev"
9874 }
9875 },
9876 "autoload": {
9877 "files": [
9878 "src/functions/create_uploaded_file.php",
9879 "src/functions/marshal_headers_from_sapi.php",
9880 "src/functions/marshal_method_from_sapi.php",
9881 "src/functions/marshal_protocol_version_from_sapi.php",
9882 "src/functions/marshal_uri_from_sapi.php",
9883 "src/functions/normalize_server.php",
9884 "src/functions/normalize_uploaded_files.php",
9885 "src/functions/parse_cookie_header.php"
9886 ],
9887 "psr-4": {
9888 "Zend\\Diactoros\\": "src/"
9889 }
9890 },
9891 "notification-url": "https://packagist.org/downloads/",
9892 "license": [
9893 "BSD-3-Clause"
9894 ],
9895 "description": "PSR HTTP Message implementations",
9896 "keywords": [
9897 "http",
9898 "psr",
9899 "psr-7"
9900 ],
9901 "abandoned": "laminas/laminas-diactoros",
9902 "time": "2019-11-13T19:16:13+00:00"
9903 },
9904 {
9905 "name": "zendframework/zend-eventmanager",
9906 "version": "3.2.1",
9907 "source": {
9908 "type": "git",
9909 "url": "https://github.com/zendframework/zend-eventmanager.git",
9910 "reference": "a5e2583a211f73604691586b8406ff7296a946dd"
9911 },
9912 "dist": {
9913 "type": "zip",
9914 "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd",
9915 "reference": "a5e2583a211f73604691586b8406ff7296a946dd",
9916 "shasum": ""
9917 },
9918 "require": {
9919 "php": "^5.6 || ^7.0"
9920 },
9921 "require-dev": {
9922 "athletic/athletic": "^0.1",
9923 "container-interop/container-interop": "^1.1.0",
9924 "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
9925 "zendframework/zend-coding-standard": "~1.0.0",
9926 "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
9927 },
9928 "suggest": {
9929 "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
9930 "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
9931 },
9932 "type": "library",
9933 "extra": {
9934 "branch-alias": {
9935 "dev-master": "3.2-dev",
9936 "dev-develop": "3.3-dev"
9937 }
9938 },
9939 "autoload": {
9940 "psr-4": {
9941 "Zend\\EventManager\\": "src/"
9942 }
9943 },
9944 "notification-url": "https://packagist.org/downloads/",
9945 "license": [
9946 "BSD-3-Clause"
9947 ],
9948 "description": "Trigger and listen to events within a PHP application",
9949 "homepage": "https://github.com/zendframework/zend-eventmanager",
9950 "keywords": [
9951 "event",
9952 "eventmanager",
9953 "events",
9954 "zf2"
9955 ],
9956 "abandoned": "laminas/laminas-eventmanager",
9957 "time": "2018-04-25T15:33:34+00:00"
9958 } 10319 }
9959 ], 10320 ],
9960 "packages-dev": [ 10321 "packages-dev": [
@@ -10061,6 +10422,12 @@
10061 "Xdebug", 10422 "Xdebug",
10062 "performance" 10423 "performance"
10063 ], 10424 ],
10425 "funding": [
10426 {
10427 "url": "https://packagist.com",
10428 "type": "custom"
10429 }
10430 ],
10064 "time": "2020-03-01T12:26:26+00:00" 10431 "time": "2020-03-01T12:26:26+00:00"
10065 }, 10432 },
10066 { 10433 {
@@ -10250,6 +10617,20 @@
10250 "Fixture", 10617 "Fixture",
10251 "persistence" 10618 "persistence"
10252 ], 10619 ],
10620 "funding": [
10621 {
10622 "url": "https://www.doctrine-project.org/sponsorship.html",
10623 "type": "custom"
10624 },
10625 {
10626 "url": "https://www.patreon.com/phpdoctrine",
10627 "type": "patreon"
10628 },
10629 {
10630 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-fixtures-bundle",
10631 "type": "tidelift"
10632 }
10633 ],
10253 "time": "2020-04-02T16:40:37+00:00" 10634 "time": "2020-04-02T16:40:37+00:00"
10254 }, 10635 },
10255 { 10636 {
@@ -10341,6 +10722,12 @@
10341 } 10722 }
10342 ], 10723 ],
10343 "description": "A tool to automatically fix PHP code style", 10724 "description": "A tool to automatically fix PHP code style",
10725 "funding": [
10726 {
10727 "url": "https://github.com/keradus",
10728 "type": "github"
10729 }
10730 ],
10344 "time": "2020-04-15T18:51:10+00:00" 10731 "time": "2020-04-15T18:51:10+00:00"
10345 }, 10732 },
10346 { 10733 {
@@ -10466,25 +10853,25 @@
10466 }, 10853 },
10467 { 10854 {
10468 "name": "nette/di", 10855 "name": "nette/di",
10469 "version": "v3.0.2", 10856 "version": "v3.0.4",
10470 "source": { 10857 "source": {
10471 "type": "git", 10858 "type": "git",
10472 "url": "https://github.com/nette/di.git", 10859 "url": "https://github.com/nette/di.git",
10473 "reference": "7ae47daa94b8dafbd0e8b6164e22e2d18d3e73ac" 10860 "reference": "34d3e47ebe96229b7671664893a3b1128c102213"
10474 }, 10861 },
10475 "dist": { 10862 "dist": {
10476 "type": "zip", 10863 "type": "zip",
10477 "url": "https://api.github.com/repos/nette/di/zipball/7ae47daa94b8dafbd0e8b6164e22e2d18d3e73ac", 10864 "url": "https://api.github.com/repos/nette/di/zipball/34d3e47ebe96229b7671664893a3b1128c102213",
10478 "reference": "7ae47daa94b8dafbd0e8b6164e22e2d18d3e73ac", 10865 "reference": "34d3e47ebe96229b7671664893a3b1128c102213",
10479 "shasum": "" 10866 "shasum": ""
10480 }, 10867 },
10481 "require": { 10868 "require": {
10482 "ext-tokenizer": "*", 10869 "ext-tokenizer": "*",
10483 "nette/neon": "^3.0", 10870 "nette/neon": "^3.0",
10484 "nette/php-generator": "^3.3", 10871 "nette/php-generator": "^3.3.3",
10485 "nette/robot-loader": "^3.2", 10872 "nette/robot-loader": "^3.2",
10486 "nette/schema": "^1.0", 10873 "nette/schema": "^1.0",
10487 "nette/utils": "^3.0", 10874 "nette/utils": "^3.1",
10488 "php": ">=7.1" 10875 "php": ">=7.1"
10489 }, 10876 },
10490 "conflict": { 10877 "conflict": {
@@ -10504,16 +10891,13 @@
10504 "autoload": { 10891 "autoload": {
10505 "classmap": [ 10892 "classmap": [
10506 "src/" 10893 "src/"
10507 ],
10508 "files": [
10509 "src/compatibility.php"
10510 ] 10894 ]
10511 }, 10895 },
10512 "notification-url": "https://packagist.org/downloads/", 10896 "notification-url": "https://packagist.org/downloads/",
10513 "license": [ 10897 "license": [
10514 "BSD-3-Clause", 10898 "BSD-3-Clause",
10515 "GPL-2.0", 10899 "GPL-2.0-only",
10516 "GPL-3.0" 10900 "GPL-3.0-only"
10517 ], 10901 ],
10518 "authors": [ 10902 "authors": [
10519 { 10903 {
@@ -10536,24 +10920,24 @@
10536 "nette", 10920 "nette",
10537 "static" 10921 "static"
10538 ], 10922 ],
10539 "time": "2019-12-17T04:03:21+00:00" 10923 "time": "2020-05-14T10:29:59+00:00"
10540 }, 10924 },
10541 { 10925 {
10542 "name": "nette/finder", 10926 "name": "nette/finder",
10543 "version": "v2.5.1", 10927 "version": "v2.5.2",
10544 "source": { 10928 "source": {
10545 "type": "git", 10929 "type": "git",
10546 "url": "https://github.com/nette/finder.git", 10930 "url": "https://github.com/nette/finder.git",
10547 "reference": "14164e1ddd69e9c5f627ff82a10874b3f5bba5fe" 10931 "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50"
10548 }, 10932 },
10549 "dist": { 10933 "dist": {
10550 "type": "zip", 10934 "type": "zip",
10551 "url": "https://api.github.com/repos/nette/finder/zipball/14164e1ddd69e9c5f627ff82a10874b3f5bba5fe", 10935 "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50",
10552 "reference": "14164e1ddd69e9c5f627ff82a10874b3f5bba5fe", 10936 "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50",
10553 "shasum": "" 10937 "shasum": ""
10554 }, 10938 },
10555 "require": { 10939 "require": {
10556 "nette/utils": "^2.4 || ~3.0.0", 10940 "nette/utils": "^2.4 || ^3.0",
10557 "php": ">=7.1" 10941 "php": ">=7.1"
10558 }, 10942 },
10559 "conflict": { 10943 "conflict": {
@@ -10561,6 +10945,7 @@
10561 }, 10945 },
10562 "require-dev": { 10946 "require-dev": {
10563 "nette/tester": "^2.0", 10947 "nette/tester": "^2.0",
10948 "phpstan/phpstan": "^0.12",
10564 "tracy/tracy": "^2.3" 10949 "tracy/tracy": "^2.3"
10565 }, 10950 },
10566 "type": "library", 10951 "type": "library",
@@ -10598,20 +10983,20 @@
10598 "iterator", 10983 "iterator",
10599 "nette" 10984 "nette"
10600 ], 10985 ],
10601 "time": "2019-07-11T18:02:17+00:00" 10986 "time": "2020-01-03T20:35:40+00:00"
10602 }, 10987 },
10603 { 10988 {
10604 "name": "nette/neon", 10989 "name": "nette/neon",
10605 "version": "v3.1.0", 10990 "version": "v3.1.2",
10606 "source": { 10991 "source": {
10607 "type": "git", 10992 "type": "git",
10608 "url": "https://github.com/nette/neon.git", 10993 "url": "https://github.com/nette/neon.git",
10609 "reference": "0a18fc88801a14d66587932de133eeca01f7ce8e" 10994 "reference": "3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e"
10610 }, 10995 },
10611 "dist": { 10996 "dist": {
10612 "type": "zip", 10997 "type": "zip",
10613 "url": "https://api.github.com/repos/nette/neon/zipball/0a18fc88801a14d66587932de133eeca01f7ce8e", 10998 "url": "https://api.github.com/repos/nette/neon/zipball/3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e",
10614 "reference": "0a18fc88801a14d66587932de133eeca01f7ce8e", 10999 "reference": "3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e",
10615 "shasum": "" 11000 "shasum": ""
10616 }, 11001 },
10617 "require": { 11002 "require": {
@@ -10638,8 +11023,8 @@
10638 "notification-url": "https://packagist.org/downloads/", 11023 "notification-url": "https://packagist.org/downloads/",
10639 "license": [ 11024 "license": [
10640 "BSD-3-Clause", 11025 "BSD-3-Clause",
10641 "GPL-2.0", 11026 "GPL-2.0-only",
10642 "GPL-3.0" 11027 "GPL-3.0-only"
10643 ], 11028 ],
10644 "authors": [ 11029 "authors": [
10645 { 11030 {
@@ -10652,7 +11037,7 @@
10652 } 11037 }
10653 ], 11038 ],
10654 "description": "🍸 Nette NEON: encodes and decodes NEON file format.", 11039 "description": "🍸 Nette NEON: encodes and decodes NEON file format.",
10655 "homepage": "http://ne-on.org", 11040 "homepage": "https://ne-on.org",
10656 "keywords": [ 11041 "keywords": [
10657 "export", 11042 "export",
10658 "import", 11043 "import",
@@ -10660,28 +11045,29 @@
10660 "nette", 11045 "nette",
10661 "yaml" 11046 "yaml"
10662 ], 11047 ],
10663 "time": "2019-12-27T04:00:04+00:00" 11048 "time": "2020-03-04T11:47:04+00:00"
10664 }, 11049 },
10665 { 11050 {
10666 "name": "nette/php-generator", 11051 "name": "nette/php-generator",
10667 "version": "v3.3.1", 11052 "version": "v3.3.4",
10668 "source": { 11053 "source": {
10669 "type": "git", 11054 "type": "git",
10670 "url": "https://github.com/nette/php-generator.git", 11055 "url": "https://github.com/nette/php-generator.git",
10671 "reference": "4240fd7adf499138c07b814ef9b9a6df9f6d7187" 11056 "reference": "8fe7e699dca7db186f56d75800cb1ec32e39c856"
10672 }, 11057 },
10673 "dist": { 11058 "dist": {
10674 "type": "zip", 11059 "type": "zip",
10675 "url": "https://api.github.com/repos/nette/php-generator/zipball/4240fd7adf499138c07b814ef9b9a6df9f6d7187", 11060 "url": "https://api.github.com/repos/nette/php-generator/zipball/8fe7e699dca7db186f56d75800cb1ec32e39c856",
10676 "reference": "4240fd7adf499138c07b814ef9b9a6df9f6d7187", 11061 "reference": "8fe7e699dca7db186f56d75800cb1ec32e39c856",
10677 "shasum": "" 11062 "shasum": ""
10678 }, 11063 },
10679 "require": { 11064 "require": {
10680 "nette/utils": "^2.4.2 || ~3.0.0", 11065 "nette/utils": "^2.4.2 || ^3.0",
10681 "php": ">=7.1" 11066 "php": ">=7.1"
10682 }, 11067 },
10683 "require-dev": { 11068 "require-dev": {
10684 "nette/tester": "^2.0", 11069 "nette/tester": "^2.0",
11070 "phpstan/phpstan": "^0.12",
10685 "tracy/tracy": "^2.3" 11071 "tracy/tracy": "^2.3"
10686 }, 11072 },
10687 "type": "library", 11073 "type": "library",
@@ -10698,8 +11084,8 @@
10698 "notification-url": "https://packagist.org/downloads/", 11084 "notification-url": "https://packagist.org/downloads/",
10699 "license": [ 11085 "license": [
10700 "BSD-3-Clause", 11086 "BSD-3-Clause",
10701 "GPL-2.0", 11087 "GPL-2.0-only",
10702 "GPL-3.0" 11088 "GPL-3.0-only"
10703 ], 11089 ],
10704 "authors": [ 11090 "authors": [
10705 { 11091 {
@@ -10711,7 +11097,7 @@
10711 "homepage": "https://nette.org/contributors" 11097 "homepage": "https://nette.org/contributors"
10712 } 11098 }
10713 ], 11099 ],
10714 "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.3 features.", 11100 "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.4 features.",
10715 "homepage": "https://nette.org", 11101 "homepage": "https://nette.org",
10716 "keywords": [ 11102 "keywords": [
10717 "code", 11103 "code",
@@ -10719,20 +11105,20 @@
10719 "php", 11105 "php",
10720 "scaffolding" 11106 "scaffolding"
10721 ], 11107 ],
10722 "time": "2019-11-22T11:12:11+00:00" 11108 "time": "2020-02-09T14:39:09+00:00"
10723 }, 11109 },
10724 { 11110 {
10725 "name": "nette/robot-loader", 11111 "name": "nette/robot-loader",
10726 "version": "v3.2.1", 11112 "version": "v3.2.3",
10727 "source": { 11113 "source": {
10728 "type": "git", 11114 "type": "git",
10729 "url": "https://github.com/nette/robot-loader.git", 11115 "url": "https://github.com/nette/robot-loader.git",
10730 "reference": "d2a100e1f5cab390c78bc88709abbc91249c3993" 11116 "reference": "726c462e73e739e965ec654a667407074cfe83c0"
10731 }, 11117 },
10732 "dist": { 11118 "dist": {
10733 "type": "zip", 11119 "type": "zip",
10734 "url": "https://api.github.com/repos/nette/robot-loader/zipball/d2a100e1f5cab390c78bc88709abbc91249c3993", 11120 "url": "https://api.github.com/repos/nette/robot-loader/zipball/726c462e73e739e965ec654a667407074cfe83c0",
10735 "reference": "d2a100e1f5cab390c78bc88709abbc91249c3993", 11121 "reference": "726c462e73e739e965ec654a667407074cfe83c0",
10736 "shasum": "" 11122 "shasum": ""
10737 }, 11123 },
10738 "require": { 11124 "require": {
@@ -10760,8 +11146,8 @@
10760 "notification-url": "https://packagist.org/downloads/", 11146 "notification-url": "https://packagist.org/downloads/",
10761 "license": [ 11147 "license": [
10762 "BSD-3-Clause", 11148 "BSD-3-Clause",
10763 "GPL-2.0", 11149 "GPL-2.0-only",
10764 "GPL-3.0" 11150 "GPL-3.0-only"
10765 ], 11151 ],
10766 "authors": [ 11152 "authors": [
10767 { 11153 {
@@ -10782,35 +11168,34 @@
10782 "nette", 11168 "nette",
10783 "trait" 11169 "trait"
10784 ], 11170 ],
10785 "time": "2019-12-26T22:32:02+00:00" 11171 "time": "2020-02-28T13:10:07+00:00"
10786 }, 11172 },
10787 { 11173 {
10788 "name": "nette/schema", 11174 "name": "nette/schema",
10789 "version": "v1.0.1", 11175 "version": "v1.0.2",
10790 "source": { 11176 "source": {
10791 "type": "git", 11177 "type": "git",
10792 "url": "https://github.com/nette/schema.git", 11178 "url": "https://github.com/nette/schema.git",
10793 "reference": "337117df1dade22e2ba1fdc4a4b832c1e9b06b76" 11179 "reference": "febf71fb4052c824046f5a33f4f769a6e7fa0cb4"
10794 }, 11180 },
10795 "dist": { 11181 "dist": {
10796 "type": "zip", 11182 "type": "zip",
10797 "url": "https://api.github.com/repos/nette/schema/zipball/337117df1dade22e2ba1fdc4a4b832c1e9b06b76", 11183 "url": "https://api.github.com/repos/nette/schema/zipball/febf71fb4052c824046f5a33f4f769a6e7fa0cb4",
10798 "reference": "337117df1dade22e2ba1fdc4a4b832c1e9b06b76", 11184 "reference": "febf71fb4052c824046f5a33f4f769a6e7fa0cb4",
10799 "shasum": "" 11185 "shasum": ""
10800 }, 11186 },
10801 "require": { 11187 "require": {
10802 "nette/utils": "^3.0.1", 11188 "nette/utils": "^3.1",
10803 "php": ">=7.1" 11189 "php": ">=7.1"
10804 }, 11190 },
10805 "require-dev": { 11191 "require-dev": {
10806 "nette/tester": "^2.2", 11192 "nette/tester": "^2.2",
11193 "phpstan/phpstan-nette": "^0.12",
10807 "tracy/tracy": "^2.3" 11194 "tracy/tracy": "^2.3"
10808 }, 11195 },
10809 "type": "library", 11196 "type": "library",
10810 "extra": { 11197 "extra": {
10811 "branch-alias": { 11198 "branch-alias": []
10812 "dev-master": "1.0-dev"
10813 }
10814 }, 11199 },
10815 "autoload": { 11200 "autoload": {
10816 "classmap": [ 11201 "classmap": [
@@ -10839,20 +11224,20 @@
10839 "config", 11224 "config",
10840 "nette" 11225 "nette"
10841 ], 11226 ],
10842 "time": "2019-10-31T20:52:19+00:00" 11227 "time": "2020-01-06T22:52:48+00:00"
10843 }, 11228 },
10844 { 11229 {
10845 "name": "nette/utils", 11230 "name": "nette/utils",
10846 "version": "v3.0.3", 11231 "version": "v3.1.1",
10847 "source": { 11232 "source": {
10848 "type": "git", 11233 "type": "git",
10849 "url": "https://github.com/nette/utils.git", 11234 "url": "https://github.com/nette/utils.git",
10850 "reference": "f1b5ce0fae07f13e066e64f9a8f59e53b8f4982e" 11235 "reference": "2c17d16d8887579ae1c0898ff94a3668997fd3eb"
10851 }, 11236 },
10852 "dist": { 11237 "dist": {
10853 "type": "zip", 11238 "type": "zip",
10854 "url": "https://api.github.com/repos/nette/utils/zipball/f1b5ce0fae07f13e066e64f9a8f59e53b8f4982e", 11239 "url": "https://api.github.com/repos/nette/utils/zipball/2c17d16d8887579ae1c0898ff94a3668997fd3eb",
10855 "reference": "f1b5ce0fae07f13e066e64f9a8f59e53b8f4982e", 11240 "reference": "2c17d16d8887579ae1c0898ff94a3668997fd3eb",
10856 "shasum": "" 11241 "shasum": ""
10857 }, 11242 },
10858 "require": { 11243 "require": {
@@ -10875,7 +11260,7 @@
10875 "type": "library", 11260 "type": "library",
10876 "extra": { 11261 "extra": {
10877 "branch-alias": { 11262 "branch-alias": {
10878 "dev-master": "3.0-dev" 11263 "dev-master": "3.1-dev"
10879 } 11264 }
10880 }, 11265 },
10881 "autoload": { 11266 "autoload": {
@@ -10886,8 +11271,8 @@
10886 "notification-url": "https://packagist.org/downloads/", 11271 "notification-url": "https://packagist.org/downloads/",
10887 "license": [ 11272 "license": [
10888 "BSD-3-Clause", 11273 "BSD-3-Clause",
10889 "GPL-2.0", 11274 "GPL-2.0-only",
10890 "GPL-3.0" 11275 "GPL-3.0-only"
10891 ], 11276 ],
10892 "authors": [ 11277 "authors": [
10893 { 11278 {
@@ -10917,20 +11302,20 @@
10917 "utility", 11302 "utility",
10918 "validation" 11303 "validation"
10919 ], 11304 ],
10920 "time": "2019-12-27T03:47:50+00:00" 11305 "time": "2020-02-09T14:10:55+00:00"
10921 }, 11306 },
10922 { 11307 {
10923 "name": "nikic/php-parser", 11308 "name": "nikic/php-parser",
10924 "version": "v4.3.0", 11309 "version": "v4.4.0",
10925 "source": { 11310 "source": {
10926 "type": "git", 11311 "type": "git",
10927 "url": "https://github.com/nikic/PHP-Parser.git", 11312 "url": "https://github.com/nikic/PHP-Parser.git",
10928 "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc" 11313 "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
10929 }, 11314 },
10930 "dist": { 11315 "dist": {
10931 "type": "zip", 11316 "type": "zip",
10932 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc", 11317 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
10933 "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc", 11318 "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
10934 "shasum": "" 11319 "shasum": ""
10935 }, 11320 },
10936 "require": { 11321 "require": {
@@ -10969,7 +11354,7 @@
10969 "parser", 11354 "parser",
10970 "php" 11355 "php"
10971 ], 11356 ],
10972 "time": "2019-11-08T13:50:10+00:00" 11357 "time": "2020-04-10T16:34:50+00:00"
10973 }, 11358 },
10974 { 11359 {
10975 "name": "php-cs-fixer/diff", 11360 "name": "php-cs-fixer/diff",
@@ -11395,45 +11780,52 @@
11395 "time": "2019-05-19T17:40:25+00:00" 11780 "time": "2019-05-19T17:40:25+00:00"
11396 }, 11781 },
11397 { 11782 {
11398 "name": "sensio/generator-bundle", 11783 "name": "symfony/maker-bundle",
11399 "version": "v3.1.7", 11784 "version": "v1.18.0",
11400 "source": { 11785 "source": {
11401 "type": "git", 11786 "type": "git",
11402 "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git", 11787 "url": "https://github.com/symfony/maker-bundle.git",
11403 "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65" 11788 "reference": "b38c75be880b152ab55cef6cd52bf882d2b6518e"
11404 }, 11789 },
11405 "dist": { 11790 "dist": {
11406 "type": "zip", 11791 "type": "zip",
11407 "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65", 11792 "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/b38c75be880b152ab55cef6cd52bf882d2b6518e",
11408 "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65", 11793 "reference": "b38c75be880b152ab55cef6cd52bf882d2b6518e",
11409 "shasum": "" 11794 "shasum": ""
11410 }, 11795 },
11411 "require": { 11796 "require": {
11412 "symfony/console": "~2.7|~3.0", 11797 "doctrine/inflector": "^1.2",
11413 "symfony/framework-bundle": "~2.7|~3.0", 11798 "nikic/php-parser": "^4.0",
11414 "symfony/process": "~2.7|~3.0", 11799 "php": "^7.1.3",
11415 "symfony/yaml": "~2.7|~3.0", 11800 "symfony/config": "^3.4|^4.0|^5.0",
11416 "twig/twig": "^1.28.2|^2.0" 11801 "symfony/console": "^3.4|^4.0|^5.0",
11802 "symfony/dependency-injection": "^3.4|^4.0|^5.0",
11803 "symfony/filesystem": "^3.4|^4.0|^5.0",
11804 "symfony/finder": "^3.4|^4.0|^5.0",
11805 "symfony/framework-bundle": "^3.4|^4.0|^5.0",
11806 "symfony/http-kernel": "^3.4|^4.0|^5.0"
11417 }, 11807 },
11418 "require-dev": { 11808 "require-dev": {
11419 "doctrine/orm": "~2.4", 11809 "doctrine/doctrine-bundle": "^1.8|^2.0",
11420 "symfony/doctrine-bridge": "~2.7|~3.0", 11810 "doctrine/orm": "^2.3",
11421 "symfony/filesystem": "~2.7|~3.0", 11811 "friendsofphp/php-cs-fixer": "^2.8",
11422 "symfony/phpunit-bridge": "^3.3" 11812 "friendsoftwig/twigcs": "^3.1.2",
11813 "symfony/http-client": "^4.3|^5.0",
11814 "symfony/phpunit-bridge": "^4.3|^5.0",
11815 "symfony/process": "^3.4|^4.0|^5.0",
11816 "symfony/security-core": "^3.4|^4.0|^5.0",
11817 "symfony/yaml": "^3.4|^4.0|^5.0"
11423 }, 11818 },
11424 "type": "symfony-bundle", 11819 "type": "symfony-bundle",
11425 "extra": { 11820 "extra": {
11426 "branch-alias": { 11821 "branch-alias": {
11427 "dev-master": "3.1.x-dev" 11822 "dev-master": "1.0-dev"
11428 } 11823 }
11429 }, 11824 },
11430 "autoload": { 11825 "autoload": {
11431 "psr-4": { 11826 "psr-4": {
11432 "Sensio\\Bundle\\GeneratorBundle\\": "" 11827 "Symfony\\Bundle\\MakerBundle\\": "src/"
11433 }, 11828 }
11434 "exclude-from-classmap": [
11435 "/Tests/"
11436 ]
11437 }, 11829 },
11438 "notification-url": "https://packagist.org/downloads/", 11830 "notification-url": "https://packagist.org/downloads/",
11439 "license": [ 11831 "license": [
@@ -11441,13 +11833,33 @@
11441 ], 11833 ],
11442 "authors": [ 11834 "authors": [
11443 { 11835 {
11444 "name": "Fabien Potencier", 11836 "name": "Symfony Community",
11445 "email": "fabien@symfony.com" 11837 "homepage": "https://symfony.com/contributors"
11446 } 11838 }
11447 ], 11839 ],
11448 "description": "This bundle generates code for you", 11840 "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
11449 "abandoned": "symfony/maker-bundle", 11841 "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
11450 "time": "2017-12-07T15:36:41+00:00" 11842 "keywords": [
11843 "code generator",
11844 "generator",
11845 "scaffold",
11846 "scaffolding"
11847 ],
11848 "funding": [
11849 {
11850 "url": "https://symfony.com/sponsor",
11851 "type": "custom"
11852 },
11853 {
11854 "url": "https://github.com/fabpot",
11855 "type": "github"
11856 },
11857 {
11858 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
11859 "type": "tidelift"
11860 }
11861 ],
11862 "time": "2020-05-15T18:51:23+00:00"
11451 }, 11863 },
11452 { 11864 {
11453 "name": "symfony/phpunit-bridge", 11865 "name": "symfony/phpunit-bridge",
@@ -11524,24 +11936,25 @@
11524 "prefer-lowest": false, 11936 "prefer-lowest": false,
11525 "platform": { 11937 "platform": {
11526 "php": ">=7.1.3", 11938 "php": ">=7.1.3",
11527 "ext-pcre": "*", 11939 "ext-ctype": "*",
11528 "ext-dom": "*",
11529 "ext-curl": "*", 11940 "ext-curl": "*",
11941 "ext-dom": "*",
11530 "ext-gd": "*", 11942 "ext-gd": "*",
11531 "ext-session": "*",
11532 "ext-ctype": "*",
11533 "ext-hash": "*", 11943 "ext-hash": "*",
11534 "ext-simplexml": "*", 11944 "ext-iconv": "*",
11535 "ext-json": "*", 11945 "ext-json": "*",
11536 "ext-mbstring": "*", 11946 "ext-mbstring": "*",
11537 "ext-xml": "*", 11947 "ext-pcre": "*",
11538 "ext-iconv": "*",
11539 "ext-tokenizer": "*",
11540 "ext-pdo": "*", 11948 "ext-pdo": "*",
11541 "ext-tidy": "*" 11949 "ext-session": "*",
11950 "ext-simplexml": "*",
11951 "ext-tidy": "*",
11952 "ext-tokenizer": "*",
11953 "ext-xml": "*"
11542 }, 11954 },
11543 "platform-dev": [], 11955 "platform-dev": [],
11544 "platform-overrides": { 11956 "platform-overrides": {
11545 "php": "7.1.3" 11957 "php": "7.1.3"
11546 } 11958 },
11959 "plugin-api-version": "1.1.0"
11547} 11960}