aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2020-05-25 06:16:16 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2020-05-25 06:28:04 +0200
commit2a74acb77ff7f6bd107a9d7856c89da62d429e24 (patch)
tree4e03f9d555805d9e4255f28811db24b31af342ab
parent372810b687e767a7f1114fded82955397bb88040 (diff)
downloadwallabag-2a74acb77ff7f6bd107a9d7856c89da62d429e24.tar.gz
wallabag-2a74acb77ff7f6bd107a9d7856c89da62d429e24.tar.zst
wallabag-2a74acb77ff7f6bd107a9d7856c89da62d429e24.zip
Update deps
- Clean Travis config file - Only cache deps from composer (avoiding metadata to invalid Travis cache) - Update config file to match future version from Travis - Remove useless (not so working) `travis_fold` - Remove `SensioGeneratorBundle` and use `MakerBundle` ``` Package sensio/generator-bundle is abandoned, you should avoid using it. Use symfony/maker-bundle instead. ``` - Sort packages in `composer.json` - Use `laminas/*` package to remove deprecated `zendframework/*` ones: ``` Package zendframework/zend-code is abandoned, you should avoid using it. Use laminas/laminas-code instead. Package zendframework/zend-diactoros is abandoned, you should avoid using it. Use laminas/laminas-diactoros instead. Package zendframework/zend-eventmanager is abandoned, you should avoid using it. Use laminas/laminas-eventmanager instead. ```
-rw-r--r--.travis.yml27
-rw-r--r--app/AppKernel.php2
-rw-r--r--composer.json105
-rw-r--r--composer.lock1485
4 files changed, 985 insertions, 634 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..eb17e4fe 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.4",
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..1d16fb05 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": "1c4d8b91a6e26715d15ccc11af7a362e",
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",
@@ -1557,27 +1572,27 @@
1557 }, 1572 },
1558 { 1573 {
1559 "name": "egulias/email-validator", 1574 "name": "egulias/email-validator",
1560 "version": "2.1.12", 1575 "version": "2.1.17",
1561 "source": { 1576 "source": {
1562 "type": "git", 1577 "type": "git",
1563 "url": "https://github.com/egulias/EmailValidator.git", 1578 "url": "https://github.com/egulias/EmailValidator.git",
1564 "reference": "a6255605af39f2db7f5cb62e672bd8a7bad8d208" 1579 "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
1565 }, 1580 },
1566 "dist": { 1581 "dist": {
1567 "type": "zip", 1582 "type": "zip",
1568 "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/a6255605af39f2db7f5cb62e672bd8a7bad8d208", 1583 "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
1569 "reference": "a6255605af39f2db7f5cb62e672bd8a7bad8d208", 1584 "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
1570 "shasum": "" 1585 "shasum": ""
1571 }, 1586 },
1572 "require": { 1587 "require": {
1573 "doctrine/lexer": "^1.0.1", 1588 "doctrine/lexer": "^1.0.1",
1574 "php": ">= 5.5" 1589 "php": ">=5.5",
1590 "symfony/polyfill-intl-idn": "^1.10"
1575 }, 1591 },
1576 "require-dev": { 1592 "require-dev": {
1577 "dominicsayers/isemail": "dev-master", 1593 "dominicsayers/isemail": "^3.0.7",
1578 "phpunit/phpunit": "^4.8.35||^5.7||^6.0", 1594 "phpunit/phpunit": "^4.8.36|^7.5.15",
1579 "satooshi/php-coveralls": "^1.0.1", 1595 "satooshi/php-coveralls": "^1.0.1"
1580 "symfony/phpunit-bridge": "^4.4@dev"
1581 }, 1596 },
1582 "suggest": { 1597 "suggest": {
1583 "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" 1598 "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
@@ -1611,7 +1626,7 @@
1611 "validation", 1626 "validation",
1612 "validator" 1627 "validator"
1613 ], 1628 ],
1614 "time": "2019-12-20T12:49:39+00:00" 1629 "time": "2020-02-13T22:36:52+00:00"
1615 }, 1630 },
1616 { 1631 {
1617 "name": "electrolinux/php-html5lib", 1632 "name": "electrolinux/php-html5lib",
@@ -2157,16 +2172,16 @@
2157 }, 2172 },
2158 { 2173 {
2159 "name": "gedmo/doctrine-extensions", 2174 "name": "gedmo/doctrine-extensions",
2160 "version": "v2.4.38", 2175 "version": "v2.4.41",
2161 "source": { 2176 "source": {
2162 "type": "git", 2177 "type": "git",
2163 "url": "https://github.com/Atlantic18/DoctrineExtensions.git", 2178 "url": "https://github.com/Atlantic18/DoctrineExtensions.git",
2164 "reference": "81681364331b131518060e4776300a5346df1eb5" 2179 "reference": "e55a6727052f91834a968937c93b6fb193be8fb6"
2165 }, 2180 },
2166 "dist": { 2181 "dist": {
2167 "type": "zip", 2182 "type": "zip",
2168 "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/81681364331b131518060e4776300a5346df1eb5", 2183 "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/e55a6727052f91834a968937c93b6fb193be8fb6",
2169 "reference": "81681364331b131518060e4776300a5346df1eb5", 2184 "reference": "e55a6727052f91834a968937c93b6fb193be8fb6",
2170 "shasum": "" 2185 "shasum": ""
2171 }, 2186 },
2172 "require": { 2187 "require": {
@@ -2183,7 +2198,7 @@
2183 "doctrine/mongodb-odm": ">=1.0.2 <2.0", 2198 "doctrine/mongodb-odm": ">=1.0.2 <2.0",
2184 "doctrine/orm": ">=2.5.0", 2199 "doctrine/orm": ">=2.5.0",
2185 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5", 2200 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
2186 "symfony/yaml": "~2.6 || ~3.0 || ~4.0" 2201 "symfony/yaml": "^2.6 || ^3.0 || ^4.0 || ^5.0"
2187 }, 2202 },
2188 "suggest": { 2203 "suggest": {
2189 "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM", 2204 "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM",
@@ -2235,7 +2250,7 @@
2235 "tree", 2250 "tree",
2236 "uploadable" 2251 "uploadable"
2237 ], 2252 ],
2238 "time": "2019-11-08T22:33:07+00:00" 2253 "time": "2020-05-10T22:20:03+00:00"
2239 }, 2254 },
2240 { 2255 {
2241 "name": "grandt/binstring", 2256 "name": "grandt/binstring",
@@ -3758,16 +3773,16 @@
3758 }, 3773 },
3759 { 3774 {
3760 "name": "j0k3r/graby-site-config", 3775 "name": "j0k3r/graby-site-config",
3761 "version": "1.0.105", 3776 "version": "1.0.106",
3762 "source": { 3777 "source": {
3763 "type": "git", 3778 "type": "git",
3764 "url": "https://github.com/j0k3r/graby-site-config.git", 3779 "url": "https://github.com/j0k3r/graby-site-config.git",
3765 "reference": "489208b33e9f43f3812626b0543cfe42ef896052" 3780 "reference": "d50dbfe2644c684a9fe0d99c74ca0734354cc3c0"
3766 }, 3781 },
3767 "dist": { 3782 "dist": {
3768 "type": "zip", 3783 "type": "zip",
3769 "url": "https://api.github.com/repos/j0k3r/graby-site-config/zipball/489208b33e9f43f3812626b0543cfe42ef896052", 3784 "url": "https://api.github.com/repos/j0k3r/graby-site-config/zipball/d50dbfe2644c684a9fe0d99c74ca0734354cc3c0",
3770 "reference": "489208b33e9f43f3812626b0543cfe42ef896052", 3785 "reference": "d50dbfe2644c684a9fe0d99c74ca0734354cc3c0",
3771 "shasum": "" 3786 "shasum": ""
3772 }, 3787 },
3773 "require": { 3788 "require": {
@@ -3794,7 +3809,7 @@
3794 } 3809 }
3795 ], 3810 ],
3796 "description": "Graby site config files", 3811 "description": "Graby site config files",
3797 "time": "2020-04-21T12:42:03+00:00" 3812 "time": "2020-05-13T05:29:30+00:00"
3798 }, 3813 },
3799 { 3814 {
3800 "name": "j0k3r/httplug-ssrf-plugin", 3815 "name": "j0k3r/httplug-ssrf-plugin",
@@ -4186,16 +4201,16 @@
4186 }, 4201 },
4187 { 4202 {
4188 "name": "jms/serializer", 4203 "name": "jms/serializer",
4189 "version": "1.14.0", 4204 "version": "1.14.1",
4190 "source": { 4205 "source": {
4191 "type": "git", 4206 "type": "git",
4192 "url": "https://github.com/schmittjoh/serializer.git", 4207 "url": "https://github.com/schmittjoh/serializer.git",
4193 "reference": "ee96d57024af9a7716d56fcbe3aa94b3d030f3ca" 4208 "reference": "ba908d278fff27ec01fb4349f372634ffcd697c0"
4194 }, 4209 },
4195 "dist": { 4210 "dist": {
4196 "type": "zip", 4211 "type": "zip",
4197 "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/ee96d57024af9a7716d56fcbe3aa94b3d030f3ca", 4212 "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/ba908d278fff27ec01fb4349f372634ffcd697c0",
4198 "reference": "ee96d57024af9a7716d56fcbe3aa94b3d030f3ca", 4213 "reference": "ba908d278fff27ec01fb4349f372634ffcd697c0",
4199 "shasum": "" 4214 "shasum": ""
4200 }, 4215 },
4201 "require": { 4216 "require": {
@@ -4249,12 +4264,12 @@
4249 ], 4264 ],
4250 "authors": [ 4265 "authors": [
4251 { 4266 {
4252 "name": "Asmir Mustafic",
4253 "email": "goetas@gmail.com"
4254 },
4255 {
4256 "name": "Johannes M. Schmitt", 4267 "name": "Johannes M. Schmitt",
4257 "email": "schmittjoh@gmail.com" 4268 "email": "schmittjoh@gmail.com"
4269 },
4270 {
4271 "name": "Asmir Mustafic",
4272 "email": "goetas@gmail.com"
4258 } 4273 }
4259 ], 4274 ],
4260 "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.", 4275 "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.",
@@ -4266,7 +4281,7 @@
4266 "serialization", 4281 "serialization",
4267 "xml" 4282 "xml"
4268 ], 4283 ],
4269 "time": "2019-04-17T08:12:16+00:00" 4284 "time": "2020-02-22T20:59:37+00:00"
4270 }, 4285 },
4271 { 4286 {
4272 "name": "jms/serializer-bundle", 4287 "name": "jms/serializer-bundle",
@@ -4527,17 +4542,287 @@
4527 "time": "2018-09-17T09:02:32+00:00" 4542 "time": "2018-09-17T09:02:32+00:00"
4528 }, 4543 },
4529 { 4544 {
4545 "name": "laminas/laminas-code",
4546 "version": "3.4.1",
4547 "source": {
4548 "type": "git",
4549 "url": "https://github.com/laminas/laminas-code.git",
4550 "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766"
4551 },
4552 "dist": {
4553 "type": "zip",
4554 "url": "https://api.github.com/repos/laminas/laminas-code/zipball/1cb8f203389ab1482bf89c0e70a04849bacd7766",
4555 "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766",
4556 "shasum": ""
4557 },
4558 "require": {
4559 "laminas/laminas-eventmanager": "^2.6 || ^3.0",
4560 "laminas/laminas-zendframework-bridge": "^1.0",
4561 "php": "^7.1"
4562 },
4563 "conflict": {
4564 "phpspec/prophecy": "<1.9.0"
4565 },
4566 "replace": {
4567 "zendframework/zend-code": "self.version"
4568 },
4569 "require-dev": {
4570 "doctrine/annotations": "^1.7",
4571 "ext-phar": "*",
4572 "laminas/laminas-coding-standard": "^1.0",
4573 "laminas/laminas-stdlib": "^2.7 || ^3.0",
4574 "phpunit/phpunit": "^7.5.16 || ^8.4"
4575 },
4576 "suggest": {
4577 "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
4578 "laminas/laminas-stdlib": "Laminas\\Stdlib component"
4579 },
4580 "type": "library",
4581 "extra": {
4582 "branch-alias": {
4583 "dev-master": "3.4.x-dev",
4584 "dev-develop": "3.5.x-dev",
4585 "dev-dev-4.0": "4.0.x-dev"
4586 }
4587 },
4588 "autoload": {
4589 "psr-4": {
4590 "Laminas\\Code\\": "src/"
4591 }
4592 },
4593 "notification-url": "https://packagist.org/downloads/",
4594 "license": [
4595 "BSD-3-Clause"
4596 ],
4597 "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
4598 "homepage": "https://laminas.dev",
4599 "keywords": [
4600 "code",
4601 "laminas"
4602 ],
4603 "time": "2019-12-31T16:28:24+00:00"
4604 },
4605 {
4606 "name": "laminas/laminas-diactoros",
4607 "version": "2.3.0",
4608 "source": {
4609 "type": "git",
4610 "url": "https://github.com/laminas/laminas-diactoros.git",
4611 "reference": "5ab185dba63ec655a2380c97711b09adc7061f89"
4612 },
4613 "dist": {
4614 "type": "zip",
4615 "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/5ab185dba63ec655a2380c97711b09adc7061f89",
4616 "reference": "5ab185dba63ec655a2380c97711b09adc7061f89",
4617 "shasum": ""
4618 },
4619 "require": {
4620 "laminas/laminas-zendframework-bridge": "^1.0",
4621 "php": "^7.1",
4622 "psr/http-factory": "^1.0",
4623 "psr/http-message": "^1.0"
4624 },
4625 "conflict": {
4626 "phpspec/prophecy": "<1.9.0"
4627 },
4628 "provide": {
4629 "psr/http-factory-implementation": "1.0",
4630 "psr/http-message-implementation": "1.0"
4631 },
4632 "replace": {
4633 "zendframework/zend-diactoros": "^2.2.1"
4634 },
4635 "require-dev": {
4636 "ext-curl": "*",
4637 "ext-dom": "*",
4638 "ext-libxml": "*",
4639 "http-interop/http-factory-tests": "^0.5.0",
4640 "laminas/laminas-coding-standard": "~1.0.0",
4641 "php-http/psr7-integration-tests": "^1.0",
4642 "phpunit/phpunit": "^7.5.18"
4643 },
4644 "type": "library",
4645 "extra": {
4646 "branch-alias": {
4647 "dev-master": "2.3.x-dev",
4648 "dev-develop": "2.4.x-dev"
4649 },
4650 "laminas": {
4651 "config-provider": "Laminas\\Diactoros\\ConfigProvider",
4652 "module": "Laminas\\Diactoros"
4653 }
4654 },
4655 "autoload": {
4656 "files": [
4657 "src/functions/create_uploaded_file.php",
4658 "src/functions/marshal_headers_from_sapi.php",
4659 "src/functions/marshal_method_from_sapi.php",
4660 "src/functions/marshal_protocol_version_from_sapi.php",
4661 "src/functions/marshal_uri_from_sapi.php",
4662 "src/functions/normalize_server.php",
4663 "src/functions/normalize_uploaded_files.php",
4664 "src/functions/parse_cookie_header.php",
4665 "src/functions/create_uploaded_file.legacy.php",
4666 "src/functions/marshal_headers_from_sapi.legacy.php",
4667 "src/functions/marshal_method_from_sapi.legacy.php",
4668 "src/functions/marshal_protocol_version_from_sapi.legacy.php",
4669 "src/functions/marshal_uri_from_sapi.legacy.php",
4670 "src/functions/normalize_server.legacy.php",
4671 "src/functions/normalize_uploaded_files.legacy.php",
4672 "src/functions/parse_cookie_header.legacy.php"
4673 ],
4674 "psr-4": {
4675 "Laminas\\Diactoros\\": "src/"
4676 }
4677 },
4678 "notification-url": "https://packagist.org/downloads/",
4679 "license": [
4680 "BSD-3-Clause"
4681 ],
4682 "description": "PSR HTTP Message implementations",
4683 "homepage": "https://laminas.dev",
4684 "keywords": [
4685 "http",
4686 "laminas",
4687 "psr",
4688 "psr-7"
4689 ],
4690 "funding": [
4691 {
4692 "url": "https://funding.communitybridge.org/projects/laminas-project",
4693 "type": "community_bridge"
4694 }
4695 ],
4696 "time": "2020-04-27T17:07:01+00:00"
4697 },
4698 {
4699 "name": "laminas/laminas-eventmanager",
4700 "version": "3.2.1",
4701 "source": {
4702 "type": "git",
4703 "url": "https://github.com/laminas/laminas-eventmanager.git",
4704 "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748"
4705 },
4706 "dist": {
4707 "type": "zip",
4708 "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/ce4dc0bdf3b14b7f9815775af9dfee80a63b4748",
4709 "reference": "ce4dc0bdf3b14b7f9815775af9dfee80a63b4748",
4710 "shasum": ""
4711 },
4712 "require": {
4713 "laminas/laminas-zendframework-bridge": "^1.0",
4714 "php": "^5.6 || ^7.0"
4715 },
4716 "replace": {
4717 "zendframework/zend-eventmanager": "self.version"
4718 },
4719 "require-dev": {
4720 "athletic/athletic": "^0.1",
4721 "container-interop/container-interop": "^1.1.0",
4722 "laminas/laminas-coding-standard": "~1.0.0",
4723 "laminas/laminas-stdlib": "^2.7.3 || ^3.0",
4724 "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
4725 },
4726 "suggest": {
4727 "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
4728 "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
4729 },
4730 "type": "library",
4731 "extra": {
4732 "branch-alias": {
4733 "dev-master": "3.2-dev",
4734 "dev-develop": "3.3-dev"
4735 }
4736 },
4737 "autoload": {
4738 "psr-4": {
4739 "Laminas\\EventManager\\": "src/"
4740 }
4741 },
4742 "notification-url": "https://packagist.org/downloads/",
4743 "license": [
4744 "BSD-3-Clause"
4745 ],
4746 "description": "Trigger and listen to events within a PHP application",
4747 "homepage": "https://laminas.dev",
4748 "keywords": [
4749 "event",
4750 "eventmanager",
4751 "events",
4752 "laminas"
4753 ],
4754 "time": "2019-12-31T16:44:52+00:00"
4755 },
4756 {
4757 "name": "laminas/laminas-zendframework-bridge",
4758 "version": "1.0.4",
4759 "source": {
4760 "type": "git",
4761 "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
4762 "reference": "fcd87520e4943d968557803919523772475e8ea3"
4763 },
4764 "dist": {
4765 "type": "zip",
4766 "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
4767 "reference": "fcd87520e4943d968557803919523772475e8ea3",
4768 "shasum": ""
4769 },
4770 "require": {
4771 "php": "^5.6 || ^7.0"
4772 },
4773 "require-dev": {
4774 "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
4775 "squizlabs/php_codesniffer": "^3.5"
4776 },
4777 "type": "library",
4778 "extra": {
4779 "branch-alias": {
4780 "dev-master": "1.0.x-dev",
4781 "dev-develop": "1.1.x-dev"
4782 },
4783 "laminas": {
4784 "module": "Laminas\\ZendFrameworkBridge"
4785 }
4786 },
4787 "autoload": {
4788 "files": [
4789 "src/autoload.php"
4790 ],
4791 "psr-4": {
4792 "Laminas\\ZendFrameworkBridge\\": "src//"
4793 }
4794 },
4795 "notification-url": "https://packagist.org/downloads/",
4796 "license": [
4797 "BSD-3-Clause"
4798 ],
4799 "description": "Alias legacy ZF class names to Laminas Project equivalents.",
4800 "keywords": [
4801 "ZendFramework",
4802 "autoloading",
4803 "laminas",
4804 "zf"
4805 ],
4806 "funding": [
4807 {
4808 "url": "https://funding.communitybridge.org/projects/laminas-project",
4809 "type": "community_bridge"
4810 }
4811 ],
4812 "time": "2020-05-20T16:45:56+00:00"
4813 },
4814 {
4530 "name": "lcobucci/jwt", 4815 "name": "lcobucci/jwt",
4531 "version": "3.3.1", 4816 "version": "3.3.2",
4532 "source": { 4817 "source": {
4533 "type": "git", 4818 "type": "git",
4534 "url": "https://github.com/lcobucci/jwt.git", 4819 "url": "https://github.com/lcobucci/jwt.git",
4535 "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18" 4820 "reference": "56f10808089e38623345e28af2f2d5e4eb579455"
4536 }, 4821 },
4537 "dist": { 4822 "dist": {
4538 "type": "zip", 4823 "type": "zip",
4539 "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", 4824 "url": "https://api.github.com/repos/lcobucci/jwt/zipball/56f10808089e38623345e28af2f2d5e4eb579455",
4540 "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", 4825 "reference": "56f10808089e38623345e28af2f2d5e4eb579455",
4541 "shasum": "" 4826 "shasum": ""
4542 }, 4827 },
4543 "require": { 4828 "require": {
@@ -4579,7 +4864,17 @@
4579 "JWS", 4864 "JWS",
4580 "jwt" 4865 "jwt"
4581 ], 4866 ],
4582 "time": "2019-05-24T18:30:49+00:00" 4867 "funding": [
4868 {
4869 "url": "https://github.com/lcobucci",
4870 "type": "github"
4871 },
4872 {
4873 "url": "https://www.patreon.com/lcobucci",
4874 "type": "patreon"
4875 }
4876 ],
4877 "time": "2020-05-22T08:21:12+00:00"
4583 }, 4878 },
4584 { 4879 {
4585 "name": "lexik/form-filter-bundle", 4880 "name": "lexik/form-filter-bundle",
@@ -4906,16 +5201,16 @@
4906 }, 5201 },
4907 { 5202 {
4908 "name": "monolog/monolog", 5203 "name": "monolog/monolog",
4909 "version": "1.25.3", 5204 "version": "1.25.4",
4910 "source": { 5205 "source": {
4911 "type": "git", 5206 "type": "git",
4912 "url": "https://github.com/Seldaek/monolog.git", 5207 "url": "https://github.com/Seldaek/monolog.git",
4913 "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1" 5208 "reference": "3022efff205e2448b560c833c6fbbf91c3139168"
4914 }, 5209 },
4915 "dist": { 5210 "dist": {
4916 "type": "zip", 5211 "type": "zip",
4917 "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1", 5212 "url": "https://api.github.com/repos/Seldaek/monolog/zipball/3022efff205e2448b560c833c6fbbf91c3139168",
4918 "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1", 5213 "reference": "3022efff205e2448b560c833c6fbbf91c3139168",
4919 "shasum": "" 5214 "shasum": ""
4920 }, 5215 },
4921 "require": { 5216 "require": {
@@ -4929,11 +5224,10 @@
4929 "aws/aws-sdk-php": "^2.4.9 || ^3.0", 5224 "aws/aws-sdk-php": "^2.4.9 || ^3.0",
4930 "doctrine/couchdb": "~1.0@dev", 5225 "doctrine/couchdb": "~1.0@dev",
4931 "graylog2/gelf-php": "~1.0", 5226 "graylog2/gelf-php": "~1.0",
4932 "jakub-onderka/php-parallel-lint": "0.9",
4933 "php-amqplib/php-amqplib": "~2.4", 5227 "php-amqplib/php-amqplib": "~2.4",
4934 "php-console/php-console": "^3.1.3", 5228 "php-console/php-console": "^3.1.3",
5229 "php-parallel-lint/php-parallel-lint": "^1.0",
4935 "phpunit/phpunit": "~4.5", 5230 "phpunit/phpunit": "~4.5",
4936 "phpunit/phpunit-mock-objects": "2.3.0",
4937 "ruflin/elastica": ">=0.90 <3.0", 5231 "ruflin/elastica": ">=0.90 <3.0",
4938 "sentry/sentry": "^0.13", 5232 "sentry/sentry": "^0.13",
4939 "swiftmailer/swiftmailer": "^5.3|^6.0" 5233 "swiftmailer/swiftmailer": "^5.3|^6.0"
@@ -4980,7 +5274,17 @@
4980 "logging", 5274 "logging",
4981 "psr-3" 5275 "psr-3"
4982 ], 5276 ],
4983 "time": "2019-12-20T14:15:16+00:00" 5277 "funding": [
5278 {
5279 "url": "https://github.com/Seldaek",
5280 "type": "github"
5281 },
5282 {
5283 "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
5284 "type": "tidelift"
5285 }
5286 ],
5287 "time": "2020-05-22T07:31:27+00:00"
4984 }, 5288 },
4985 { 5289 {
4986 "name": "nelmio/api-doc-bundle", 5290 "name": "nelmio/api-doc-bundle",
@@ -5426,16 +5730,16 @@
5426 }, 5730 },
5427 { 5731 {
5428 "name": "php-amqplib/php-amqplib", 5732 "name": "php-amqplib/php-amqplib",
5429 "version": "v2.11.0", 5733 "version": "v2.11.3",
5430 "source": { 5734 "source": {
5431 "type": "git", 5735 "type": "git",
5432 "url": "https://github.com/php-amqplib/php-amqplib.git", 5736 "url": "https://github.com/php-amqplib/php-amqplib.git",
5433 "reference": "9ee212baced63442ca1ab029acde38e1144a00b8" 5737 "reference": "6353c5d2d3021a301914bc6566e695c99cfeb742"
5434 }, 5738 },
5435 "dist": { 5739 "dist": {
5436 "type": "zip", 5740 "type": "zip",
5437 "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/9ee212baced63442ca1ab029acde38e1144a00b8", 5741 "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/6353c5d2d3021a301914bc6566e695c99cfeb742",
5438 "reference": "9ee212baced63442ca1ab029acde38e1144a00b8", 5742 "reference": "6353c5d2d3021a301914bc6566e695c99cfeb742",
5439 "shasum": "" 5743 "shasum": ""
5440 }, 5744 },
5441 "require": { 5745 "require": {
@@ -5444,6 +5748,9 @@
5444 "php": ">=5.6.3", 5748 "php": ">=5.6.3",
5445 "phpseclib/phpseclib": "^2.0.0" 5749 "phpseclib/phpseclib": "^2.0.0"
5446 }, 5750 },
5751 "conflict": {
5752 "php": "7.4.0 - 7.4.1"
5753 },
5447 "replace": { 5754 "replace": {
5448 "videlalvaro/php-amqplib": "self.version" 5755 "videlalvaro/php-amqplib": "self.version"
5449 }, 5756 },
@@ -5474,11 +5781,6 @@
5474 "role": "Original Maintainer" 5781 "role": "Original Maintainer"
5475 }, 5782 },
5476 { 5783 {
5477 "name": "John Kelly",
5478 "email": "johnmkelly86@gmail.com",
5479 "role": "Maintainer"
5480 },
5481 {
5482 "name": "Raúl Araya", 5784 "name": "Raúl Araya",
5483 "email": "nubeiro@gmail.com", 5785 "email": "nubeiro@gmail.com",
5484 "role": "Maintainer" 5786 "role": "Maintainer"
@@ -5487,6 +5789,11 @@
5487 "name": "Luke Bakken", 5789 "name": "Luke Bakken",
5488 "email": "luke@bakken.io", 5790 "email": "luke@bakken.io",
5489 "role": "Maintainer" 5791 "role": "Maintainer"
5792 },
5793 {
5794 "name": "Ramūnas Dronga",
5795 "email": "github@ramuno.lt",
5796 "role": "Maintainer"
5490 } 5797 }
5491 ], 5798 ],
5492 "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.", 5799 "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
@@ -5496,7 +5803,7 @@
5496 "queue", 5803 "queue",
5497 "rabbitmq" 5804 "rabbitmq"
5498 ], 5805 ],
5499 "time": "2019-11-19T15:15:19+00:00" 5806 "time": "2020-05-13T13:56:11+00:00"
5500 }, 5807 },
5501 { 5808 {
5502 "name": "php-amqplib/rabbitmq-bundle", 5809 "name": "php-amqplib/rabbitmq-bundle",
@@ -6317,20 +6624,20 @@
6317 }, 6624 },
6318 { 6625 {
6319 "name": "phpoption/phpoption", 6626 "name": "phpoption/phpoption",
6320 "version": "1.7.2", 6627 "version": "1.7.3",
6321 "source": { 6628 "source": {
6322 "type": "git", 6629 "type": "git",
6323 "url": "https://github.com/schmittjoh/php-option.git", 6630 "url": "https://github.com/schmittjoh/php-option.git",
6324 "reference": "77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959" 6631 "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae"
6325 }, 6632 },
6326 "dist": { 6633 "dist": {
6327 "type": "zip", 6634 "type": "zip",
6328 "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959", 6635 "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
6329 "reference": "77f7c4d2e65413aff5b5a8cc8b3caf7a28d81959", 6636 "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
6330 "shasum": "" 6637 "shasum": ""
6331 }, 6638 },
6332 "require": { 6639 "require": {
6333 "php": "^5.5.9 || ^7.0" 6640 "php": "^5.5.9 || ^7.0 || ^8.0"
6334 }, 6641 },
6335 "require-dev": { 6642 "require-dev": {
6336 "bamarni/composer-bin-plugin": "^1.3", 6643 "bamarni/composer-bin-plugin": "^1.3",
@@ -6368,20 +6675,20 @@
6368 "php", 6675 "php",
6369 "type" 6676 "type"
6370 ], 6677 ],
6371 "time": "2019-12-15T19:35:24+00:00" 6678 "time": "2020-03-21T18:07:53+00:00"
6372 }, 6679 },
6373 { 6680 {
6374 "name": "phpseclib/phpseclib", 6681 "name": "phpseclib/phpseclib",
6375 "version": "2.0.23", 6682 "version": "2.0.27",
6376 "source": { 6683 "source": {
6377 "type": "git", 6684 "type": "git",
6378 "url": "https://github.com/phpseclib/phpseclib.git", 6685 "url": "https://github.com/phpseclib/phpseclib.git",
6379 "reference": "c78eb5058d5bb1a183133c36d4ba5b6675dfa099" 6686 "reference": "34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc"
6380 }, 6687 },
6381 "dist": { 6688 "dist": {
6382 "type": "zip", 6689 "type": "zip",
6383 "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c78eb5058d5bb1a183133c36d4ba5b6675dfa099", 6690 "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc",
6384 "reference": "c78eb5058d5bb1a183133c36d4ba5b6675dfa099", 6691 "reference": "34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc",
6385 "shasum": "" 6692 "shasum": ""
6386 }, 6693 },
6387 "require": { 6694 "require": {
@@ -6460,7 +6767,21 @@
6460 "x.509", 6767 "x.509",
6461 "x509" 6768 "x509"
6462 ], 6769 ],
6463 "time": "2019-09-17T03:41:22+00:00" 6770 "funding": [
6771 {
6772 "url": "https://github.com/terrafrost",
6773 "type": "github"
6774 },
6775 {
6776 "url": "https://www.patreon.com/phpseclib",
6777 "type": "patreon"
6778 },
6779 {
6780 "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
6781 "type": "tidelift"
6782 }
6783 ],
6784 "time": "2020-04-04T23:17:33+00:00"
6464 }, 6785 },
6465 { 6786 {
6466 "name": "phpzip/phpzip", 6787 "name": "phpzip/phpzip",
@@ -7131,111 +7452,24 @@
7131 "time": "2019-03-08T08:55:37+00:00" 7452 "time": "2019-03-08T08:55:37+00:00"
7132 }, 7453 },
7133 { 7454 {
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", 7455 "name": "react/promise",
7222 "version": "v2.7.1", 7456 "version": "v2.8.0",
7223 "source": { 7457 "source": {
7224 "type": "git", 7458 "type": "git",
7225 "url": "https://github.com/reactphp/promise.git", 7459 "url": "https://github.com/reactphp/promise.git",
7226 "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d" 7460 "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
7227 }, 7461 },
7228 "dist": { 7462 "dist": {
7229 "type": "zip", 7463 "type": "zip",
7230 "url": "https://api.github.com/repos/reactphp/promise/zipball/31ffa96f8d2ed0341a57848cbb84d88b89dd664d", 7464 "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
7231 "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d", 7465 "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
7232 "shasum": "" 7466 "shasum": ""
7233 }, 7467 },
7234 "require": { 7468 "require": {
7235 "php": ">=5.4.0" 7469 "php": ">=5.4.0"
7236 }, 7470 },
7237 "require-dev": { 7471 "require-dev": {
7238 "phpunit/phpunit": "~4.8" 7472 "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
7239 }, 7473 },
7240 "type": "library", 7474 "type": "library",
7241 "autoload": { 7475 "autoload": {
@@ -7261,7 +7495,7 @@
7261 "promise", 7495 "promise",
7262 "promises" 7496 "promises"
7263 ], 7497 ],
7264 "time": "2019-01-07T21:25:54+00:00" 7498 "time": "2020-05-12T15:16:56+00:00"
7265 }, 7499 },
7266 { 7500 {
7267 "name": "scheb/two-factor-bundle", 7501 "name": "scheb/two-factor-bundle",
@@ -7540,22 +7774,23 @@
7540 }, 7774 },
7541 { 7775 {
7542 "name": "sentry/sentry", 7776 "name": "sentry/sentry",
7543 "version": "2.2.6", 7777 "version": "2.4.0",
7544 "source": { 7778 "source": {
7545 "type": "git", 7779 "type": "git",
7546 "url": "https://github.com/getsentry/sentry-php.git", 7780 "url": "https://github.com/getsentry/sentry-php.git",
7547 "reference": "c9b253229b95f8e5bbf6a3661a170a0be0f80563" 7781 "reference": "e44561875e0d724bac3d9cdb705bf58847acd425"
7548 }, 7782 },
7549 "dist": { 7783 "dist": {
7550 "type": "zip", 7784 "type": "zip",
7551 "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/c9b253229b95f8e5bbf6a3661a170a0be0f80563", 7785 "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/e44561875e0d724bac3d9cdb705bf58847acd425",
7552 "reference": "c9b253229b95f8e5bbf6a3661a170a0be0f80563", 7786 "reference": "e44561875e0d724bac3d9cdb705bf58847acd425",
7553 "shasum": "" 7787 "shasum": ""
7554 }, 7788 },
7555 "require": { 7789 "require": {
7556 "ext-json": "*", 7790 "ext-json": "*",
7557 "ext-mbstring": "*", 7791 "ext-mbstring": "*",
7558 "guzzlehttp/promises": "^1.3", 7792 "guzzlehttp/promises": "^1.3",
7793 "guzzlehttp/psr7": "^1.6",
7559 "jean85/pretty-package-versions": "^1.2", 7794 "jean85/pretty-package-versions": "^1.2",
7560 "php": "^7.1", 7795 "php": "^7.1",
7561 "php-http/async-client-implementation": "^1.0", 7796 "php-http/async-client-implementation": "^1.0",
@@ -7563,22 +7798,23 @@
7563 "php-http/discovery": "^1.6.1", 7798 "php-http/discovery": "^1.6.1",
7564 "php-http/httplug": "^1.1|^2.0", 7799 "php-http/httplug": "^1.1|^2.0",
7565 "php-http/message": "^1.5", 7800 "php-http/message": "^1.5",
7801 "psr/http-factory": "^1.0",
7566 "psr/http-message-implementation": "^1.0", 7802 "psr/http-message-implementation": "^1.0",
7567 "ramsey/uuid": "^3.3", 7803 "psr/log": "^1.0",
7568 "symfony/options-resolver": "^2.7|^3.0|^4.0|^5.0", 7804 "symfony/options-resolver": "^2.7|^3.0|^4.0|^5.0",
7569 "zendframework/zend-diactoros": "^1.7.1|^2.0" 7805 "symfony/polyfill-uuid": "^1.13.1"
7570 }, 7806 },
7571 "conflict": { 7807 "conflict": {
7572 "php-http/client-common": "1.8.0", 7808 "php-http/client-common": "1.8.0",
7573 "raven/raven": "*" 7809 "raven/raven": "*"
7574 }, 7810 },
7575 "require-dev": { 7811 "require-dev": {
7576 "friendsofphp/php-cs-fixer": "^2.13", 7812 "friendsofphp/php-cs-fixer": "^2.16",
7577 "monolog/monolog": "^1.3|^2.0", 7813 "monolog/monolog": "^1.3|^2.0",
7578 "php-http/mock-client": "^1.0", 7814 "php-http/mock-client": "^1.3",
7579 "phpstan/extension-installer": "^1.0", 7815 "phpstan/extension-installer": "^1.0",
7580 "phpstan/phpstan": "^0.11", 7816 "phpstan/phpstan": "^0.12",
7581 "phpstan/phpstan-phpunit": "^0.11", 7817 "phpstan/phpstan-phpunit": "^0.12",
7582 "phpunit/phpunit": "^7.5.18", 7818 "phpunit/phpunit": "^7.5.18",
7583 "symfony/phpunit-bridge": "^4.3|^5.0", 7819 "symfony/phpunit-bridge": "^4.3|^5.0",
7584 "vimeo/psalm": "^3.4" 7820 "vimeo/psalm": "^3.4"
@@ -7589,7 +7825,7 @@
7589 "type": "library", 7825 "type": "library",
7590 "extra": { 7826 "extra": {
7591 "branch-alias": { 7827 "branch-alias": {
7592 "dev-develop": "2.2-dev" 7828 "dev-master": "2.4-dev"
7593 } 7829 }
7594 }, 7830 },
7595 "autoload": { 7831 "autoload": {
@@ -7621,43 +7857,58 @@
7621 "logging", 7857 "logging",
7622 "sentry" 7858 "sentry"
7623 ], 7859 ],
7624 "time": "2019-12-18T08:56:34+00:00" 7860 "funding": [
7861 {
7862 "url": "https://sentry.io/",
7863 "type": "custom"
7864 },
7865 {
7866 "url": "https://sentry.io/pricing/",
7867 "type": "custom"
7868 }
7869 ],
7870 "time": "2020-05-20T20:49:38+00:00"
7625 }, 7871 },
7626 { 7872 {
7627 "name": "sentry/sentry-symfony", 7873 "name": "sentry/sentry-symfony",
7628 "version": "3.2.1", 7874 "version": "3.3.2",
7629 "source": { 7875 "source": {
7630 "type": "git", 7876 "type": "git",
7631 "url": "https://github.com/getsentry/sentry-symfony.git", 7877 "url": "https://github.com/getsentry/sentry-symfony.git",
7632 "reference": "620b90dc35c12ef96c6460df74e30441e359ce6d" 7878 "reference": "3a9c2669969604c362cc63ba8fa118d9a00ac711"
7633 }, 7879 },
7634 "dist": { 7880 "dist": {
7635 "type": "zip", 7881 "type": "zip",
7636 "url": "https://api.github.com/repos/getsentry/sentry-symfony/zipball/620b90dc35c12ef96c6460df74e30441e359ce6d", 7882 "url": "https://api.github.com/repos/getsentry/sentry-symfony/zipball/3a9c2669969604c362cc63ba8fa118d9a00ac711",
7637 "reference": "620b90dc35c12ef96c6460df74e30441e359ce6d", 7883 "reference": "3a9c2669969604c362cc63ba8fa118d9a00ac711",
7638 "shasum": "" 7884 "shasum": ""
7639 }, 7885 },
7640 "require": { 7886 "require": {
7641 "jean85/pretty-package-versions": "^1.0", 7887 "jean85/pretty-package-versions": "^1.0",
7888 "ocramius/package-versions": "^1.3.0",
7642 "php": "^7.1", 7889 "php": "^7.1",
7643 "sentry/sdk": "^2.0", 7890 "sentry/sdk": "^2.0",
7644 "symfony/config": "^2.8||^3.0||^4.0", 7891 "symfony/config": "^3.4||^4.0||^5.0",
7645 "symfony/console": "^2.8||^3.0||^4.0", 7892 "symfony/console": "^3.4||^4.0||^5.0",
7646 "symfony/dependency-injection": "^2.8||^3.0||^4.0", 7893 "symfony/dependency-injection": "^3.4||^4.0||^5.0",
7647 "symfony/event-dispatcher": "^2.8||^3.0||^4.0", 7894 "symfony/event-dispatcher": "^3.4||^4.0||^5.0",
7648 "symfony/http-kernel": "^2.8||^3.0||^4.0", 7895 "symfony/http-kernel": "^3.4||^4.0||^5.0",
7649 "symfony/security-core": "^2.8||^3.0||^4.0" 7896 "symfony/security-core": "^3.4||^4.0||^5.0"
7650 }, 7897 },
7651 "require-dev": { 7898 "require-dev": {
7652 "friendsofphp/php-cs-fixer": "^2.8", 7899 "friendsofphp/php-cs-fixer": "^2.8",
7653 "jangregor/phpstan-prophecy": "^0.3.0", 7900 "jangregor/phpstan-prophecy": "^0.3.0",
7654 "monolog/monolog": "^1.11||^2.0", 7901 "monolog/monolog": "^1.11||^2.0",
7655 "php-http/mock-client": "^1.0", 7902 "php-http/mock-client": "^1.0",
7656 "phpstan/phpstan": "^0.11",
7657 "phpstan/phpstan-phpunit": "^0.11", 7903 "phpstan/phpstan-phpunit": "^0.11",
7658 "phpunit/phpunit": "^7.5", 7904 "phpstan/phpstan-shim": "^0.11",
7659 "scrutinizer/ocular": "^1.4", 7905 "phpunit/phpunit": "^7.5||^8.5",
7660 "symfony/expression-language": "^2.8||^3.0||^4.0" 7906 "symfony/browser-kit": "^3.4||^4.0||^5.0",
7907 "symfony/expression-language": "^3.4||^4.0||^5.0",
7908 "symfony/framework-bundle": "^3.4||^4.0||^5.0",
7909 "symfony/monolog-bundle": "^3.4",
7910 "symfony/phpunit-bridge": "^5.0",
7911 "symfony/yaml": "^3.4||^4.0||^5.0"
7661 }, 7912 },
7662 "suggest": { 7913 "suggest": {
7663 "monolog/monolog": "Required to use the Monolog handler" 7914 "monolog/monolog": "Required to use the Monolog handler"
@@ -7698,20 +7949,20 @@
7698 "sentry", 7949 "sentry",
7699 "symfony" 7950 "symfony"
7700 ], 7951 ],
7701 "time": "2019-11-29T21:24:37+00:00" 7952 "time": "2020-01-16T08:45:03+00:00"
7702 }, 7953 },
7703 { 7954 {
7704 "name": "simplepie/simplepie", 7955 "name": "simplepie/simplepie",
7705 "version": "1.5.4", 7956 "version": "1.5.5",
7706 "source": { 7957 "source": {
7707 "type": "git", 7958 "type": "git",
7708 "url": "https://github.com/simplepie/simplepie.git", 7959 "url": "https://github.com/simplepie/simplepie.git",
7709 "reference": "f4c8246511a38fc9d99a59fb42f61eeeafb31663" 7960 "reference": "ae49e2201b6da9c808e5dac437aca356a11831b4"
7710 }, 7961 },
7711 "dist": { 7962 "dist": {
7712 "type": "zip", 7963 "type": "zip",
7713 "url": "https://api.github.com/repos/simplepie/simplepie/zipball/f4c8246511a38fc9d99a59fb42f61eeeafb31663", 7964 "url": "https://api.github.com/repos/simplepie/simplepie/zipball/ae49e2201b6da9c808e5dac437aca356a11831b4",
7714 "reference": "f4c8246511a38fc9d99a59fb42f61eeeafb31663", 7965 "reference": "ae49e2201b6da9c808e5dac437aca356a11831b4",
7715 "shasum": "" 7966 "shasum": ""
7716 }, 7967 },
7717 "require": { 7968 "require": {
@@ -7747,8 +7998,8 @@
7747 "role": "Creator, alumnus developer" 7998 "role": "Creator, alumnus developer"
7748 }, 7999 },
7749 { 8000 {
7750 "name": "Geoffrey Sneddon", 8001 "name": "Sam Sneddon",
7751 "homepage": "http://gsnedders.com/", 8002 "homepage": "https://gsnedders.com/",
7752 "role": "Alumnus developer" 8003 "role": "Alumnus developer"
7753 }, 8004 },
7754 { 8005 {
@@ -7765,7 +8016,7 @@
7765 "feeds", 8016 "feeds",
7766 "rss" 8017 "rss"
7767 ], 8018 ],
7768 "time": "2019-11-23T07:05:15+00:00" 8019 "time": "2020-05-01T12:23:14+00:00"
7769 }, 8020 },
7770 { 8021 {
7771 "name": "smalot/pdfparser", 8022 "name": "smalot/pdfparser",
@@ -8007,16 +8258,16 @@
8007 }, 8258 },
8008 { 8259 {
8009 "name": "symfony/http-client", 8260 "name": "symfony/http-client",
8010 "version": "v4.4.2", 8261 "version": "v4.4.8",
8011 "source": { 8262 "source": {
8012 "type": "git", 8263 "type": "git",
8013 "url": "https://github.com/symfony/http-client.git", 8264 "url": "https://github.com/symfony/http-client.git",
8014 "reference": "9ebfc77b5018a05226b38642def82746f3e2ce0f" 8265 "reference": "88d1745f4095727b8bf0574a0f414331f4ec229c"
8015 }, 8266 },
8016 "dist": { 8267 "dist": {
8017 "type": "zip", 8268 "type": "zip",
8018 "url": "https://api.github.com/repos/symfony/http-client/zipball/9ebfc77b5018a05226b38642def82746f3e2ce0f", 8269 "url": "https://api.github.com/repos/symfony/http-client/zipball/88d1745f4095727b8bf0574a0f414331f4ec229c",
8019 "reference": "9ebfc77b5018a05226b38642def82746f3e2ce0f", 8270 "reference": "88d1745f4095727b8bf0574a0f414331f4ec229c",
8020 "shasum": "" 8271 "shasum": ""
8021 }, 8272 },
8022 "require": { 8273 "require": {
@@ -8071,7 +8322,21 @@
8071 ], 8322 ],
8072 "description": "Symfony HttpClient component", 8323 "description": "Symfony HttpClient component",
8073 "homepage": "https://symfony.com", 8324 "homepage": "https://symfony.com",
8074 "time": "2019-12-19T15:57:49+00:00" 8325 "funding": [
8326 {
8327 "url": "https://symfony.com/sponsor",
8328 "type": "custom"
8329 },
8330 {
8331 "url": "https://github.com/fabpot",
8332 "type": "github"
8333 },
8334 {
8335 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8336 "type": "tidelift"
8337 }
8338 ],
8339 "time": "2020-04-12T16:14:02+00:00"
8075 }, 8340 },
8076 { 8341 {
8077 "name": "symfony/http-client-contracts", 8342 "name": "symfony/http-client-contracts",
@@ -8132,16 +8397,16 @@
8132 }, 8397 },
8133 { 8398 {
8134 "name": "symfony/mime", 8399 "name": "symfony/mime",
8135 "version": "v4.4.2", 8400 "version": "v4.4.8",
8136 "source": { 8401 "source": {
8137 "type": "git", 8402 "type": "git",
8138 "url": "https://github.com/symfony/mime.git", 8403 "url": "https://github.com/symfony/mime.git",
8139 "reference": "010cc488e56cafe5f7494dea70aea93100c234df" 8404 "reference": "7a583ffb6c7dd5aabb5db920817a3cc39261c517"
8140 }, 8405 },
8141 "dist": { 8406 "dist": {
8142 "type": "zip", 8407 "type": "zip",
8143 "url": "https://api.github.com/repos/symfony/mime/zipball/010cc488e56cafe5f7494dea70aea93100c234df", 8408 "url": "https://api.github.com/repos/symfony/mime/zipball/7a583ffb6c7dd5aabb5db920817a3cc39261c517",
8144 "reference": "010cc488e56cafe5f7494dea70aea93100c234df", 8409 "reference": "7a583ffb6c7dd5aabb5db920817a3cc39261c517",
8145 "shasum": "" 8410 "shasum": ""
8146 }, 8411 },
8147 "require": { 8412 "require": {
@@ -8190,7 +8455,21 @@
8190 "mime", 8455 "mime",
8191 "mime-type" 8456 "mime-type"
8192 ], 8457 ],
8193 "time": "2019-11-30T08:27:26+00:00" 8458 "funding": [
8459 {
8460 "url": "https://symfony.com/sponsor",
8461 "type": "custom"
8462 },
8463 {
8464 "url": "https://github.com/fabpot",
8465 "type": "github"
8466 },
8467 {
8468 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8469 "type": "tidelift"
8470 }
8471 ],
8472 "time": "2020-04-16T14:49:30+00:00"
8194 }, 8473 },
8195 { 8474 {
8196 "name": "symfony/monolog-bundle", 8475 "name": "symfony/monolog-bundle",
@@ -8257,16 +8536,16 @@
8257 }, 8536 },
8258 { 8537 {
8259 "name": "symfony/polyfill-apcu", 8538 "name": "symfony/polyfill-apcu",
8260 "version": "v1.15.0", 8539 "version": "v1.17.0",
8261 "source": { 8540 "source": {
8262 "type": "git", 8541 "type": "git",
8263 "url": "https://github.com/symfony/polyfill-apcu.git", 8542 "url": "https://github.com/symfony/polyfill-apcu.git",
8264 "reference": "d6b5c4ac62cd4ed622e583d027ae684de2d3c4bd" 8543 "reference": "9ec426b564916afb9bfd15f78708ec322eeb8538"
8265 }, 8544 },
8266 "dist": { 8545 "dist": {
8267 "type": "zip", 8546 "type": "zip",
8268 "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/d6b5c4ac62cd4ed622e583d027ae684de2d3c4bd", 8547 "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/9ec426b564916afb9bfd15f78708ec322eeb8538",
8269 "reference": "d6b5c4ac62cd4ed622e583d027ae684de2d3c4bd", 8548 "reference": "9ec426b564916afb9bfd15f78708ec322eeb8538",
8270 "shasum": "" 8549 "shasum": ""
8271 }, 8550 },
8272 "require": { 8551 "require": {
@@ -8275,7 +8554,7 @@
8275 "type": "library", 8554 "type": "library",
8276 "extra": { 8555 "extra": {
8277 "branch-alias": { 8556 "branch-alias": {
8278 "dev-master": "1.15-dev" 8557 "dev-master": "1.17-dev"
8279 } 8558 }
8280 }, 8559 },
8281 "autoload": { 8560 "autoload": {
@@ -8309,20 +8588,34 @@
8309 "portable", 8588 "portable",
8310 "shim" 8589 "shim"
8311 ], 8590 ],
8312 "time": "2020-02-27T09:26:54+00:00" 8591 "funding": [
8592 {
8593 "url": "https://symfony.com/sponsor",
8594 "type": "custom"
8595 },
8596 {
8597 "url": "https://github.com/fabpot",
8598 "type": "github"
8599 },
8600 {
8601 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8602 "type": "tidelift"
8603 }
8604 ],
8605 "time": "2020-05-12T16:14:59+00:00"
8313 }, 8606 },
8314 { 8607 {
8315 "name": "symfony/polyfill-ctype", 8608 "name": "symfony/polyfill-ctype",
8316 "version": "v1.15.0", 8609 "version": "v1.17.0",
8317 "source": { 8610 "source": {
8318 "type": "git", 8611 "type": "git",
8319 "url": "https://github.com/symfony/polyfill-ctype.git", 8612 "url": "https://github.com/symfony/polyfill-ctype.git",
8320 "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14" 8613 "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
8321 }, 8614 },
8322 "dist": { 8615 "dist": {
8323 "type": "zip", 8616 "type": "zip",
8324 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/4719fa9c18b0464d399f1a63bf624b42b6fa8d14", 8617 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
8325 "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14", 8618 "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
8326 "shasum": "" 8619 "shasum": ""
8327 }, 8620 },
8328 "require": { 8621 "require": {
@@ -8334,7 +8627,7 @@
8334 "type": "library", 8627 "type": "library",
8335 "extra": { 8628 "extra": {
8336 "branch-alias": { 8629 "branch-alias": {
8337 "dev-master": "1.15-dev" 8630 "dev-master": "1.17-dev"
8338 } 8631 }
8339 }, 8632 },
8340 "autoload": { 8633 "autoload": {
@@ -8367,20 +8660,34 @@
8367 "polyfill", 8660 "polyfill",
8368 "portable" 8661 "portable"
8369 ], 8662 ],
8370 "time": "2020-02-27T09:26:54+00:00" 8663 "funding": [
8664 {
8665 "url": "https://symfony.com/sponsor",
8666 "type": "custom"
8667 },
8668 {
8669 "url": "https://github.com/fabpot",
8670 "type": "github"
8671 },
8672 {
8673 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8674 "type": "tidelift"
8675 }
8676 ],
8677 "time": "2020-05-12T16:14:59+00:00"
8371 }, 8678 },
8372 { 8679 {
8373 "name": "symfony/polyfill-iconv", 8680 "name": "symfony/polyfill-iconv",
8374 "version": "v1.13.1", 8681 "version": "v1.17.0",
8375 "source": { 8682 "source": {
8376 "type": "git", 8683 "type": "git",
8377 "url": "https://github.com/symfony/polyfill-iconv.git", 8684 "url": "https://github.com/symfony/polyfill-iconv.git",
8378 "reference": "a019efccc03f1a335af6b4f20c30f5ea8060be36" 8685 "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
8379 }, 8686 },
8380 "dist": { 8687 "dist": {
8381 "type": "zip", 8688 "type": "zip",
8382 "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/a019efccc03f1a335af6b4f20c30f5ea8060be36", 8689 "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
8383 "reference": "a019efccc03f1a335af6b4f20c30f5ea8060be36", 8690 "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
8384 "shasum": "" 8691 "shasum": ""
8385 }, 8692 },
8386 "require": { 8693 "require": {
@@ -8392,7 +8699,7 @@
8392 "type": "library", 8699 "type": "library",
8393 "extra": { 8700 "extra": {
8394 "branch-alias": { 8701 "branch-alias": {
8395 "dev-master": "1.13-dev" 8702 "dev-master": "1.17-dev"
8396 } 8703 }
8397 }, 8704 },
8398 "autoload": { 8705 "autoload": {
@@ -8426,20 +8733,34 @@
8426 "portable", 8733 "portable",
8427 "shim" 8734 "shim"
8428 ], 8735 ],
8429 "time": "2019-11-27T13:56:44+00:00" 8736 "funding": [
8737 {
8738 "url": "https://symfony.com/sponsor",
8739 "type": "custom"
8740 },
8741 {
8742 "url": "https://github.com/fabpot",
8743 "type": "github"
8744 },
8745 {
8746 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8747 "type": "tidelift"
8748 }
8749 ],
8750 "time": "2020-05-12T16:47:27+00:00"
8430 }, 8751 },
8431 { 8752 {
8432 "name": "symfony/polyfill-intl-icu", 8753 "name": "symfony/polyfill-intl-icu",
8433 "version": "v1.15.0", 8754 "version": "v1.17.0",
8434 "source": { 8755 "source": {
8435 "type": "git", 8756 "type": "git",
8436 "url": "https://github.com/symfony/polyfill-intl-icu.git", 8757 "url": "https://github.com/symfony/polyfill-intl-icu.git",
8437 "reference": "9c281272735eb66476e0fa7381e03fb0d4b60197" 8758 "reference": "4ef3923e4a86e1b6ef72d42be59dbf7d33a685e3"
8438 }, 8759 },
8439 "dist": { 8760 "dist": {
8440 "type": "zip", 8761 "type": "zip",
8441 "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/9c281272735eb66476e0fa7381e03fb0d4b60197", 8762 "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/4ef3923e4a86e1b6ef72d42be59dbf7d33a685e3",
8442 "reference": "9c281272735eb66476e0fa7381e03fb0d4b60197", 8763 "reference": "4ef3923e4a86e1b6ef72d42be59dbf7d33a685e3",
8443 "shasum": "" 8764 "shasum": ""
8444 }, 8765 },
8445 "require": { 8766 "require": {
@@ -8452,7 +8773,7 @@
8452 "type": "library", 8773 "type": "library",
8453 "extra": { 8774 "extra": {
8454 "branch-alias": { 8775 "branch-alias": {
8455 "dev-master": "1.15-dev" 8776 "dev-master": "1.17-dev"
8456 } 8777 }
8457 }, 8778 },
8458 "autoload": { 8779 "autoload": {
@@ -8484,26 +8805,40 @@
8484 "portable", 8805 "portable",
8485 "shim" 8806 "shim"
8486 ], 8807 ],
8487 "time": "2020-02-27T09:26:54+00:00" 8808 "funding": [
8809 {
8810 "url": "https://symfony.com/sponsor",
8811 "type": "custom"
8812 },
8813 {
8814 "url": "https://github.com/fabpot",
8815 "type": "github"
8816 },
8817 {
8818 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8819 "type": "tidelift"
8820 }
8821 ],
8822 "time": "2020-05-12T16:14:59+00:00"
8488 }, 8823 },
8489 { 8824 {
8490 "name": "symfony/polyfill-intl-idn", 8825 "name": "symfony/polyfill-intl-idn",
8491 "version": "v1.13.1", 8826 "version": "v1.17.0",
8492 "source": { 8827 "source": {
8493 "type": "git", 8828 "type": "git",
8494 "url": "https://github.com/symfony/polyfill-intl-idn.git", 8829 "url": "https://github.com/symfony/polyfill-intl-idn.git",
8495 "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46" 8830 "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
8496 }, 8831 },
8497 "dist": { 8832 "dist": {
8498 "type": "zip", 8833 "type": "zip",
8499 "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6f9c239e61e1b0c9229a28ff89a812dc449c3d46", 8834 "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
8500 "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46", 8835 "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
8501 "shasum": "" 8836 "shasum": ""
8502 }, 8837 },
8503 "require": { 8838 "require": {
8504 "php": ">=5.3.3", 8839 "php": ">=5.3.3",
8505 "symfony/polyfill-mbstring": "^1.3", 8840 "symfony/polyfill-mbstring": "^1.3",
8506 "symfony/polyfill-php72": "^1.9" 8841 "symfony/polyfill-php72": "^1.10"
8507 }, 8842 },
8508 "suggest": { 8843 "suggest": {
8509 "ext-intl": "For best performance" 8844 "ext-intl": "For best performance"
@@ -8511,7 +8846,7 @@
8511 "type": "library", 8846 "type": "library",
8512 "extra": { 8847 "extra": {
8513 "branch-alias": { 8848 "branch-alias": {
8514 "dev-master": "1.13-dev" 8849 "dev-master": "1.17-dev"
8515 } 8850 }
8516 }, 8851 },
8517 "autoload": { 8852 "autoload": {
@@ -8546,20 +8881,34 @@
8546 "portable", 8881 "portable",
8547 "shim" 8882 "shim"
8548 ], 8883 ],
8549 "time": "2019-11-27T13:56:44+00:00" 8884 "funding": [
8885 {
8886 "url": "https://symfony.com/sponsor",
8887 "type": "custom"
8888 },
8889 {
8890 "url": "https://github.com/fabpot",
8891 "type": "github"
8892 },
8893 {
8894 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8895 "type": "tidelift"
8896 }
8897 ],
8898 "time": "2020-05-12T16:47:27+00:00"
8550 }, 8899 },
8551 { 8900 {
8552 "name": "symfony/polyfill-mbstring", 8901 "name": "symfony/polyfill-mbstring",
8553 "version": "v1.15.0", 8902 "version": "v1.17.0",
8554 "source": { 8903 "source": {
8555 "type": "git", 8904 "type": "git",
8556 "url": "https://github.com/symfony/polyfill-mbstring.git", 8905 "url": "https://github.com/symfony/polyfill-mbstring.git",
8557 "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac" 8906 "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
8558 }, 8907 },
8559 "dist": { 8908 "dist": {
8560 "type": "zip", 8909 "type": "zip",
8561 "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/81ffd3a9c6d707be22e3012b827de1c9775fc5ac", 8910 "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
8562 "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac", 8911 "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
8563 "shasum": "" 8912 "shasum": ""
8564 }, 8913 },
8565 "require": { 8914 "require": {
@@ -8571,7 +8920,7 @@
8571 "type": "library", 8920 "type": "library",
8572 "extra": { 8921 "extra": {
8573 "branch-alias": { 8922 "branch-alias": {
8574 "dev-master": "1.15-dev" 8923 "dev-master": "1.17-dev"
8575 } 8924 }
8576 }, 8925 },
8577 "autoload": { 8926 "autoload": {
@@ -8605,20 +8954,34 @@
8605 "portable", 8954 "portable",
8606 "shim" 8955 "shim"
8607 ], 8956 ],
8608 "time": "2020-03-09T19:04:49+00:00" 8957 "funding": [
8958 {
8959 "url": "https://symfony.com/sponsor",
8960 "type": "custom"
8961 },
8962 {
8963 "url": "https://github.com/fabpot",
8964 "type": "github"
8965 },
8966 {
8967 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8968 "type": "tidelift"
8969 }
8970 ],
8971 "time": "2020-05-12T16:47:27+00:00"
8609 }, 8972 },
8610 { 8973 {
8611 "name": "symfony/polyfill-php56", 8974 "name": "symfony/polyfill-php56",
8612 "version": "v1.15.0", 8975 "version": "v1.17.0",
8613 "source": { 8976 "source": {
8614 "type": "git", 8977 "type": "git",
8615 "url": "https://github.com/symfony/polyfill-php56.git", 8978 "url": "https://github.com/symfony/polyfill-php56.git",
8616 "reference": "d51ec491c8ddceae7dca8dd6c7e30428f543f37d" 8979 "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
8617 }, 8980 },
8618 "dist": { 8981 "dist": {
8619 "type": "zip", 8982 "type": "zip",
8620 "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/d51ec491c8ddceae7dca8dd6c7e30428f543f37d", 8983 "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
8621 "reference": "d51ec491c8ddceae7dca8dd6c7e30428f543f37d", 8984 "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
8622 "shasum": "" 8985 "shasum": ""
8623 }, 8986 },
8624 "require": { 8987 "require": {
@@ -8628,7 +8991,7 @@
8628 "type": "library", 8991 "type": "library",
8629 "extra": { 8992 "extra": {
8630 "branch-alias": { 8993 "branch-alias": {
8631 "dev-master": "1.15-dev" 8994 "dev-master": "1.17-dev"
8632 } 8995 }
8633 }, 8996 },
8634 "autoload": { 8997 "autoload": {
@@ -8661,20 +9024,34 @@
8661 "portable", 9024 "portable",
8662 "shim" 9025 "shim"
8663 ], 9026 ],
8664 "time": "2020-03-09T19:04:49+00:00" 9027 "funding": [
9028 {
9029 "url": "https://symfony.com/sponsor",
9030 "type": "custom"
9031 },
9032 {
9033 "url": "https://github.com/fabpot",
9034 "type": "github"
9035 },
9036 {
9037 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9038 "type": "tidelift"
9039 }
9040 ],
9041 "time": "2020-05-12T16:47:27+00:00"
8665 }, 9042 },
8666 { 9043 {
8667 "name": "symfony/polyfill-php70", 9044 "name": "symfony/polyfill-php70",
8668 "version": "v1.15.0", 9045 "version": "v1.17.0",
8669 "source": { 9046 "source": {
8670 "type": "git", 9047 "type": "git",
8671 "url": "https://github.com/symfony/polyfill-php70.git", 9048 "url": "https://github.com/symfony/polyfill-php70.git",
8672 "reference": "2a18e37a489803559284416df58c71ccebe50bf0" 9049 "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
8673 }, 9050 },
8674 "dist": { 9051 "dist": {
8675 "type": "zip", 9052 "type": "zip",
8676 "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/2a18e37a489803559284416df58c71ccebe50bf0", 9053 "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
8677 "reference": "2a18e37a489803559284416df58c71ccebe50bf0", 9054 "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
8678 "shasum": "" 9055 "shasum": ""
8679 }, 9056 },
8680 "require": { 9057 "require": {
@@ -8684,7 +9061,7 @@
8684 "type": "library", 9061 "type": "library",
8685 "extra": { 9062 "extra": {
8686 "branch-alias": { 9063 "branch-alias": {
8687 "dev-master": "1.15-dev" 9064 "dev-master": "1.17-dev"
8688 } 9065 }
8689 }, 9066 },
8690 "autoload": { 9067 "autoload": {
@@ -8720,20 +9097,34 @@
8720 "portable", 9097 "portable",
8721 "shim" 9098 "shim"
8722 ], 9099 ],
8723 "time": "2020-02-27T09:26:54+00:00" 9100 "funding": [
9101 {
9102 "url": "https://symfony.com/sponsor",
9103 "type": "custom"
9104 },
9105 {
9106 "url": "https://github.com/fabpot",
9107 "type": "github"
9108 },
9109 {
9110 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9111 "type": "tidelift"
9112 }
9113 ],
9114 "time": "2020-05-12T16:47:27+00:00"
8724 }, 9115 },
8725 { 9116 {
8726 "name": "symfony/polyfill-php72", 9117 "name": "symfony/polyfill-php72",
8727 "version": "v1.15.0", 9118 "version": "v1.17.0",
8728 "source": { 9119 "source": {
8729 "type": "git", 9120 "type": "git",
8730 "url": "https://github.com/symfony/polyfill-php72.git", 9121 "url": "https://github.com/symfony/polyfill-php72.git",
8731 "reference": "37b0976c78b94856543260ce09b460a7bc852747" 9122 "reference": "f048e612a3905f34931127360bdd2def19a5e582"
8732 }, 9123 },
8733 "dist": { 9124 "dist": {
8734 "type": "zip", 9125 "type": "zip",
8735 "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/37b0976c78b94856543260ce09b460a7bc852747", 9126 "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
8736 "reference": "37b0976c78b94856543260ce09b460a7bc852747", 9127 "reference": "f048e612a3905f34931127360bdd2def19a5e582",
8737 "shasum": "" 9128 "shasum": ""
8738 }, 9129 },
8739 "require": { 9130 "require": {
@@ -8742,7 +9133,7 @@
8742 "type": "library", 9133 "type": "library",
8743 "extra": { 9134 "extra": {
8744 "branch-alias": { 9135 "branch-alias": {
8745 "dev-master": "1.15-dev" 9136 "dev-master": "1.17-dev"
8746 } 9137 }
8747 }, 9138 },
8748 "autoload": { 9139 "autoload": {
@@ -8775,20 +9166,34 @@
8775 "portable", 9166 "portable",
8776 "shim" 9167 "shim"
8777 ], 9168 ],
8778 "time": "2020-02-27T09:26:54+00:00" 9169 "funding": [
9170 {
9171 "url": "https://symfony.com/sponsor",
9172 "type": "custom"
9173 },
9174 {
9175 "url": "https://github.com/fabpot",
9176 "type": "github"
9177 },
9178 {
9179 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9180 "type": "tidelift"
9181 }
9182 ],
9183 "time": "2020-05-12T16:47:27+00:00"
8779 }, 9184 },
8780 { 9185 {
8781 "name": "symfony/polyfill-php73", 9186 "name": "symfony/polyfill-php73",
8782 "version": "v1.13.1", 9187 "version": "v1.17.0",
8783 "source": { 9188 "source": {
8784 "type": "git", 9189 "type": "git",
8785 "url": "https://github.com/symfony/polyfill-php73.git", 9190 "url": "https://github.com/symfony/polyfill-php73.git",
8786 "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f" 9191 "reference": "a760d8964ff79ab9bf057613a5808284ec852ccc"
8787 }, 9192 },
8788 "dist": { 9193 "dist": {
8789 "type": "zip", 9194 "type": "zip",
8790 "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/4b0e2222c55a25b4541305a053013d5647d3a25f", 9195 "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a760d8964ff79ab9bf057613a5808284ec852ccc",
8791 "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f", 9196 "reference": "a760d8964ff79ab9bf057613a5808284ec852ccc",
8792 "shasum": "" 9197 "shasum": ""
8793 }, 9198 },
8794 "require": { 9199 "require": {
@@ -8797,7 +9202,7 @@
8797 "type": "library", 9202 "type": "library",
8798 "extra": { 9203 "extra": {
8799 "branch-alias": { 9204 "branch-alias": {
8800 "dev-master": "1.13-dev" 9205 "dev-master": "1.17-dev"
8801 } 9206 }
8802 }, 9207 },
8803 "autoload": { 9208 "autoload": {
@@ -8833,20 +9238,34 @@
8833 "portable", 9238 "portable",
8834 "shim" 9239 "shim"
8835 ], 9240 ],
8836 "time": "2019-11-27T16:25:15+00:00" 9241 "funding": [
9242 {
9243 "url": "https://symfony.com/sponsor",
9244 "type": "custom"
9245 },
9246 {
9247 "url": "https://github.com/fabpot",
9248 "type": "github"
9249 },
9250 {
9251 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9252 "type": "tidelift"
9253 }
9254 ],
9255 "time": "2020-05-12T16:47:27+00:00"
8837 }, 9256 },
8838 { 9257 {
8839 "name": "symfony/polyfill-util", 9258 "name": "symfony/polyfill-util",
8840 "version": "v1.15.0", 9259 "version": "v1.17.0",
8841 "source": { 9260 "source": {
8842 "type": "git", 9261 "type": "git",
8843 "url": "https://github.com/symfony/polyfill-util.git", 9262 "url": "https://github.com/symfony/polyfill-util.git",
8844 "reference": "d8e76c104127675d0ea3df3be0f2ae24a8619027" 9263 "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
8845 }, 9264 },
8846 "dist": { 9265 "dist": {
8847 "type": "zip", 9266 "type": "zip",
8848 "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/d8e76c104127675d0ea3df3be0f2ae24a8619027", 9267 "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
8849 "reference": "d8e76c104127675d0ea3df3be0f2ae24a8619027", 9268 "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
8850 "shasum": "" 9269 "shasum": ""
8851 }, 9270 },
8852 "require": { 9271 "require": {
@@ -8855,7 +9274,7 @@
8855 "type": "library", 9274 "type": "library",
8856 "extra": { 9275 "extra": {
8857 "branch-alias": { 9276 "branch-alias": {
8858 "dev-master": "1.15-dev" 9277 "dev-master": "1.17-dev"
8859 } 9278 }
8860 }, 9279 },
8861 "autoload": { 9280 "autoload": {
@@ -8885,7 +9304,94 @@
8885 "polyfill", 9304 "polyfill",
8886 "shim" 9305 "shim"
8887 ], 9306 ],
8888 "time": "2020-03-02T11:55:35+00:00" 9307 "funding": [
9308 {
9309 "url": "https://symfony.com/sponsor",
9310 "type": "custom"
9311 },
9312 {
9313 "url": "https://github.com/fabpot",
9314 "type": "github"
9315 },
9316 {
9317 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9318 "type": "tidelift"
9319 }
9320 ],
9321 "time": "2020-05-12T16:14:59+00:00"
9322 },
9323 {
9324 "name": "symfony/polyfill-uuid",
9325 "version": "v1.17.0",
9326 "source": {
9327 "type": "git",
9328 "url": "https://github.com/symfony/polyfill-uuid.git",
9329 "reference": "6dbf0269e8aeab8253a5059c51c1760fb4034e87"
9330 },
9331 "dist": {
9332 "type": "zip",
9333 "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/6dbf0269e8aeab8253a5059c51c1760fb4034e87",
9334 "reference": "6dbf0269e8aeab8253a5059c51c1760fb4034e87",
9335 "shasum": ""
9336 },
9337 "require": {
9338 "paragonie/random_compat": "~1.0|~2.0|~9.99",
9339 "php": ">=5.3.3"
9340 },
9341 "suggest": {
9342 "ext-uuid": "For best performance"
9343 },
9344 "type": "library",
9345 "extra": {
9346 "branch-alias": {
9347 "dev-master": "1.17-dev"
9348 }
9349 },
9350 "autoload": {
9351 "psr-4": {
9352 "Symfony\\Polyfill\\Uuid\\": ""
9353 },
9354 "files": [
9355 "bootstrap.php"
9356 ]
9357 },
9358 "notification-url": "https://packagist.org/downloads/",
9359 "license": [
9360 "MIT"
9361 ],
9362 "authors": [
9363 {
9364 "name": "Grégoire Pineau",
9365 "email": "lyrixx@lyrixx.info"
9366 },
9367 {
9368 "name": "Symfony Community",
9369 "homepage": "https://symfony.com/contributors"
9370 }
9371 ],
9372 "description": "Symfony polyfill for uuid functions",
9373 "homepage": "https://symfony.com",
9374 "keywords": [
9375 "compatibility",
9376 "polyfill",
9377 "portable",
9378 "uuid"
9379 ],
9380 "funding": [
9381 {
9382 "url": "https://symfony.com/sponsor",
9383 "type": "custom"
9384 },
9385 {
9386 "url": "https://github.com/fabpot",
9387 "type": "github"
9388 },
9389 {
9390 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
9391 "type": "tidelift"
9392 }
9393 ],
9394 "time": "2020-05-12T16:47:27+00:00"
8889 }, 9395 },
8890 { 9396 {
8891 "name": "symfony/service-contracts", 9397 "name": "symfony/service-contracts",
@@ -9425,8 +9931,8 @@
9425 "authors": [ 9931 "authors": [
9426 { 9932 {
9427 "name": "Sander Kromwijk", 9933 "name": "Sander Kromwijk",
9428 "email": "s.kromwijk@gmail.co", 9934 "role": "Original developer",
9429 "role": "Original developer" 9935 "email": "s.kromwijk@gmail.co"
9430 }, 9936 },
9431 { 9937 {
9432 "name": "Nicolas Lœuillet", 9938 "name": "Nicolas Lœuillet",
@@ -9622,7 +10128,7 @@
9622 "email": "adrien.brault@gmail.com" 10128 "email": "adrien.brault@gmail.com"
9623 }, 10129 },
9624 { 10130 {
9625 "name": "William DURAND", 10131 "name": "William Durand",
9626 "email": "william.durand1@gmail.com" 10132 "email": "william.durand1@gmail.com"
9627 } 10133 }
9628 ], 10134 ],
@@ -9672,7 +10178,7 @@
9672 ], 10178 ],
9673 "authors": [ 10179 "authors": [
9674 { 10180 {
9675 "name": "William DURAND", 10181 "name": "William Durand",
9676 "email": "william.durand1@gmail.com" 10182 "email": "william.durand1@gmail.com"
9677 } 10183 }
9678 ], 10184 ],
@@ -9774,187 +10280,6 @@
9774 "negotiation" 10280 "negotiation"
9775 ], 10281 ],
9776 "time": "2017-05-14T17:21:12+00:00" 10282 "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 } 10283 }
9959 ], 10284 ],
9960 "packages-dev": [ 10285 "packages-dev": [
@@ -10466,25 +10791,25 @@
10466 }, 10791 },
10467 { 10792 {
10468 "name": "nette/di", 10793 "name": "nette/di",
10469 "version": "v3.0.2", 10794 "version": "v3.0.4",
10470 "source": { 10795 "source": {
10471 "type": "git", 10796 "type": "git",
10472 "url": "https://github.com/nette/di.git", 10797 "url": "https://github.com/nette/di.git",
10473 "reference": "7ae47daa94b8dafbd0e8b6164e22e2d18d3e73ac" 10798 "reference": "34d3e47ebe96229b7671664893a3b1128c102213"
10474 }, 10799 },
10475 "dist": { 10800 "dist": {
10476 "type": "zip", 10801 "type": "zip",
10477 "url": "https://api.github.com/repos/nette/di/zipball/7ae47daa94b8dafbd0e8b6164e22e2d18d3e73ac", 10802 "url": "https://api.github.com/repos/nette/di/zipball/34d3e47ebe96229b7671664893a3b1128c102213",
10478 "reference": "7ae47daa94b8dafbd0e8b6164e22e2d18d3e73ac", 10803 "reference": "34d3e47ebe96229b7671664893a3b1128c102213",
10479 "shasum": "" 10804 "shasum": ""
10480 }, 10805 },
10481 "require": { 10806 "require": {
10482 "ext-tokenizer": "*", 10807 "ext-tokenizer": "*",
10483 "nette/neon": "^3.0", 10808 "nette/neon": "^3.0",
10484 "nette/php-generator": "^3.3", 10809 "nette/php-generator": "^3.3.3",
10485 "nette/robot-loader": "^3.2", 10810 "nette/robot-loader": "^3.2",
10486 "nette/schema": "^1.0", 10811 "nette/schema": "^1.0",
10487 "nette/utils": "^3.0", 10812 "nette/utils": "^3.1",
10488 "php": ">=7.1" 10813 "php": ">=7.1"
10489 }, 10814 },
10490 "conflict": { 10815 "conflict": {
@@ -10504,16 +10829,13 @@
10504 "autoload": { 10829 "autoload": {
10505 "classmap": [ 10830 "classmap": [
10506 "src/" 10831 "src/"
10507 ],
10508 "files": [
10509 "src/compatibility.php"
10510 ] 10832 ]
10511 }, 10833 },
10512 "notification-url": "https://packagist.org/downloads/", 10834 "notification-url": "https://packagist.org/downloads/",
10513 "license": [ 10835 "license": [
10514 "BSD-3-Clause", 10836 "BSD-3-Clause",
10515 "GPL-2.0", 10837 "GPL-2.0-only",
10516 "GPL-3.0" 10838 "GPL-3.0-only"
10517 ], 10839 ],
10518 "authors": [ 10840 "authors": [
10519 { 10841 {
@@ -10536,24 +10858,24 @@
10536 "nette", 10858 "nette",
10537 "static" 10859 "static"
10538 ], 10860 ],
10539 "time": "2019-12-17T04:03:21+00:00" 10861 "time": "2020-05-14T10:29:59+00:00"
10540 }, 10862 },
10541 { 10863 {
10542 "name": "nette/finder", 10864 "name": "nette/finder",
10543 "version": "v2.5.1", 10865 "version": "v2.5.2",
10544 "source": { 10866 "source": {
10545 "type": "git", 10867 "type": "git",
10546 "url": "https://github.com/nette/finder.git", 10868 "url": "https://github.com/nette/finder.git",
10547 "reference": "14164e1ddd69e9c5f627ff82a10874b3f5bba5fe" 10869 "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50"
10548 }, 10870 },
10549 "dist": { 10871 "dist": {
10550 "type": "zip", 10872 "type": "zip",
10551 "url": "https://api.github.com/repos/nette/finder/zipball/14164e1ddd69e9c5f627ff82a10874b3f5bba5fe", 10873 "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50",
10552 "reference": "14164e1ddd69e9c5f627ff82a10874b3f5bba5fe", 10874 "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50",
10553 "shasum": "" 10875 "shasum": ""
10554 }, 10876 },
10555 "require": { 10877 "require": {
10556 "nette/utils": "^2.4 || ~3.0.0", 10878 "nette/utils": "^2.4 || ^3.0",
10557 "php": ">=7.1" 10879 "php": ">=7.1"
10558 }, 10880 },
10559 "conflict": { 10881 "conflict": {
@@ -10561,6 +10883,7 @@
10561 }, 10883 },
10562 "require-dev": { 10884 "require-dev": {
10563 "nette/tester": "^2.0", 10885 "nette/tester": "^2.0",
10886 "phpstan/phpstan": "^0.12",
10564 "tracy/tracy": "^2.3" 10887 "tracy/tracy": "^2.3"
10565 }, 10888 },
10566 "type": "library", 10889 "type": "library",
@@ -10598,20 +10921,20 @@
10598 "iterator", 10921 "iterator",
10599 "nette" 10922 "nette"
10600 ], 10923 ],
10601 "time": "2019-07-11T18:02:17+00:00" 10924 "time": "2020-01-03T20:35:40+00:00"
10602 }, 10925 },
10603 { 10926 {
10604 "name": "nette/neon", 10927 "name": "nette/neon",
10605 "version": "v3.1.0", 10928 "version": "v3.1.2",
10606 "source": { 10929 "source": {
10607 "type": "git", 10930 "type": "git",
10608 "url": "https://github.com/nette/neon.git", 10931 "url": "https://github.com/nette/neon.git",
10609 "reference": "0a18fc88801a14d66587932de133eeca01f7ce8e" 10932 "reference": "3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e"
10610 }, 10933 },
10611 "dist": { 10934 "dist": {
10612 "type": "zip", 10935 "type": "zip",
10613 "url": "https://api.github.com/repos/nette/neon/zipball/0a18fc88801a14d66587932de133eeca01f7ce8e", 10936 "url": "https://api.github.com/repos/nette/neon/zipball/3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e",
10614 "reference": "0a18fc88801a14d66587932de133eeca01f7ce8e", 10937 "reference": "3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e",
10615 "shasum": "" 10938 "shasum": ""
10616 }, 10939 },
10617 "require": { 10940 "require": {
@@ -10638,8 +10961,8 @@
10638 "notification-url": "https://packagist.org/downloads/", 10961 "notification-url": "https://packagist.org/downloads/",
10639 "license": [ 10962 "license": [
10640 "BSD-3-Clause", 10963 "BSD-3-Clause",
10641 "GPL-2.0", 10964 "GPL-2.0-only",
10642 "GPL-3.0" 10965 "GPL-3.0-only"
10643 ], 10966 ],
10644 "authors": [ 10967 "authors": [
10645 { 10968 {
@@ -10652,7 +10975,7 @@
10652 } 10975 }
10653 ], 10976 ],
10654 "description": "🍸 Nette NEON: encodes and decodes NEON file format.", 10977 "description": "🍸 Nette NEON: encodes and decodes NEON file format.",
10655 "homepage": "http://ne-on.org", 10978 "homepage": "https://ne-on.org",
10656 "keywords": [ 10979 "keywords": [
10657 "export", 10980 "export",
10658 "import", 10981 "import",
@@ -10660,28 +10983,29 @@
10660 "nette", 10983 "nette",
10661 "yaml" 10984 "yaml"
10662 ], 10985 ],
10663 "time": "2019-12-27T04:00:04+00:00" 10986 "time": "2020-03-04T11:47:04+00:00"
10664 }, 10987 },
10665 { 10988 {
10666 "name": "nette/php-generator", 10989 "name": "nette/php-generator",
10667 "version": "v3.3.1", 10990 "version": "v3.3.4",
10668 "source": { 10991 "source": {
10669 "type": "git", 10992 "type": "git",
10670 "url": "https://github.com/nette/php-generator.git", 10993 "url": "https://github.com/nette/php-generator.git",
10671 "reference": "4240fd7adf499138c07b814ef9b9a6df9f6d7187" 10994 "reference": "8fe7e699dca7db186f56d75800cb1ec32e39c856"
10672 }, 10995 },
10673 "dist": { 10996 "dist": {
10674 "type": "zip", 10997 "type": "zip",
10675 "url": "https://api.github.com/repos/nette/php-generator/zipball/4240fd7adf499138c07b814ef9b9a6df9f6d7187", 10998 "url": "https://api.github.com/repos/nette/php-generator/zipball/8fe7e699dca7db186f56d75800cb1ec32e39c856",
10676 "reference": "4240fd7adf499138c07b814ef9b9a6df9f6d7187", 10999 "reference": "8fe7e699dca7db186f56d75800cb1ec32e39c856",
10677 "shasum": "" 11000 "shasum": ""
10678 }, 11001 },
10679 "require": { 11002 "require": {
10680 "nette/utils": "^2.4.2 || ~3.0.0", 11003 "nette/utils": "^2.4.2 || ^3.0",
10681 "php": ">=7.1" 11004 "php": ">=7.1"
10682 }, 11005 },
10683 "require-dev": { 11006 "require-dev": {
10684 "nette/tester": "^2.0", 11007 "nette/tester": "^2.0",
11008 "phpstan/phpstan": "^0.12",
10685 "tracy/tracy": "^2.3" 11009 "tracy/tracy": "^2.3"
10686 }, 11010 },
10687 "type": "library", 11011 "type": "library",
@@ -10698,8 +11022,8 @@
10698 "notification-url": "https://packagist.org/downloads/", 11022 "notification-url": "https://packagist.org/downloads/",
10699 "license": [ 11023 "license": [
10700 "BSD-3-Clause", 11024 "BSD-3-Clause",
10701 "GPL-2.0", 11025 "GPL-2.0-only",
10702 "GPL-3.0" 11026 "GPL-3.0-only"
10703 ], 11027 ],
10704 "authors": [ 11028 "authors": [
10705 { 11029 {
@@ -10711,7 +11035,7 @@
10711 "homepage": "https://nette.org/contributors" 11035 "homepage": "https://nette.org/contributors"
10712 } 11036 }
10713 ], 11037 ],
10714 "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.3 features.", 11038 "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.4 features.",
10715 "homepage": "https://nette.org", 11039 "homepage": "https://nette.org",
10716 "keywords": [ 11040 "keywords": [
10717 "code", 11041 "code",
@@ -10719,20 +11043,20 @@
10719 "php", 11043 "php",
10720 "scaffolding" 11044 "scaffolding"
10721 ], 11045 ],
10722 "time": "2019-11-22T11:12:11+00:00" 11046 "time": "2020-02-09T14:39:09+00:00"
10723 }, 11047 },
10724 { 11048 {
10725 "name": "nette/robot-loader", 11049 "name": "nette/robot-loader",
10726 "version": "v3.2.1", 11050 "version": "v3.2.3",
10727 "source": { 11051 "source": {
10728 "type": "git", 11052 "type": "git",
10729 "url": "https://github.com/nette/robot-loader.git", 11053 "url": "https://github.com/nette/robot-loader.git",
10730 "reference": "d2a100e1f5cab390c78bc88709abbc91249c3993" 11054 "reference": "726c462e73e739e965ec654a667407074cfe83c0"
10731 }, 11055 },
10732 "dist": { 11056 "dist": {
10733 "type": "zip", 11057 "type": "zip",
10734 "url": "https://api.github.com/repos/nette/robot-loader/zipball/d2a100e1f5cab390c78bc88709abbc91249c3993", 11058 "url": "https://api.github.com/repos/nette/robot-loader/zipball/726c462e73e739e965ec654a667407074cfe83c0",
10735 "reference": "d2a100e1f5cab390c78bc88709abbc91249c3993", 11059 "reference": "726c462e73e739e965ec654a667407074cfe83c0",
10736 "shasum": "" 11060 "shasum": ""
10737 }, 11061 },
10738 "require": { 11062 "require": {
@@ -10760,8 +11084,8 @@
10760 "notification-url": "https://packagist.org/downloads/", 11084 "notification-url": "https://packagist.org/downloads/",
10761 "license": [ 11085 "license": [
10762 "BSD-3-Clause", 11086 "BSD-3-Clause",
10763 "GPL-2.0", 11087 "GPL-2.0-only",
10764 "GPL-3.0" 11088 "GPL-3.0-only"
10765 ], 11089 ],
10766 "authors": [ 11090 "authors": [
10767 { 11091 {
@@ -10782,35 +11106,34 @@
10782 "nette", 11106 "nette",
10783 "trait" 11107 "trait"
10784 ], 11108 ],
10785 "time": "2019-12-26T22:32:02+00:00" 11109 "time": "2020-02-28T13:10:07+00:00"
10786 }, 11110 },
10787 { 11111 {
10788 "name": "nette/schema", 11112 "name": "nette/schema",
10789 "version": "v1.0.1", 11113 "version": "v1.0.2",
10790 "source": { 11114 "source": {
10791 "type": "git", 11115 "type": "git",
10792 "url": "https://github.com/nette/schema.git", 11116 "url": "https://github.com/nette/schema.git",
10793 "reference": "337117df1dade22e2ba1fdc4a4b832c1e9b06b76" 11117 "reference": "febf71fb4052c824046f5a33f4f769a6e7fa0cb4"
10794 }, 11118 },
10795 "dist": { 11119 "dist": {
10796 "type": "zip", 11120 "type": "zip",
10797 "url": "https://api.github.com/repos/nette/schema/zipball/337117df1dade22e2ba1fdc4a4b832c1e9b06b76", 11121 "url": "https://api.github.com/repos/nette/schema/zipball/febf71fb4052c824046f5a33f4f769a6e7fa0cb4",
10798 "reference": "337117df1dade22e2ba1fdc4a4b832c1e9b06b76", 11122 "reference": "febf71fb4052c824046f5a33f4f769a6e7fa0cb4",
10799 "shasum": "" 11123 "shasum": ""
10800 }, 11124 },
10801 "require": { 11125 "require": {
10802 "nette/utils": "^3.0.1", 11126 "nette/utils": "^3.1",
10803 "php": ">=7.1" 11127 "php": ">=7.1"
10804 }, 11128 },
10805 "require-dev": { 11129 "require-dev": {
10806 "nette/tester": "^2.2", 11130 "nette/tester": "^2.2",
11131 "phpstan/phpstan-nette": "^0.12",
10807 "tracy/tracy": "^2.3" 11132 "tracy/tracy": "^2.3"
10808 }, 11133 },
10809 "type": "library", 11134 "type": "library",
10810 "extra": { 11135 "extra": {
10811 "branch-alias": { 11136 "branch-alias": []
10812 "dev-master": "1.0-dev"
10813 }
10814 }, 11137 },
10815 "autoload": { 11138 "autoload": {
10816 "classmap": [ 11139 "classmap": [
@@ -10839,20 +11162,20 @@
10839 "config", 11162 "config",
10840 "nette" 11163 "nette"
10841 ], 11164 ],
10842 "time": "2019-10-31T20:52:19+00:00" 11165 "time": "2020-01-06T22:52:48+00:00"
10843 }, 11166 },
10844 { 11167 {
10845 "name": "nette/utils", 11168 "name": "nette/utils",
10846 "version": "v3.0.3", 11169 "version": "v3.1.1",
10847 "source": { 11170 "source": {
10848 "type": "git", 11171 "type": "git",
10849 "url": "https://github.com/nette/utils.git", 11172 "url": "https://github.com/nette/utils.git",
10850 "reference": "f1b5ce0fae07f13e066e64f9a8f59e53b8f4982e" 11173 "reference": "2c17d16d8887579ae1c0898ff94a3668997fd3eb"
10851 }, 11174 },
10852 "dist": { 11175 "dist": {
10853 "type": "zip", 11176 "type": "zip",
10854 "url": "https://api.github.com/repos/nette/utils/zipball/f1b5ce0fae07f13e066e64f9a8f59e53b8f4982e", 11177 "url": "https://api.github.com/repos/nette/utils/zipball/2c17d16d8887579ae1c0898ff94a3668997fd3eb",
10855 "reference": "f1b5ce0fae07f13e066e64f9a8f59e53b8f4982e", 11178 "reference": "2c17d16d8887579ae1c0898ff94a3668997fd3eb",
10856 "shasum": "" 11179 "shasum": ""
10857 }, 11180 },
10858 "require": { 11181 "require": {
@@ -10875,7 +11198,7 @@
10875 "type": "library", 11198 "type": "library",
10876 "extra": { 11199 "extra": {
10877 "branch-alias": { 11200 "branch-alias": {
10878 "dev-master": "3.0-dev" 11201 "dev-master": "3.1-dev"
10879 } 11202 }
10880 }, 11203 },
10881 "autoload": { 11204 "autoload": {
@@ -10886,8 +11209,8 @@
10886 "notification-url": "https://packagist.org/downloads/", 11209 "notification-url": "https://packagist.org/downloads/",
10887 "license": [ 11210 "license": [
10888 "BSD-3-Clause", 11211 "BSD-3-Clause",
10889 "GPL-2.0", 11212 "GPL-2.0-only",
10890 "GPL-3.0" 11213 "GPL-3.0-only"
10891 ], 11214 ],
10892 "authors": [ 11215 "authors": [
10893 { 11216 {
@@ -10917,20 +11240,20 @@
10917 "utility", 11240 "utility",
10918 "validation" 11241 "validation"
10919 ], 11242 ],
10920 "time": "2019-12-27T03:47:50+00:00" 11243 "time": "2020-02-09T14:10:55+00:00"
10921 }, 11244 },
10922 { 11245 {
10923 "name": "nikic/php-parser", 11246 "name": "nikic/php-parser",
10924 "version": "v4.3.0", 11247 "version": "v4.4.0",
10925 "source": { 11248 "source": {
10926 "type": "git", 11249 "type": "git",
10927 "url": "https://github.com/nikic/PHP-Parser.git", 11250 "url": "https://github.com/nikic/PHP-Parser.git",
10928 "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc" 11251 "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
10929 }, 11252 },
10930 "dist": { 11253 "dist": {
10931 "type": "zip", 11254 "type": "zip",
10932 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc", 11255 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
10933 "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc", 11256 "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
10934 "shasum": "" 11257 "shasum": ""
10935 }, 11258 },
10936 "require": { 11259 "require": {
@@ -10969,7 +11292,7 @@
10969 "parser", 11292 "parser",
10970 "php" 11293 "php"
10971 ], 11294 ],
10972 "time": "2019-11-08T13:50:10+00:00" 11295 "time": "2020-04-10T16:34:50+00:00"
10973 }, 11296 },
10974 { 11297 {
10975 "name": "php-cs-fixer/diff", 11298 "name": "php-cs-fixer/diff",
@@ -11395,45 +11718,52 @@
11395 "time": "2019-05-19T17:40:25+00:00" 11718 "time": "2019-05-19T17:40:25+00:00"
11396 }, 11719 },
11397 { 11720 {
11398 "name": "sensio/generator-bundle", 11721 "name": "symfony/maker-bundle",
11399 "version": "v3.1.7", 11722 "version": "v1.18.0",
11400 "source": { 11723 "source": {
11401 "type": "git", 11724 "type": "git",
11402 "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git", 11725 "url": "https://github.com/symfony/maker-bundle.git",
11403 "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65" 11726 "reference": "b38c75be880b152ab55cef6cd52bf882d2b6518e"
11404 }, 11727 },
11405 "dist": { 11728 "dist": {
11406 "type": "zip", 11729 "type": "zip",
11407 "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65", 11730 "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/b38c75be880b152ab55cef6cd52bf882d2b6518e",
11408 "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65", 11731 "reference": "b38c75be880b152ab55cef6cd52bf882d2b6518e",
11409 "shasum": "" 11732 "shasum": ""
11410 }, 11733 },
11411 "require": { 11734 "require": {
11412 "symfony/console": "~2.7|~3.0", 11735 "doctrine/inflector": "^1.2",
11413 "symfony/framework-bundle": "~2.7|~3.0", 11736 "nikic/php-parser": "^4.0",
11414 "symfony/process": "~2.7|~3.0", 11737 "php": "^7.1.3",
11415 "symfony/yaml": "~2.7|~3.0", 11738 "symfony/config": "^3.4|^4.0|^5.0",
11416 "twig/twig": "^1.28.2|^2.0" 11739 "symfony/console": "^3.4|^4.0|^5.0",
11740 "symfony/dependency-injection": "^3.4|^4.0|^5.0",
11741 "symfony/filesystem": "^3.4|^4.0|^5.0",
11742 "symfony/finder": "^3.4|^4.0|^5.0",
11743 "symfony/framework-bundle": "^3.4|^4.0|^5.0",
11744 "symfony/http-kernel": "^3.4|^4.0|^5.0"
11417 }, 11745 },
11418 "require-dev": { 11746 "require-dev": {
11419 "doctrine/orm": "~2.4", 11747 "doctrine/doctrine-bundle": "^1.8|^2.0",
11420 "symfony/doctrine-bridge": "~2.7|~3.0", 11748 "doctrine/orm": "^2.3",
11421 "symfony/filesystem": "~2.7|~3.0", 11749 "friendsofphp/php-cs-fixer": "^2.8",
11422 "symfony/phpunit-bridge": "^3.3" 11750 "friendsoftwig/twigcs": "^3.1.2",
11751 "symfony/http-client": "^4.3|^5.0",
11752 "symfony/phpunit-bridge": "^4.3|^5.0",
11753 "symfony/process": "^3.4|^4.0|^5.0",
11754 "symfony/security-core": "^3.4|^4.0|^5.0",
11755 "symfony/yaml": "^3.4|^4.0|^5.0"
11423 }, 11756 },
11424 "type": "symfony-bundle", 11757 "type": "symfony-bundle",
11425 "extra": { 11758 "extra": {
11426 "branch-alias": { 11759 "branch-alias": {
11427 "dev-master": "3.1.x-dev" 11760 "dev-master": "1.0-dev"
11428 } 11761 }
11429 }, 11762 },
11430 "autoload": { 11763 "autoload": {
11431 "psr-4": { 11764 "psr-4": {
11432 "Sensio\\Bundle\\GeneratorBundle\\": "" 11765 "Symfony\\Bundle\\MakerBundle\\": "src/"
11433 }, 11766 }
11434 "exclude-from-classmap": [
11435 "/Tests/"
11436 ]
11437 }, 11767 },
11438 "notification-url": "https://packagist.org/downloads/", 11768 "notification-url": "https://packagist.org/downloads/",
11439 "license": [ 11769 "license": [
@@ -11441,13 +11771,33 @@
11441 ], 11771 ],
11442 "authors": [ 11772 "authors": [
11443 { 11773 {
11444 "name": "Fabien Potencier", 11774 "name": "Symfony Community",
11445 "email": "fabien@symfony.com" 11775 "homepage": "https://symfony.com/contributors"
11776 }
11777 ],
11778 "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
11779 "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
11780 "keywords": [
11781 "code generator",
11782 "generator",
11783 "scaffold",
11784 "scaffolding"
11785 ],
11786 "funding": [
11787 {
11788 "url": "https://symfony.com/sponsor",
11789 "type": "custom"
11790 },
11791 {
11792 "url": "https://github.com/fabpot",
11793 "type": "github"
11794 },
11795 {
11796 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
11797 "type": "tidelift"
11446 } 11798 }
11447 ], 11799 ],
11448 "description": "This bundle generates code for you", 11800 "time": "2020-05-15T18:51:23+00:00"
11449 "abandoned": "symfony/maker-bundle",
11450 "time": "2017-12-07T15:36:41+00:00"
11451 }, 11801 },
11452 { 11802 {
11453 "name": "symfony/phpunit-bridge", 11803 "name": "symfony/phpunit-bridge",
@@ -11524,24 +11874,25 @@
11524 "prefer-lowest": false, 11874 "prefer-lowest": false,
11525 "platform": { 11875 "platform": {
11526 "php": ">=7.1.3", 11876 "php": ">=7.1.3",
11527 "ext-pcre": "*", 11877 "ext-ctype": "*",
11528 "ext-dom": "*",
11529 "ext-curl": "*", 11878 "ext-curl": "*",
11879 "ext-dom": "*",
11530 "ext-gd": "*", 11880 "ext-gd": "*",
11531 "ext-session": "*",
11532 "ext-ctype": "*",
11533 "ext-hash": "*", 11881 "ext-hash": "*",
11534 "ext-simplexml": "*", 11882 "ext-iconv": "*",
11535 "ext-json": "*", 11883 "ext-json": "*",
11536 "ext-mbstring": "*", 11884 "ext-mbstring": "*",
11537 "ext-xml": "*", 11885 "ext-pcre": "*",
11538 "ext-iconv": "*",
11539 "ext-tokenizer": "*",
11540 "ext-pdo": "*", 11886 "ext-pdo": "*",
11541 "ext-tidy": "*" 11887 "ext-session": "*",
11888 "ext-simplexml": "*",
11889 "ext-tidy": "*",
11890 "ext-tokenizer": "*",
11891 "ext-xml": "*"
11542 }, 11892 },
11543 "platform-dev": [], 11893 "platform-dev": [],
11544 "platform-overrides": { 11894 "platform-overrides": {
11545 "php": "7.1.3" 11895 "php": "7.1.3"
11546 } 11896 },
11897 "plugin-api-version": "1.1.0"
11547} 11898}