Skip to content
Snippets Groups Projects
Commit 3dd3fb21 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Merge branch 'renovate/patch-all-minor-patch' into 'main'

fix(deps): update all non-major dependencies (patch)

See merge request dbp/relay/dbp-relay-template-bundle!49
parents 5d566759 93cb2818
No related branches found
No related tags found
1 merge request!49fix(deps): update all non-major dependencies (patch)
Pipeline #105772 passed
...@@ -167,15 +167,16 @@ ...@@ -167,15 +167,16 @@
}, },
{ {
"name": "dbp/relay-core-bundle", "name": "dbp/relay-core-bundle",
"version": "v0.1.14", "version": "v0.1.16",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://gitlab.tugraz.at/dbp/relay/dbp-relay-core-bundle", "url": "https://gitlab.tugraz.at/dbp/relay/dbp-relay-core-bundle",
"reference": "3f2ff460f2c40f31f33e84bd9bdb7e48ff78b0c6" "reference": "3c049f19af4bdf0fc3d0c40765deb4da2c169585"
}, },
"require": { "require": {
"api-platform/core": "^2.6.3", "api-platform/core": "^2.6.3",
"doctrine/annotations": "^1.0", "doctrine/annotations": "^1.0",
"dragonmantank/cron-expression": "^3.1",
"ext-fileinfo": "*", "ext-fileinfo": "*",
"ext-json": "*", "ext-json": "*",
"guzzlehttp/guzzle": "^7.0", "guzzlehttp/guzzle": "^7.0",
...@@ -184,6 +185,7 @@ ...@@ -184,6 +185,7 @@
"phpdocumentor/reflection-docblock": "^3.0 || ^4.0 || ^5.0", "phpdocumentor/reflection-docblock": "^3.0 || ^4.0 || ^5.0",
"symfony/asset": "^5.3", "symfony/asset": "^5.3",
"symfony/config": "^5.3", "symfony/config": "^5.3",
"symfony/event-dispatcher": "^5.3",
"symfony/expression-language": "^5.3", "symfony/expression-language": "^5.3",
"symfony/framework-bundle": "^5.3", "symfony/framework-bundle": "^5.3",
"symfony/mime": "^5.3", "symfony/mime": "^5.3",
...@@ -194,7 +196,11 @@ ...@@ -194,7 +196,11 @@
"symfony/validator": "^5.3", "symfony/validator": "^5.3",
"symfony/yaml": "^5.3" "symfony/yaml": "^5.3"
}, },
"conflict": {
"symfony/dependency-injection": "5.3.7"
},
"require-dev": { "require-dev": {
"brainmaestro/composer-git-hooks": "^2.8",
"friendsofphp/php-cs-fixer": "^3.0", "friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12.33", "phpstan/phpstan": "^0.12.33",
"phpstan/phpstan-phpunit": "^0.12.13", "phpstan/phpstan-phpunit": "^0.12.13",
...@@ -204,6 +210,13 @@ ...@@ -204,6 +210,13 @@
"vimeo/psalm": "^4.4" "vimeo/psalm": "^4.4"
}, },
"type": "symfony-bundle", "type": "symfony-bundle",
"extra": {
"hooks": {
"pre-commit": [
"composer lint"
]
}
},
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Dbp\\Relay\\CoreBundle\\": "src/" "Dbp\\Relay\\CoreBundle\\": "src/"
...@@ -213,7 +226,7 @@ ...@@ -213,7 +226,7 @@
"license": [ "license": [
"AGPL-3.0-or-later" "AGPL-3.0-or-later"
], ],
"time": "2021-08-24T08:59:17+00:00" "time": "2021-09-13T08:02:44+00:00"
}, },
{ {
"name": "doctrine/annotations", "name": "doctrine/annotations",
...@@ -462,6 +475,67 @@ ...@@ -462,6 +475,67 @@
], ],
"time": "2020-05-25T17:44:05+00:00" "time": "2020-05-25T17:44:05+00:00"
}, },
{
"name": "dragonmantank/cron-expression",
"version": "v3.1.0",
"source": {
"type": "git",
"url": "https://github.com/dragonmantank/cron-expression.git",
"reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
"reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
"shasum": ""
},
"require": {
"php": "^7.2|^8.0",
"webmozart/assert": "^1.7.0"
},
"replace": {
"mtdowling/cron-expression": "^1.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-webmozart-assert": "^0.12.7",
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"type": "library",
"autoload": {
"psr-4": {
"Cron\\": "src/Cron/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Chris Tankersley",
"email": "chris@ctankersley.com",
"homepage": "https://github.com/dragonmantank"
}
],
"description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
"keywords": [
"cron",
"schedule"
],
"support": {
"issues": "https://github.com/dragonmantank/cron-expression/issues",
"source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
},
"funding": [
{
"url": "https://github.com/dragonmantank",
"type": "github"
}
],
"time": "2020-11-24T19:55:57+00:00"
},
{ {
"name": "fig/link-util", "name": "fig/link-util",
"version": "1.1.2", "version": "1.1.2",
...@@ -1509,16 +1583,16 @@ ...@@ -1509,16 +1583,16 @@
}, },
{ {
"name": "symfony/cache", "name": "symfony/cache",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/cache.git", "url": "https://github.com/symfony/cache.git",
"reference": "944db6004fc374fbe032d18e07cce51cc4e1e661" "reference": "864867b13bd67347497ce956f4b253f8fe18b80c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/cache/zipball/944db6004fc374fbe032d18e07cce51cc4e1e661", "url": "https://api.github.com/repos/symfony/cache/zipball/864867b13bd67347497ce956f4b253f8fe18b80c",
"reference": "944db6004fc374fbe032d18e07cce51cc4e1e661", "reference": "864867b13bd67347497ce956f4b253f8fe18b80c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1527,6 +1601,7 @@ ...@@ -1527,6 +1601,7 @@
"psr/log": "^1.1|^2|^3", "psr/log": "^1.1|^2|^3",
"symfony/cache-contracts": "^1.1.7|^2", "symfony/cache-contracts": "^1.1.7|^2",
"symfony/deprecation-contracts": "^2.1", "symfony/deprecation-contracts": "^2.1",
"symfony/polyfill-php73": "^1.9",
"symfony/polyfill-php80": "^1.16", "symfony/polyfill-php80": "^1.16",
"symfony/service-contracts": "^1.1|^2", "symfony/service-contracts": "^1.1|^2",
"symfony/var-exporter": "^4.4|^5.0" "symfony/var-exporter": "^4.4|^5.0"
...@@ -1585,7 +1660,7 @@ ...@@ -1585,7 +1660,7 @@
"psr6" "psr6"
], ],
"support": { "support": {
"source": "https://github.com/symfony/cache/tree/v5.3.4" "source": "https://github.com/symfony/cache/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -1601,7 +1676,7 @@ ...@@ -1601,7 +1676,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-23T15:55:36+00:00" "time": "2021-08-29T15:08:21+00:00"
}, },
{ {
"name": "symfony/cache-contracts", "name": "symfony/cache-contracts",
...@@ -1918,16 +1993,16 @@ ...@@ -1918,16 +1993,16 @@
}, },
{ {
"name": "symfony/error-handler", "name": "symfony/error-handler",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/error-handler.git", "url": "https://github.com/symfony/error-handler.git",
"reference": "281f6c4660bcf5844bb0346fe3a4664722fe4c73" "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/281f6c4660bcf5844bb0346fe3a4664722fe4c73", "url": "https://api.github.com/repos/symfony/error-handler/zipball/3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
"reference": "281f6c4660bcf5844bb0346fe3a4664722fe4c73", "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1966,7 +2041,7 @@ ...@@ -1966,7 +2041,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code", "description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/error-handler/tree/v5.3.4" "source": "https://github.com/symfony/error-handler/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -1982,7 +2057,7 @@ ...@@ -1982,7 +2057,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-23T15:55:36+00:00" "time": "2021-08-28T15:07:08+00:00"
}, },
{ {
"name": "symfony/event-dispatcher", "name": "symfony/event-dispatcher",
...@@ -2150,22 +2225,21 @@ ...@@ -2150,22 +2225,21 @@
}, },
{ {
"name": "symfony/expression-language", "name": "symfony/expression-language",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/expression-language.git", "url": "https://github.com/symfony/expression-language.git",
"reference": "d4367d36217dd395b10f61649a6bf2c1367140d8" "reference": "fe696e2669cb47507e5635223ac4b64500339658"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/expression-language/zipball/d4367d36217dd395b10f61649a6bf2c1367140d8", "url": "https://api.github.com/repos/symfony/expression-language/zipball/fe696e2669cb47507e5635223ac4b64500339658",
"reference": "d4367d36217dd395b10f61649a6bf2c1367140d8", "reference": "fe696e2669cb47507e5635223ac4b64500339658",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=7.2.5", "php": ">=7.2.5",
"symfony/cache": "^4.4|^5.0", "symfony/cache": "^4.4|^5.0",
"symfony/polyfill-php80": "^1.16",
"symfony/service-contracts": "^1.1|^2" "symfony/service-contracts": "^1.1|^2"
}, },
"type": "library", "type": "library",
...@@ -2194,7 +2268,7 @@ ...@@ -2194,7 +2268,7 @@
"description": "Provides an engine that can compile and evaluate expressions", "description": "Provides an engine that can compile and evaluate expressions",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/expression-language/tree/v5.3.4" "source": "https://github.com/symfony/expression-language/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -2210,7 +2284,7 @@ ...@@ -2210,7 +2284,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-21T12:38:00+00:00" "time": "2021-08-23T12:57:24+00:00"
}, },
{ {
"name": "symfony/filesystem", "name": "symfony/filesystem",
...@@ -2339,16 +2413,16 @@ ...@@ -2339,16 +2413,16 @@
}, },
{ {
"name": "symfony/framework-bundle", "name": "symfony/framework-bundle",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/framework-bundle.git", "url": "https://github.com/symfony/framework-bundle.git",
"reference": "2c5ed14a5992a2d04dfdb238a5f9589bab0a68d8" "reference": "5d4fcef02a42ea86280afcbacedf8de7a039032c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/framework-bundle/zipball/2c5ed14a5992a2d04dfdb238a5f9589bab0a68d8", "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/5d4fcef02a42ea86280afcbacedf8de7a039032c",
"reference": "2c5ed14a5992a2d04dfdb238a5f9589bab0a68d8", "reference": "5d4fcef02a42ea86280afcbacedf8de7a039032c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2407,7 +2481,7 @@ ...@@ -2407,7 +2481,7 @@
"symfony/browser-kit": "^4.4|^5.0", "symfony/browser-kit": "^4.4|^5.0",
"symfony/console": "^5.2", "symfony/console": "^5.2",
"symfony/css-selector": "^4.4|^5.0", "symfony/css-selector": "^4.4|^5.0",
"symfony/dom-crawler": "^4.4|^5.0", "symfony/dom-crawler": "^4.4.30|^5.3.7",
"symfony/dotenv": "^5.1", "symfony/dotenv": "^5.1",
"symfony/expression-language": "^4.4|^5.0", "symfony/expression-language": "^4.4|^5.0",
"symfony/form": "^5.2", "symfony/form": "^5.2",
...@@ -2470,7 +2544,7 @@ ...@@ -2470,7 +2544,7 @@
"description": "Provides a tight integration between Symfony components and the Symfony full-stack framework", "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/framework-bundle/tree/v5.3.4" "source": "https://github.com/symfony/framework-bundle/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -2486,7 +2560,7 @@ ...@@ -2486,7 +2560,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-25T09:39:16+00:00" "time": "2021-08-26T08:37:07+00:00"
}, },
{ {
"name": "symfony/http-client-contracts", "name": "symfony/http-client-contracts",
...@@ -2568,16 +2642,16 @@ ...@@ -2568,16 +2642,16 @@
}, },
{ {
"name": "symfony/http-foundation", "name": "symfony/http-foundation",
"version": "v5.3.6", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-foundation.git", "url": "https://github.com/symfony/http-foundation.git",
"reference": "a8388f7b7054a7401997008ce9cd8c6b0ab7ac75" "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/a8388f7b7054a7401997008ce9cd8c6b0ab7ac75", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
"reference": "a8388f7b7054a7401997008ce9cd8c6b0ab7ac75", "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2621,7 +2695,7 @@ ...@@ -2621,7 +2695,7 @@
"description": "Defines an object-oriented layer for the HTTP specification", "description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-foundation/tree/v5.3.6" "source": "https://github.com/symfony/http-foundation/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -2637,20 +2711,20 @@ ...@@ -2637,20 +2711,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-27T17:08:17+00:00" "time": "2021-08-27T11:20:35+00:00"
}, },
{ {
"name": "symfony/http-kernel", "name": "symfony/http-kernel",
"version": "v5.3.6", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-kernel.git", "url": "https://github.com/symfony/http-kernel.git",
"reference": "60030f209018356b3b553b9dbd84ad2071c1b7e0" "reference": "a3a78e37935a527b50376c22ac1cec35b57fe787"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/60030f209018356b3b553b9dbd84ad2071c1b7e0", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a3a78e37935a527b50376c22ac1cec35b57fe787",
"reference": "60030f209018356b3b553b9dbd84ad2071c1b7e0", "reference": "a3a78e37935a527b50376c22ac1cec35b57fe787",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2660,7 +2734,7 @@ ...@@ -2660,7 +2734,7 @@
"symfony/error-handler": "^4.4|^5.0", "symfony/error-handler": "^4.4|^5.0",
"symfony/event-dispatcher": "^5.0", "symfony/event-dispatcher": "^5.0",
"symfony/http-client-contracts": "^1.1|^2", "symfony/http-client-contracts": "^1.1|^2",
"symfony/http-foundation": "^5.3", "symfony/http-foundation": "^5.3.7",
"symfony/polyfill-ctype": "^1.8", "symfony/polyfill-ctype": "^1.8",
"symfony/polyfill-php73": "^1.9", "symfony/polyfill-php73": "^1.9",
"symfony/polyfill-php80": "^1.16" "symfony/polyfill-php80": "^1.16"
...@@ -2733,7 +2807,7 @@ ...@@ -2733,7 +2807,7 @@
"description": "Provides a structured process for converting a Request into a Response", "description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-kernel/tree/v5.3.6" "source": "https://github.com/symfony/http-kernel/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -2749,20 +2823,20 @@ ...@@ -2749,20 +2823,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-29T07:06:27+00:00" "time": "2021-08-30T12:37:19+00:00"
}, },
{ {
"name": "symfony/mime", "name": "symfony/mime",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/mime.git", "url": "https://github.com/symfony/mime.git",
"reference": "633e4e8afe9e529e5599d71238849a4218dd497b" "reference": "ae887cb3b044658676129f5e97aeb7e9eb69c2d8"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/mime/zipball/633e4e8afe9e529e5599d71238849a4218dd497b", "url": "https://api.github.com/repos/symfony/mime/zipball/ae887cb3b044658676129f5e97aeb7e9eb69c2d8",
"reference": "633e4e8afe9e529e5599d71238849a4218dd497b", "reference": "ae887cb3b044658676129f5e97aeb7e9eb69c2d8",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2816,7 +2890,7 @@ ...@@ -2816,7 +2890,7 @@
"mime-type" "mime-type"
], ],
"support": { "support": {
"source": "https://github.com/symfony/mime/tree/v5.3.4" "source": "https://github.com/symfony/mime/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -2832,20 +2906,20 @@ ...@@ -2832,20 +2906,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-21T12:40:44+00:00" "time": "2021-08-20T11:40:01+00:00"
}, },
{ {
"name": "symfony/password-hasher", "name": "symfony/password-hasher",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/password-hasher.git", "url": "https://github.com/symfony/password-hasher.git",
"reference": "61dd1e90fa0ebf6f4982787b1e033a9606357d7e" "reference": "106639b209d0f8b0946394a1108acc9cc20e2216"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/password-hasher/zipball/61dd1e90fa0ebf6f4982787b1e033a9606357d7e", "url": "https://api.github.com/repos/symfony/password-hasher/zipball/106639b209d0f8b0946394a1108acc9cc20e2216",
"reference": "61dd1e90fa0ebf6f4982787b1e033a9606357d7e", "reference": "106639b209d0f8b0946394a1108acc9cc20e2216",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2889,7 +2963,7 @@ ...@@ -2889,7 +2963,7 @@
"password" "password"
], ],
"support": { "support": {
"source": "https://github.com/symfony/password-hasher/tree/v5.3.4" "source": "https://github.com/symfony/password-hasher/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -2905,7 +2979,7 @@ ...@@ -2905,7 +2979,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-06-30T13:49:12+00:00" "time": "2021-08-17T15:45:42+00:00"
}, },
{ {
"name": "symfony/polyfill-ctype", "name": "symfony/polyfill-ctype",
...@@ -3637,16 +3711,16 @@ ...@@ -3637,16 +3711,16 @@
}, },
{ {
"name": "symfony/property-access", "name": "symfony/property-access",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/property-access.git", "url": "https://github.com/symfony/property-access.git",
"reference": "098681253076af7070df7d9debe5f75733eea189" "reference": "a4bbf09b8f3e2d2c89cc2c8b3d6682bf4c3d5589"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/property-access/zipball/098681253076af7070df7d9debe5f75733eea189", "url": "https://api.github.com/repos/symfony/property-access/zipball/a4bbf09b8f3e2d2c89cc2c8b3d6682bf4c3d5589",
"reference": "098681253076af7070df7d9debe5f75733eea189", "reference": "a4bbf09b8f3e2d2c89cc2c8b3d6682bf4c3d5589",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3698,7 +3772,7 @@ ...@@ -3698,7 +3772,7 @@
"reflection" "reflection"
], ],
"support": { "support": {
"source": "https://github.com/symfony/property-access/tree/v5.3.4" "source": "https://github.com/symfony/property-access/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -3714,20 +3788,20 @@ ...@@ -3714,20 +3788,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-21T12:40:44+00:00" "time": "2021-08-09T12:23:10+00:00"
}, },
{ {
"name": "symfony/property-info", "name": "symfony/property-info",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/property-info.git", "url": "https://github.com/symfony/property-info.git",
"reference": "0f42009150679a7a256eb6ee106401af5d974ed2" "reference": "7202b6c93a07df5df83eb58e3757dffb77fc5d90"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/property-info/zipball/0f42009150679a7a256eb6ee106401af5d974ed2", "url": "https://api.github.com/repos/symfony/property-info/zipball/7202b6c93a07df5df83eb58e3757dffb77fc5d90",
"reference": "0f42009150679a7a256eb6ee106401af5d974ed2", "reference": "7202b6c93a07df5df83eb58e3757dffb77fc5d90",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3788,7 +3862,7 @@ ...@@ -3788,7 +3862,7 @@
"validator" "validator"
], ],
"support": { "support": {
"source": "https://github.com/symfony/property-info/tree/v5.3.4" "source": "https://github.com/symfony/property-info/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -3804,20 +3878,20 @@ ...@@ -3804,20 +3878,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-21T12:40:44+00:00" "time": "2021-08-23T12:57:24+00:00"
}, },
{ {
"name": "symfony/routing", "name": "symfony/routing",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/routing.git", "url": "https://github.com/symfony/routing.git",
"reference": "0a35d2f57d73c46ab6d042ced783b81d09a624c4" "reference": "be865017746fe869007d94220ad3f5297951811b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/0a35d2f57d73c46ab6d042ced783b81d09a624c4", "url": "https://api.github.com/repos/symfony/routing/zipball/be865017746fe869007d94220ad3f5297951811b",
"reference": "0a35d2f57d73c46ab6d042ced783b81d09a624c4", "reference": "be865017746fe869007d94220ad3f5297951811b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3878,7 +3952,7 @@ ...@@ -3878,7 +3952,7 @@
"url" "url"
], ],
"support": { "support": {
"source": "https://github.com/symfony/routing/tree/v5.3.4" "source": "https://github.com/symfony/routing/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -3894,20 +3968,20 @@ ...@@ -3894,20 +3968,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-23T15:55:36+00:00" "time": "2021-08-04T21:42:42+00:00"
}, },
{ {
"name": "symfony/security-bundle", "name": "symfony/security-bundle",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/security-bundle.git", "url": "https://github.com/symfony/security-bundle.git",
"reference": "7db2c7d6a1f15bdccbcb6d6807d60d0bd4a9d7ae" "reference": "aed98f8ca60f1fb474a4db3ade066155d2b040f7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/security-bundle/zipball/7db2c7d6a1f15bdccbcb6d6807d60d0bd4a9d7ae", "url": "https://api.github.com/repos/symfony/security-bundle/zipball/aed98f8ca60f1fb474a4db3ade066155d2b040f7",
"reference": "7db2c7d6a1f15bdccbcb6d6807d60d0bd4a9d7ae", "reference": "aed98f8ca60f1fb474a4db3ade066155d2b040f7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3980,7 +4054,7 @@ ...@@ -3980,7 +4054,7 @@
"description": "Provides a tight integration of the Security component into the Symfony full-stack framework", "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/security-bundle/tree/v5.3.4" "source": "https://github.com/symfony/security-bundle/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -3996,20 +4070,20 @@ ...@@ -3996,20 +4070,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-26T16:33:26+00:00" "time": "2021-08-17T15:45:42+00:00"
}, },
{ {
"name": "symfony/security-core", "name": "symfony/security-core",
"version": "v5.3.6", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/security-core.git", "url": "https://github.com/symfony/security-core.git",
"reference": "69b9a6a62d8914f10010646619bcd4485a71f119" "reference": "bd3a055d1092a46f6b6599bcda5a7624cd804cb1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/security-core/zipball/69b9a6a62d8914f10010646619bcd4485a71f119", "url": "https://api.github.com/repos/symfony/security-core/zipball/bd3a055d1092a46f6b6599bcda5a7624cd804cb1",
"reference": "69b9a6a62d8914f10010646619bcd4485a71f119", "reference": "bd3a055d1092a46f6b6599bcda5a7624cd804cb1",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4073,7 +4147,7 @@ ...@@ -4073,7 +4147,7 @@
"description": "Symfony Security Component - Core Library", "description": "Symfony Security Component - Core Library",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/security-core/tree/v5.3.6" "source": "https://github.com/symfony/security-core/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -4089,7 +4163,7 @@ ...@@ -4089,7 +4163,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-29T06:36:31+00:00" "time": "2021-08-14T21:25:00+00:00"
}, },
{ {
"name": "symfony/security-csrf", "name": "symfony/security-csrf",
...@@ -4165,16 +4239,16 @@ ...@@ -4165,16 +4239,16 @@
}, },
{ {
"name": "symfony/security-guard", "name": "symfony/security-guard",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/security-guard.git", "url": "https://github.com/symfony/security-guard.git",
"reference": "4e43b41c3809fdaea72ade100dae8c07045a2fa9" "reference": "25f8d2a206505514a0ff14b16c4fb4e17a10cf18"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/security-guard/zipball/4e43b41c3809fdaea72ade100dae8c07045a2fa9", "url": "https://api.github.com/repos/symfony/security-guard/zipball/25f8d2a206505514a0ff14b16c4fb4e17a10cf18",
"reference": "4e43b41c3809fdaea72ade100dae8c07045a2fa9", "reference": "25f8d2a206505514a0ff14b16c4fb4e17a10cf18",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4212,7 +4286,7 @@ ...@@ -4212,7 +4286,7 @@
"description": "Symfony Security Component - Guard", "description": "Symfony Security Component - Guard",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/security-guard/tree/v5.3.4" "source": "https://github.com/symfony/security-guard/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -4228,20 +4302,20 @@ ...@@ -4228,20 +4302,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-18T15:32:38+00:00" "time": "2021-08-13T15:54:02+00:00"
}, },
{ {
"name": "symfony/security-http", "name": "symfony/security-http",
"version": "v5.3.6", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/security-http.git", "url": "https://github.com/symfony/security-http.git",
"reference": "ed6647291bd0afdbc3d41997c3dc7aa2eed8ca5b" "reference": "cb3d53b245c38f73e67b1e461ea076ffbb2e6dd7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/security-http/zipball/ed6647291bd0afdbc3d41997c3dc7aa2eed8ca5b", "url": "https://api.github.com/repos/symfony/security-http/zipball/cb3d53b245c38f73e67b1e461ea076ffbb2e6dd7",
"reference": "ed6647291bd0afdbc3d41997c3dc7aa2eed8ca5b", "reference": "cb3d53b245c38f73e67b1e461ea076ffbb2e6dd7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4297,7 +4371,7 @@ ...@@ -4297,7 +4371,7 @@
"description": "Symfony Security Component - HTTP Integration", "description": "Symfony Security Component - HTTP Integration",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/security-http/tree/v5.3.6" "source": "https://github.com/symfony/security-http/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -4313,7 +4387,7 @@ ...@@ -4313,7 +4387,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-27T00:57:57+00:00" "time": "2021-08-18T14:06:55+00:00"
}, },
{ {
"name": "symfony/serializer", "name": "symfony/serializer",
...@@ -4659,16 +4733,16 @@ ...@@ -4659,16 +4733,16 @@
}, },
{ {
"name": "symfony/twig-bridge", "name": "symfony/twig-bridge",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/twig-bridge.git", "url": "https://github.com/symfony/twig-bridge.git",
"reference": "587c45ef49256279502b4a29146b9e87ad23426f" "reference": "503e12aded4d5cbda4f8d1f3824c6a108119822f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/twig-bridge/zipball/587c45ef49256279502b4a29146b9e87ad23426f", "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/503e12aded4d5cbda4f8d1f3824c6a108119822f",
"reference": "587c45ef49256279502b4a29146b9e87ad23426f", "reference": "503e12aded4d5cbda4f8d1f3824c6a108119822f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4760,7 +4834,7 @@ ...@@ -4760,7 +4834,7 @@
"description": "Provides integration for Twig with various Symfony components", "description": "Provides integration for Twig with various Symfony components",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/twig-bridge/tree/v5.3.4" "source": "https://github.com/symfony/twig-bridge/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -4776,7 +4850,7 @@ ...@@ -4776,7 +4850,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-26T16:33:26+00:00" "time": "2021-08-26T07:28:06+00:00"
}, },
{ {
"name": "symfony/twig-bundle", "name": "symfony/twig-bundle",
...@@ -4868,16 +4942,16 @@ ...@@ -4868,16 +4942,16 @@
}, },
{ {
"name": "symfony/validator", "name": "symfony/validator",
"version": "v5.3.6", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/validator.git", "url": "https://github.com/symfony/validator.git",
"reference": "4a87a29d0ebca780a90b7aaba02bc04f5678eb36" "reference": "916a7c6cf3ede36eb0e4097500e0a12dcff520a7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/validator/zipball/4a87a29d0ebca780a90b7aaba02bc04f5678eb36", "url": "https://api.github.com/repos/symfony/validator/zipball/916a7c6cf3ede36eb0e4097500e0a12dcff520a7",
"reference": "4a87a29d0ebca780a90b7aaba02bc04f5678eb36", "reference": "916a7c6cf3ede36eb0e4097500e0a12dcff520a7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -4958,7 +5032,7 @@ ...@@ -4958,7 +5032,7 @@
"description": "Provides tools to validate values", "description": "Provides tools to validate values",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/validator/tree/v5.3.6" "source": "https://github.com/symfony/validator/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -4974,20 +5048,20 @@ ...@@ -4974,20 +5048,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-29T06:36:31+00:00" "time": "2021-08-26T08:22:53+00:00"
}, },
{ {
"name": "symfony/var-dumper", "name": "symfony/var-dumper",
"version": "v5.3.6", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-dumper.git", "url": "https://github.com/symfony/var-dumper.git",
"reference": "3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0" "reference": "3ad5af4aed07d0a0201bbcfc42658fe6c5b2fb8f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0", "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3ad5af4aed07d0a0201bbcfc42658fe6c5b2fb8f",
"reference": "3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0", "reference": "3ad5af4aed07d0a0201bbcfc42658fe6c5b2fb8f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5046,7 +5120,7 @@ ...@@ -5046,7 +5120,7 @@
"dump" "dump"
], ],
"support": { "support": {
"source": "https://github.com/symfony/var-dumper/tree/v5.3.6" "source": "https://github.com/symfony/var-dumper/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -5062,20 +5136,20 @@ ...@@ -5062,20 +5136,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-27T01:56:02+00:00" "time": "2021-08-04T23:19:25+00:00"
}, },
{ {
"name": "symfony/var-exporter", "name": "symfony/var-exporter",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-exporter.git", "url": "https://github.com/symfony/var-exporter.git",
"reference": "b7898a65fc91e7c41de7a88c7db9aee9c0d432f0" "reference": "2ded877ab0574d8b646f4eb3f716f8ed7ee7f392"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/var-exporter/zipball/b7898a65fc91e7c41de7a88c7db9aee9c0d432f0", "url": "https://api.github.com/repos/symfony/var-exporter/zipball/2ded877ab0574d8b646f4eb3f716f8ed7ee7f392",
"reference": "b7898a65fc91e7c41de7a88c7db9aee9c0d432f0", "reference": "2ded877ab0574d8b646f4eb3f716f8ed7ee7f392",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5119,7 +5193,7 @@ ...@@ -5119,7 +5193,7 @@
"serialize" "serialize"
], ],
"support": { "support": {
"source": "https://github.com/symfony/var-exporter/tree/v5.3.4" "source": "https://github.com/symfony/var-exporter/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -5135,7 +5209,7 @@ ...@@ -5135,7 +5209,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-21T12:38:00+00:00" "time": "2021-08-04T22:42:42+00:00"
}, },
{ {
"name": "symfony/web-link", "name": "symfony/web-link",
...@@ -6316,16 +6390,16 @@ ...@@ -6316,16 +6390,16 @@
}, },
{ {
"name": "phpstan/phpstan", "name": "phpstan/phpstan",
"version": "0.12.96", "version": "0.12.99",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/phpstan/phpstan.git", "url": "https://github.com/phpstan/phpstan.git",
"reference": "a98bdc51318f20fcae8c953d266f81a70254917f" "reference": "b4d40f1d759942f523be267a1bab6884f46ca3f7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/a98bdc51318f20fcae8c953d266f81a70254917f", "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b4d40f1d759942f523be267a1bab6884f46ca3f7",
"reference": "a98bdc51318f20fcae8c953d266f81a70254917f", "reference": "b4d40f1d759942f523be267a1bab6884f46ca3f7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -6356,7 +6430,7 @@ ...@@ -6356,7 +6430,7 @@
"description": "PHPStan - PHP Static Analysis Tool", "description": "PHPStan - PHP Static Analysis Tool",
"support": { "support": {
"issues": "https://github.com/phpstan/phpstan/issues", "issues": "https://github.com/phpstan/phpstan/issues",
"source": "https://github.com/phpstan/phpstan/tree/0.12.96" "source": "https://github.com/phpstan/phpstan/tree/0.12.99"
}, },
"funding": [ "funding": [
{ {
...@@ -6376,7 +6450,7 @@ ...@@ -6376,7 +6450,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-08-21T11:55:13+00:00" "time": "2021-09-12T20:09:55+00:00"
}, },
{ {
"name": "phpstan/phpstan-phpunit", "name": "phpstan/phpstan-phpunit",
...@@ -6746,16 +6820,16 @@ ...@@ -6746,16 +6820,16 @@
}, },
{ {
"name": "symfony/http-client", "name": "symfony/http-client",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-client.git", "url": "https://github.com/symfony/http-client.git",
"reference": "67c177d4df8601d9a71f9d615c52171c98d22d74" "reference": "da8638ffecefc4e8ba2bc848d7b61a408119b333"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-client/zipball/67c177d4df8601d9a71f9d615c52171c98d22d74", "url": "https://api.github.com/repos/symfony/http-client/zipball/da8638ffecefc4e8ba2bc848d7b61a408119b333",
"reference": "67c177d4df8601d9a71f9d615c52171c98d22d74", "reference": "da8638ffecefc4e8ba2bc848d7b61a408119b333",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -6813,7 +6887,7 @@ ...@@ -6813,7 +6887,7 @@
"description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/http-client/tree/v5.3.4" "source": "https://github.com/symfony/http-client/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -6829,7 +6903,7 @@ ...@@ -6829,7 +6903,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-23T15:55:36+00:00" "time": "2021-08-28T16:24:37+00:00"
}, },
{ {
"name": "symfony/options-resolver", "name": "symfony/options-resolver",
...@@ -6902,16 +6976,16 @@ ...@@ -6902,16 +6976,16 @@
}, },
{ {
"name": "symfony/phpunit-bridge", "name": "symfony/phpunit-bridge",
"version": "v5.3.4", "version": "v5.3.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/phpunit-bridge.git", "url": "https://github.com/symfony/phpunit-bridge.git",
"reference": "bc368b765a651424b19f5759953ce2873e7d448b" "reference": "2a1ff6e5a4521be1350bfce75784938e590d6342"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/bc368b765a651424b19f5759953ce2873e7d448b", "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/2a1ff6e5a4521be1350bfce75784938e590d6342",
"reference": "bc368b765a651424b19f5759953ce2873e7d448b", "reference": "2a1ff6e5a4521be1350bfce75784938e590d6342",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -6965,7 +7039,7 @@ ...@@ -6965,7 +7039,7 @@
"description": "Provides utilities for PHPUnit, especially user deprecation notices management", "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/phpunit-bridge/tree/v5.3.4" "source": "https://github.com/symfony/phpunit-bridge/tree/v5.3.7"
}, },
"funding": [ "funding": [
{ {
...@@ -6981,7 +7055,7 @@ ...@@ -6981,7 +7055,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-15T21:37:44+00:00" "time": "2021-08-26T13:36:50+00:00"
}, },
{ {
"name": "symfony/process", "name": "symfony/process",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment