chore(deps): update dependencies (#6262)

This commit is contained in:
Alexis Saettler
2022-08-12 23:28:06 +02:00
committed by GitHub
parent 0e657bee2f
commit fe0a8b063b
7 changed files with 1868 additions and 1881 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ jobs:
# Test
- name: Run Unit test suite
if: matrix.php-version == env.default-php-version && matrix.testsuite != 'Feature'
run: phpdbg -dmemory_limit=6G -qrr vendor/bin/phpunit -c phpunit.xml --testdox --testsuite ${{ matrix.testsuite }} --log-junit ./results/junit/results${{ matrix.testsuite }}.xml --coverage-clover ./results/coverage/coverage${{ matrix.testsuite }}.xml
run: phpdbg -dmemory_limit=6G -qrr vendor/bin/phpunit -c phpunit.xml --testsuite ${{ matrix.testsuite }} --log-junit ./results/junit/results${{ matrix.testsuite }}.xml --coverage-clover ./results/coverage/coverage${{ matrix.testsuite }}.xml
env:
DB_CONNECTION: ${{ matrix.connection }}
STRIPE_SECRET: ${{ secrets.STRIPE_SECRET }}
+1 -13
View File
@@ -58,19 +58,7 @@ class DestroyCall extends BaseService
{
// look for all the calls of the contact and take the most recent call
// as the one we just deleted could have been the most recent call
$mostRecentDate = null;
foreach ($contact->calls as $call) {
if ($call->called_at->greaterThanOrEqualTo($mostRecentDate)) {
$mostRecentDate = $call->called_at;
}
}
if (is_null($mostRecentDate)) {
$contact->last_talked_to = null;
} else {
$contact->last_talked_to = $mostRecentDate;
}
$contact->last_talked_to = optional($contact->calls->first())->called_at;
$contact->save();
}
}
Generated
+163 -167
View File
@@ -218,16 +218,16 @@
},
{
"name": "aws/aws-sdk-php",
"version": "3.231.17",
"version": "3.233.0",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
"reference": "d377e1b62b40a4d9e5d9c9387db7c539f28cb6df"
"reference": "2aabbc276b61515ae1897f037fc34ad56028d744"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/d377e1b62b40a4d9e5d9c9387db7c539f28cb6df",
"reference": "d377e1b62b40a4d9e5d9c9387db7c539f28cb6df",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/2aabbc276b61515ae1897f037fc34ad56028d744",
"reference": "2aabbc276b61515ae1897f037fc34ad56028d744",
"shasum": ""
},
"require": {
@@ -304,9 +304,9 @@
"support": {
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
"issues": "https://github.com/aws/aws-sdk-php/issues",
"source": "https://github.com/aws/aws-sdk-php/tree/3.231.17"
"source": "https://github.com/aws/aws-sdk-php/tree/3.233.0"
},
"time": "2022-07-29T18:17:57+00:00"
"time": "2022-08-11T18:15:54+00:00"
},
{
"name": "bacon/bacon-qr-code",
@@ -977,16 +977,16 @@
},
{
"name": "doctrine/dbal",
"version": "3.3.7",
"version": "3.4.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
"reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a"
"reference": "118a360e9437e88d49024f36283c8bcbd76105f5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/doctrine/dbal/zipball/9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
"reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
"url": "https://api.github.com/repos/doctrine/dbal/zipball/118a360e9437e88d49024f36283c8bcbd76105f5",
"reference": "118a360e9437e88d49024f36283c8bcbd76105f5",
"shasum": ""
},
"require": {
@@ -994,21 +994,21 @@
"doctrine/cache": "^1.11|^2.0",
"doctrine/deprecations": "^0.5.3|^1",
"doctrine/event-manager": "^1.0",
"php": "^7.3 || ^8.0",
"php": "^7.4 || ^8.0",
"psr/cache": "^1|^2|^3",
"psr/log": "^1|^2|^3"
},
"require-dev": {
"doctrine/coding-standard": "9.0.0",
"jetbrains/phpstorm-stubs": "2022.1",
"phpstan/phpstan": "1.7.13",
"phpstan/phpstan-strict-rules": "^1.2",
"phpunit/phpunit": "9.5.20",
"psalm/plugin-phpunit": "0.16.1",
"squizlabs/php_codesniffer": "3.7.0",
"symfony/cache": "^5.2|^6.0",
"symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
"vimeo/psalm": "4.23.0"
"phpstan/phpstan": "1.8.2",
"phpstan/phpstan-strict-rules": "^1.3",
"phpunit/phpunit": "9.5.21",
"psalm/plugin-phpunit": "0.17.0",
"squizlabs/php_codesniffer": "3.7.1",
"symfony/cache": "^5.4|^6.0",
"symfony/console": "^4.4|^5.4|^6.0",
"vimeo/psalm": "4.24.0"
},
"suggest": {
"symfony/console": "For helpful console commands such as SQL execution and import of files."
@@ -1068,7 +1068,7 @@
],
"support": {
"issues": "https://github.com/doctrine/dbal/issues",
"source": "https://github.com/doctrine/dbal/tree/3.3.7"
"source": "https://github.com/doctrine/dbal/tree/3.4.0"
},
"funding": [
{
@@ -1084,7 +1084,7 @@
"type": "tidelift"
}
],
"time": "2022-06-13T21:43:03+00:00"
"time": "2022-08-06T20:35:57+00:00"
},
{
"name": "doctrine/deprecations",
@@ -1846,16 +1846,16 @@
},
{
"name": "geoip2/geoip2",
"version": "v2.12.2",
"version": "v2.13.0",
"source": {
"type": "git",
"url": "https://github.com/maxmind/GeoIP2-php.git",
"reference": "83adb44ac4b9553d36b579a14673ed124583082f"
"url": "git@github.com:maxmind/GeoIP2-php.git",
"reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/83adb44ac4b9553d36b579a14673ed124583082f",
"reference": "83adb44ac4b9553d36b579a14673ed124583082f",
"url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
"reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
"shasum": ""
},
"require": {
@@ -1896,24 +1896,20 @@
"geolocation",
"maxmind"
],
"support": {
"issues": "https://github.com/maxmind/GeoIP2-php/issues",
"source": "https://github.com/maxmind/GeoIP2-php/tree/v2.12.2"
},
"time": "2021-11-30T18:15:25+00:00"
"time": "2022-08-05T20:32:58+00:00"
},
{
"name": "giggsey/libphonenumber-for-php",
"version": "8.12.52",
"version": "8.12.53",
"source": {
"type": "git",
"url": "https://github.com/giggsey/libphonenumber-for-php.git",
"reference": "9a5269012e21d5a357f93d413fcc7a854a36b69d"
"reference": "2e39201ca4b88c1ec0594cd78128d21e94929d04"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/9a5269012e21d5a357f93d413fcc7a854a36b69d",
"reference": "9a5269012e21d5a357f93d413fcc7a854a36b69d",
"url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/2e39201ca4b88c1ec0594cd78128d21e94929d04",
"reference": "2e39201ca4b88c1ec0594cd78128d21e94929d04",
"shasum": ""
},
"require": {
@@ -1973,7 +1969,7 @@
"issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
"source": "https://github.com/giggsey/libphonenumber-for-php"
},
"time": "2022-07-20T12:38:47+00:00"
"time": "2022-08-08T06:53:30+00:00"
},
{
"name": "giggsey/locale",
@@ -2757,16 +2753,16 @@
},
{
"name": "laravel/cashier",
"version": "v13.13.0",
"version": "v13.15.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/cashier-stripe.git",
"reference": "29c09a335dda088a14720b12fd7c93549df7bb4c"
"reference": "846b69ac23231f2466f73e73a9b2d8a33ff6899c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/cashier-stripe/zipball/29c09a335dda088a14720b12fd7c93549df7bb4c",
"reference": "29c09a335dda088a14720b12fd7c93549df7bb4c",
"url": "https://api.github.com/repos/laravel/cashier-stripe/zipball/846b69ac23231f2466f73e73a9b2d8a33ff6899c",
"reference": "846b69ac23231f2466f73e73a9b2d8a33ff6899c",
"shasum": ""
},
"require": {
@@ -2784,7 +2780,7 @@
"moneyphp/money": "^3.2|^4.0",
"nesbot/carbon": "^2.0",
"php": "^7.3|^8.0",
"stripe/stripe-php": "^7.39|^8.0",
"stripe/stripe-php": "^7.39|^8.0|^9.0",
"symfony/http-kernel": "^5.0|^6.0",
"symfony/polyfill-intl-icu": "^1.22.1"
},
@@ -2837,20 +2833,20 @@
"issues": "https://github.com/laravel/cashier/issues",
"source": "https://github.com/laravel/cashier"
},
"time": "2022-07-13T14:47:53+00:00"
"time": "2022-08-09T15:32:03+00:00"
},
{
"name": "laravel/framework",
"version": "v9.22.1",
"version": "v9.24.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
"reference": "b3b3dd43b9899f23df6d1d3e5390bd4662947a46"
"reference": "053840f579cf01d353d81333802afced79b1c0af"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/b3b3dd43b9899f23df6d1d3e5390bd4662947a46",
"reference": "b3b3dd43b9899f23df6d1d3e5390bd4662947a46",
"url": "https://api.github.com/repos/laravel/framework/zipball/053840f579cf01d353d81333802afced79b1c0af",
"reference": "053840f579cf01d353d81333802afced79b1c0af",
"shasum": ""
},
"require": {
@@ -2871,7 +2867,7 @@
"psr/log": "^1.0|^2.0|^3.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"ramsey/uuid": "^4.2.2",
"symfony/console": "^6.0",
"symfony/console": "^6.0.3",
"symfony/error-handler": "^6.0",
"symfony/finder": "^6.0",
"symfony/http-foundation": "^6.0",
@@ -3017,7 +3013,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2022-07-26T16:16:33+00:00"
"time": "2022-08-09T13:43:22+00:00"
},
{
"name": "laravel/passport",
@@ -3157,16 +3153,16 @@
},
{
"name": "laravel/socialite",
"version": "v5.5.3",
"version": "v5.5.4",
"source": {
"type": "git",
"url": "https://github.com/laravel/socialite.git",
"reference": "9dfc76b31ee041c45a7cae86f23339784abde46d"
"reference": "3eec261bf83690dd85812587457f093e3156dca6"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/socialite/zipball/9dfc76b31ee041c45a7cae86f23339784abde46d",
"reference": "9dfc76b31ee041c45a7cae86f23339784abde46d",
"url": "https://api.github.com/repos/laravel/socialite/zipball/3eec261bf83690dd85812587457f093e3156dca6",
"reference": "3eec261bf83690dd85812587457f093e3156dca6",
"shasum": ""
},
"require": {
@@ -3222,7 +3218,7 @@
"issues": "https://github.com/laravel/socialite/issues",
"source": "https://github.com/laravel/socialite"
},
"time": "2022-07-18T13:51:19+00:00"
"time": "2022-08-08T13:27:06+00:00"
},
{
"name": "laravel/ui",
@@ -4624,16 +4620,16 @@
},
{
"name": "moneyphp/money",
"version": "v4.0.4",
"version": "v4.0.5",
"source": {
"type": "git",
"url": "https://github.com/moneyphp/money.git",
"reference": "efe904ab6109d87046eb624d5dff7d270fd0cca5"
"reference": "cee58435ff82a5de252c516e6a31beb674898985"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/moneyphp/money/zipball/efe904ab6109d87046eb624d5dff7d270fd0cca5",
"reference": "efe904ab6109d87046eb624d5dff7d270fd0cca5",
"url": "https://api.github.com/repos/moneyphp/money/zipball/cee58435ff82a5de252c516e6a31beb674898985",
"reference": "cee58435ff82a5de252c516e6a31beb674898985",
"shasum": ""
},
"require": {
@@ -4706,9 +4702,9 @@
],
"support": {
"issues": "https://github.com/moneyphp/money/issues",
"source": "https://github.com/moneyphp/money/tree/v4.0.4"
"source": "https://github.com/moneyphp/money/tree/v4.0.5"
},
"time": "2022-05-18T19:32:15+00:00"
"time": "2022-08-11T09:12:20+00:00"
},
{
"name": "monicahq/laravel-cloudflare",
@@ -5025,16 +5021,16 @@
},
{
"name": "nesbot/carbon",
"version": "2.60.0",
"version": "2.61.0",
"source": {
"type": "git",
"url": "https://github.com/briannesbitt/Carbon.git",
"reference": "00a259ae02b003c563158b54fb6743252b638ea6"
"reference": "bdf4f4fe3a3eac4de84dbec0738082a862c68ba6"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/00a259ae02b003c563158b54fb6743252b638ea6",
"reference": "00a259ae02b003c563158b54fb6743252b638ea6",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bdf4f4fe3a3eac4de84dbec0738082a862c68ba6",
"reference": "bdf4f4fe3a3eac4de84dbec0738082a862c68ba6",
"shasum": ""
},
"require": {
@@ -5123,7 +5119,7 @@
"type": "tidelift"
}
],
"time": "2022-07-27T15:57:48+00:00"
"time": "2022-08-06T12:41:24+00:00"
},
{
"name": "nette/schema",
@@ -5274,16 +5270,16 @@
},
{
"name": "nunomaduro/termwind",
"version": "v1.13.0",
"version": "v1.14.0",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/termwind.git",
"reference": "132a24bd3e8c559e7f14fa14ba1b83772a0f97f8"
"reference": "10065367baccf13b6e30f5e9246fa4f63a79eb1d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nunomaduro/termwind/zipball/132a24bd3e8c559e7f14fa14ba1b83772a0f97f8",
"reference": "132a24bd3e8c559e7f14fa14ba1b83772a0f97f8",
"url": "https://api.github.com/repos/nunomaduro/termwind/zipball/10065367baccf13b6e30f5e9246fa4f63a79eb1d",
"reference": "10065367baccf13b6e30f5e9246fa4f63a79eb1d",
"shasum": ""
},
"require": {
@@ -5295,7 +5291,7 @@
"ergebnis/phpstan-rules": "^1.0.",
"illuminate/console": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0",
"laravel/pint": "^0.2.0",
"laravel/pint": "^1.0.0",
"pestphp/pest": "^1.21.0",
"pestphp/pest-plugin-mock": "^1.0",
"phpstan/phpstan": "^1.4.6",
@@ -5340,7 +5336,7 @@
],
"support": {
"issues": "https://github.com/nunomaduro/termwind/issues",
"source": "https://github.com/nunomaduro/termwind/tree/v1.13.0"
"source": "https://github.com/nunomaduro/termwind/tree/v1.14.0"
},
"funding": [
{
@@ -5356,7 +5352,7 @@
"type": "github"
}
],
"time": "2022-07-01T15:06:55+00:00"
"time": "2022-08-01T11:03:24+00:00"
},
{
"name": "nyholm/psr7",
@@ -7188,20 +7184,20 @@
},
{
"name": "ramsey/uuid",
"version": "4.3.1",
"version": "4.4.0",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
"reference": "8505afd4fea63b81a85d3b7b53ac3cb8dc347c28"
"reference": "373f7bacfcf3de038778ff27dcce5672ddbf4c8a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ramsey/uuid/zipball/8505afd4fea63b81a85d3b7b53ac3cb8dc347c28",
"reference": "8505afd4fea63b81a85d3b7b53ac3cb8dc347c28",
"url": "https://api.github.com/repos/ramsey/uuid/zipball/373f7bacfcf3de038778ff27dcce5672ddbf4c8a",
"reference": "373f7bacfcf3de038778ff27dcce5672ddbf4c8a",
"shasum": ""
},
"require": {
"brick/math": "^0.8 || ^0.9",
"brick/math": "^0.8 || ^0.9 || ^0.10",
"ext-ctype": "*",
"ext-json": "*",
"php": "^8.0",
@@ -7217,7 +7213,6 @@
"doctrine/annotations": "^1.8",
"ergebnis/composer-normalize": "^2.15",
"mockery/mockery": "^1.3",
"moontoast/math": "^1.1",
"paragonie/random-lib": "^2",
"php-mock/php-mock": "^2.2",
"php-mock/php-mock-mockery": "^1.3",
@@ -7266,7 +7261,7 @@
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
"source": "https://github.com/ramsey/uuid/tree/4.3.1"
"source": "https://github.com/ramsey/uuid/tree/4.4.0"
},
"funding": [
{
@@ -7278,7 +7273,7 @@
"type": "tidelift"
}
],
"time": "2022-03-27T21:42:02+00:00"
"time": "2022-08-05T17:58:37+00:00"
},
{
"name": "rinvex/countries",
@@ -8247,16 +8242,16 @@
},
{
"name": "stella-maris/clock",
"version": "0.1.4",
"version": "0.1.5",
"source": {
"type": "git",
"url": "https://gitlab.com/stella-maris/clock.git",
"reference": "8a0a967896df4c63417385dc69328a0aec84d9cf"
"url": "git@gitlab.com:stella-maris/clock.git",
"reference": "447879c53ca0b2a762cdbfba5e76ccf4deca9158"
},
"dist": {
"type": "zip",
"url": "https://gitlab.com/api/v4/projects/stella-maris%2Fclock/repository/archive.zip?sha=8a0a967896df4c63417385dc69328a0aec84d9cf",
"reference": "8a0a967896df4c63417385dc69328a0aec84d9cf",
"url": "https://gitlab.com/api/v4/projects/stella-maris%2Fclock/repository/archive.zip?sha=447879c53ca0b2a762cdbfba5e76ccf4deca9158",
"reference": "447879c53ca0b2a762cdbfba5e76ccf4deca9158",
"shasum": ""
},
"require": {
@@ -8286,11 +8281,7 @@
"point in time",
"psr20"
],
"support": {
"issues": "https://gitlab.com/stella-maris/clock/-/issues",
"source": "https://gitlab.com/stella-maris/clock/-/tree/0.1.4"
},
"time": "2022-04-17T14:12:26+00:00"
"time": "2022-08-05T07:21:25+00:00"
},
{
"name": "stevebauman/location",
@@ -8362,16 +8353,16 @@
},
{
"name": "stripe/stripe-php",
"version": "v8.12.0",
"version": "v9.1.0",
"source": {
"type": "git",
"url": "https://github.com/stripe/stripe-php.git",
"reference": "1b7b1ea75c744b8a9f55a0942112f8e822a6a482"
"reference": "5dd4a247b56e5006ffe877e3749eb800d936dd19"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/stripe/stripe-php/zipball/1b7b1ea75c744b8a9f55a0942112f8e822a6a482",
"reference": "1b7b1ea75c744b8a9f55a0942112f8e822a6a482",
"url": "https://api.github.com/repos/stripe/stripe-php/zipball/5dd4a247b56e5006ffe877e3749eb800d936dd19",
"reference": "5dd4a247b56e5006ffe877e3749eb800d936dd19",
"shasum": ""
},
"require": {
@@ -8416,9 +8407,9 @@
],
"support": {
"issues": "https://github.com/stripe/stripe-php/issues",
"source": "https://github.com/stripe/stripe-php/tree/v8.12.0"
"source": "https://github.com/stripe/stripe-php/tree/v9.1.0"
},
"time": "2022-07-25T14:42:34+00:00"
"time": "2022-08-11T21:31:43+00:00"
},
{
"name": "symfony/console",
@@ -11207,16 +11198,16 @@
},
{
"name": "thecodingmachine/safe",
"version": "v2.2.2",
"version": "v2.2.3",
"source": {
"type": "git",
"url": "https://github.com/thecodingmachine/safe.git",
"reference": "440284f9592c9df402832452a6871a8b3c48d97e"
"reference": "e454a3142d2197694d1fda291a4462ccd3f66e12"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thecodingmachine/safe/zipball/440284f9592c9df402832452a6871a8b3c48d97e",
"reference": "440284f9592c9df402832452a6871a8b3c48d97e",
"url": "https://api.github.com/repos/thecodingmachine/safe/zipball/e454a3142d2197694d1fda291a4462ccd3f66e12",
"reference": "e454a3142d2197694d1fda291a4462ccd3f66e12",
"shasum": ""
},
"require": {
@@ -11339,9 +11330,9 @@
"description": "PHP core functions that throw exceptions instead of returning FALSE on error",
"support": {
"issues": "https://github.com/thecodingmachine/safe/issues",
"source": "https://github.com/thecodingmachine/safe/tree/v2.2.2"
"source": "https://github.com/thecodingmachine/safe/tree/v2.2.3"
},
"time": "2022-07-20T17:46:34+00:00"
"time": "2022-08-04T14:05:49+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
@@ -11745,16 +11736,16 @@
},
{
"name": "web-auth/cose-lib",
"version": "v4.0.4",
"version": "v4.0.5",
"source": {
"type": "git",
"url": "https://github.com/web-auth/cose-lib.git",
"reference": "72dfdef87ff01896f415cf2f17422dcb6f0d94dd"
"reference": "2fe6c0d35136d75bc538372a317ca5df5a75ce73"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/web-auth/cose-lib/zipball/72dfdef87ff01896f415cf2f17422dcb6f0d94dd",
"reference": "72dfdef87ff01896f415cf2f17422dcb6f0d94dd",
"url": "https://api.github.com/repos/web-auth/cose-lib/zipball/2fe6c0d35136d75bc538372a317ca5df5a75ce73",
"reference": "2fe6c0d35136d75bc538372a317ca5df5a75ce73",
"shasum": ""
},
"require": {
@@ -11770,6 +11761,7 @@
"require-dev": {
"ekino/phpstan-banned-code": "^1.0",
"infection/infection": "^0.26.12",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
@@ -11813,7 +11805,7 @@
],
"support": {
"issues": "https://github.com/web-auth/cose-lib/issues",
"source": "https://github.com/web-auth/cose-lib/tree/v4.0.4"
"source": "https://github.com/web-auth/cose-lib/tree/v4.0.5"
},
"funding": [
{
@@ -11825,7 +11817,7 @@
"type": "patreon"
}
],
"time": "2022-07-16T13:53:10+00:00"
"time": "2022-08-04T16:48:04+00:00"
},
{
"name": "web-auth/metadata-service",
@@ -11980,7 +11972,7 @@
},
{
"name": "web-token/jwt-core",
"version": "v3.0.6",
"version": "v3.0.7",
"source": {
"type": "git",
"url": "https://github.com/web-token/jwt-core.git",
@@ -12044,7 +12036,7 @@
"symfony"
],
"support": {
"source": "https://github.com/web-token/jwt-core/tree/v3.0.6"
"source": "https://github.com/web-token/jwt-core/tree/v3.0.7"
},
"funding": [
{
@@ -12056,16 +12048,16 @@
},
{
"name": "web-token/jwt-key-mgmt",
"version": "v3.0.6",
"version": "v3.0.7",
"source": {
"type": "git",
"url": "https://github.com/web-token/jwt-key-mgmt.git",
"reference": "6f0e3ab1a0158d0de0cc5930e7a0a2e89b2b35ee"
"reference": "abe168fdba4e03e4d497cc1c4945df7be0bc7f8e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/web-token/jwt-key-mgmt/zipball/6f0e3ab1a0158d0de0cc5930e7a0a2e89b2b35ee",
"reference": "6f0e3ab1a0158d0de0cc5930e7a0a2e89b2b35ee",
"url": "https://api.github.com/repos/web-token/jwt-key-mgmt/zipball/abe168fdba4e03e4d497cc1c4945df7be0bc7f8e",
"reference": "abe168fdba4e03e4d497cc1c4945df7be0bc7f8e",
"shasum": ""
},
"require": {
@@ -12122,7 +12114,7 @@
"symfony"
],
"support": {
"source": "https://github.com/web-token/jwt-key-mgmt/tree/v3.0.6"
"source": "https://github.com/web-token/jwt-key-mgmt/tree/v3.0.7"
},
"funding": [
{
@@ -12130,11 +12122,11 @@
"type": "patreon"
}
],
"time": "2022-05-30T12:19:12+00:00"
"time": "2022-08-04T20:24:29+00:00"
},
{
"name": "web-token/jwt-signature",
"version": "v3.0.6",
"version": "v3.0.7",
"source": {
"type": "git",
"url": "https://github.com/web-token/jwt-signature.git",
@@ -12199,7 +12191,7 @@
"symfony"
],
"support": {
"source": "https://github.com/web-token/jwt-signature/tree/v3.0.6"
"source": "https://github.com/web-token/jwt-signature/tree/v3.0.7"
},
"funding": [
{
@@ -12211,7 +12203,7 @@
},
{
"name": "web-token/jwt-signature-algorithm-ecdsa",
"version": "v3.0.6",
"version": "v3.0.7",
"source": {
"type": "git",
"url": "https://github.com/web-token/jwt-signature-algorithm-ecdsa.git",
@@ -12269,7 +12261,7 @@
"symfony"
],
"support": {
"source": "https://github.com/web-token/jwt-signature-algorithm-ecdsa/tree/v3.0.6"
"source": "https://github.com/web-token/jwt-signature-algorithm-ecdsa/tree/v3.0.7"
},
"funding": [
{
@@ -12281,7 +12273,7 @@
},
{
"name": "web-token/jwt-signature-algorithm-eddsa",
"version": "v3.0.6",
"version": "v3.0.7",
"source": {
"type": "git",
"url": "https://github.com/web-token/jwt-signature-algorithm-eddsa.git",
@@ -12339,7 +12331,7 @@
"symfony"
],
"support": {
"source": "https://github.com/web-token/jwt-signature-algorithm-eddsa/tree/v3.0.6"
"source": "https://github.com/web-token/jwt-signature-algorithm-eddsa/tree/v3.0.7"
},
"funding": [
{
@@ -12351,7 +12343,7 @@
},
{
"name": "web-token/jwt-signature-algorithm-rsa",
"version": "v3.0.6",
"version": "v3.0.7",
"source": {
"type": "git",
"url": "https://github.com/web-token/jwt-signature-algorithm-rsa.git",
@@ -12414,7 +12406,7 @@
"symfony"
],
"support": {
"source": "https://github.com/web-token/jwt-signature-algorithm-rsa/tree/v3.0.6"
"source": "https://github.com/web-token/jwt-signature-algorithm-rsa/tree/v3.0.7"
},
"funding": [
{
@@ -13805,23 +13797,25 @@
},
{
"name": "khanamiryan/qrcode-detector-decoder",
"version": "1.0.5.2",
"version": "1.0.6",
"source": {
"type": "git",
"url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
"reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
"reference": "45326fb83a2a375065dbb3a134b5b8a5872da569"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
"reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
"url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/45326fb83a2a375065dbb3a134b5b8a5872da569",
"reference": "45326fb83a2a375065dbb3a134b5b8a5872da569",
"shasum": ""
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
"phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0",
"rector/rector": "^0.13.6",
"symplify/easy-coding-standard": "^11.0"
},
"type": "library",
"autoload": {
@@ -13854,9 +13848,9 @@
],
"support": {
"issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
"source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.2"
"source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.6"
},
"time": "2021-07-13T18:46:38+00:00"
"time": "2022-06-29T09:25:13+00:00"
},
{
"name": "laravel/dusk",
@@ -14643,23 +14637,23 @@
},
{
"name": "orchestra/testbench",
"version": "v7.6.0",
"version": "v7.6.1",
"source": {
"type": "git",
"url": "https://github.com/orchestral/testbench.git",
"reference": "4c4a7cf0df2d91cdd202aa6f7177a2476ddd8039"
"reference": "a581fcf15f275e68d48b0d516425051559a43246"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/orchestral/testbench/zipball/4c4a7cf0df2d91cdd202aa6f7177a2476ddd8039",
"reference": "4c4a7cf0df2d91cdd202aa6f7177a2476ddd8039",
"url": "https://api.github.com/repos/orchestral/testbench/zipball/a581fcf15f275e68d48b0d516425051559a43246",
"reference": "a581fcf15f275e68d48b0d516425051559a43246",
"shasum": ""
},
"require": {
"fakerphp/faker": "^1.9.2",
"laravel/framework": "^9.19",
"mockery/mockery": "^1.4.4",
"orchestra/testbench-core": "^7.6",
"orchestra/testbench-core": "^7.6.1",
"php": "^8.0",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ray": "^1.28",
@@ -14696,7 +14690,7 @@
],
"support": {
"issues": "https://github.com/orchestral/testbench/issues",
"source": "https://github.com/orchestral/testbench/tree/v7.6.0"
"source": "https://github.com/orchestral/testbench/tree/v7.6.1"
},
"funding": [
{
@@ -14708,20 +14702,20 @@
"type": "liberapay"
}
],
"time": "2022-06-30T09:57:38+00:00"
"time": "2022-08-10T03:44:49+00:00"
},
{
"name": "orchestra/testbench-core",
"version": "v7.6.0",
"version": "v7.6.1",
"source": {
"type": "git",
"url": "https://github.com/orchestral/testbench-core.git",
"reference": "3e4e7ed08c353f2178b0cbce845ca90c3cb28e08"
"reference": "cc12b2f4ec84d7928538785234f353cfa4bb8009"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/orchestral/testbench-core/zipball/3e4e7ed08c353f2178b0cbce845ca90c3cb28e08",
"reference": "3e4e7ed08c353f2178b0cbce845ca90c3cb28e08",
"url": "https://api.github.com/repos/orchestral/testbench-core/zipball/cc12b2f4ec84d7928538785234f353cfa4bb8009",
"reference": "cc12b2f4ec84d7928538785234f353cfa4bb8009",
"shasum": ""
},
"require": {
@@ -14731,9 +14725,10 @@
"fakerphp/faker": "^1.9.2",
"laravel/framework": "^9.19",
"laravel/laravel": "9.x-dev",
"laravel/pint": "^1.1",
"mockery/mockery": "^1.4.4",
"orchestra/canvas": "^7.0",
"phpunit/phpunit": "^9.5.10 || ^10.0",
"phpunit/phpunit": "^9.5.10",
"symfony/process": "^6.0",
"symfony/yaml": "^6.0",
"vlucas/phpdotenv": "^5.4.1"
@@ -14746,7 +14741,7 @@
"nunomaduro/collision": "Allow using Laravel style tests output and parallel testing (^6.2).",
"orchestra/testbench-browser-kit": "Allow using legacy Laravel BrowserKit for testing (^7.0).",
"orchestra/testbench-dusk": "Allow using Laravel Dusk for testing (^7.0).",
"phpunit/phpunit": "Allow using PHPUnit for testing (^9.5.10|^10.0).",
"phpunit/phpunit": "Allow using PHPUnit for testing (^9.5.10).",
"symfony/yaml": "Required for CLI Commander (^6.0).",
"vlucas/phpdotenv": "Required for CLI Commander (^5.4.1)."
},
@@ -14802,7 +14797,7 @@
"type": "liberapay"
}
],
"time": "2022-06-30T09:52:25+00:00"
"time": "2022-08-10T02:28:59+00:00"
},
{
"name": "phar-io/manifest",
@@ -15976,12 +15971,12 @@
"source": {
"type": "git",
"url": "https://github.com/Roave/SecurityAdvisories.git",
"reference": "83594c26a26f66af6e5322b9011b2e243a5509e8"
"reference": "773292d413a97c357a0b49635afd5fdb1d4f314a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/83594c26a26f66af6e5322b9011b2e243a5509e8",
"reference": "83594c26a26f66af6e5322b9011b2e243a5509e8",
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/773292d413a97c357a0b49635afd5fdb1d4f314a",
"reference": "773292d413a97c357a0b49635afd5fdb1d4f314a",
"shasum": ""
},
"conflict": {
@@ -16099,6 +16094,7 @@
"flarum/sticky": ">=0.1-beta.14,<=0.1-beta.15",
"flarum/tags": "<=0.1-beta.13",
"fluidtypo3/vhs": "<5.1.1",
"fof/byobu": ">=0.3-beta.2,<1.1.7",
"fof/upload": "<1.2.3",
"fooman/tcpdf": "<6.2.22",
"forkcms/forkcms": "<5.11.1",
@@ -16190,7 +16186,7 @@
"mautic/core": "<4.3|= 2.13.1",
"mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35",
"mezzio/mezzio-swoole": "<3.7|>=4,<4.3",
"microweber/microweber": "<1.3",
"microweber/microweber": "<1.3.1",
"miniorange/miniorange-saml": "<1.4.3",
"mittwald/typo3_forum": "<1.2.1",
"modx/revolution": "<= 2.8.3-pl|<2.8",
@@ -16482,7 +16478,7 @@
"type": "tidelift"
}
],
"time": "2022-07-29T23:04:14+00:00"
"time": "2022-08-12T16:04:45+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -17512,16 +17508,16 @@
},
{
"name": "spatie/flare-client-php",
"version": "1.2.0",
"version": "1.3.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/flare-client-php.git",
"reference": "86a380f5b1ce839af04a08f1c8f2697184cdf23f"
"reference": "b1b974348750925b717fa8c8b97a0db0d1aa40ca"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/spatie/flare-client-php/zipball/86a380f5b1ce839af04a08f1c8f2697184cdf23f",
"reference": "86a380f5b1ce839af04a08f1c8f2697184cdf23f",
"url": "https://api.github.com/repos/spatie/flare-client-php/zipball/b1b974348750925b717fa8c8b97a0db0d1aa40ca",
"reference": "b1b974348750925b717fa8c8b97a0db0d1aa40ca",
"shasum": ""
},
"require": {
@@ -17569,7 +17565,7 @@
],
"support": {
"issues": "https://github.com/spatie/flare-client-php/issues",
"source": "https://github.com/spatie/flare-client-php/tree/1.2.0"
"source": "https://github.com/spatie/flare-client-php/tree/1.3.0"
},
"funding": [
{
@@ -17577,7 +17573,7 @@
"type": "github"
}
],
"time": "2022-05-16T12:13:39+00:00"
"time": "2022-08-08T10:10:20+00:00"
},
{
"name": "spatie/ignition",
@@ -17830,16 +17826,16 @@
},
{
"name": "spatie/ray",
"version": "1.34.5",
"version": "1.36.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/ray.git",
"reference": "2d64ea264eecbdc7ec01e4e8b45978cae80815d2"
"reference": "4a4def8cda4806218341b8204c98375aa8c34323"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/spatie/ray/zipball/2d64ea264eecbdc7ec01e4e8b45978cae80815d2",
"reference": "2d64ea264eecbdc7ec01e4e8b45978cae80815d2",
"url": "https://api.github.com/repos/spatie/ray/zipball/4a4def8cda4806218341b8204c98375aa8c34323",
"reference": "4a4def8cda4806218341b8204c98375aa8c34323",
"shasum": ""
},
"require": {
@@ -17889,7 +17885,7 @@
],
"support": {
"issues": "https://github.com/spatie/ray/issues",
"source": "https://github.com/spatie/ray/tree/1.34.5"
"source": "https://github.com/spatie/ray/tree/1.36.0"
},
"funding": [
{
@@ -17901,7 +17897,7 @@
"type": "other"
}
],
"time": "2022-06-03T12:32:57+00:00"
"time": "2022-08-11T14:04:18+00:00"
},
{
"name": "symfony/polyfill-iconv",
@@ -18231,16 +18227,16 @@
},
{
"name": "vimeo/psalm",
"version": "v4.25.0",
"version": "4.26.0",
"source": {
"type": "git",
"url": "https://github.com/vimeo/psalm.git",
"reference": "d7cd84c4ebca74ba3419b9601f81d177bcbe2aac"
"reference": "6998fabb2bf528b65777bf9941920888d23c03ac"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/vimeo/psalm/zipball/d7cd84c4ebca74ba3419b9601f81d177bcbe2aac",
"reference": "d7cd84c4ebca74ba3419b9601f81d177bcbe2aac",
"url": "https://api.github.com/repos/vimeo/psalm/zipball/6998fabb2bf528b65777bf9941920888d23c03ac",
"reference": "6998fabb2bf528b65777bf9941920888d23c03ac",
"shasum": ""
},
"require": {
@@ -18332,9 +18328,9 @@
],
"support": {
"issues": "https://github.com/vimeo/psalm/issues",
"source": "https://github.com/vimeo/psalm/tree/v4.25.0"
"source": "https://github.com/vimeo/psalm/tree/4.26.0"
},
"time": "2022-07-25T17:04:37+00:00"
"time": "2022-07-31T13:10:26+00:00"
},
{
"name": "webmozart/path-util",
@@ -12,7 +12,7 @@ class AddressBookFactory extends Factory
/**
* The name of the factory's corresponding model.
*
* @var string
* @var class-string<\Illuminate\Database\Eloquent\Model>
*/
protected $model = AddressBook::class;
@@ -13,7 +13,7 @@ class AddressBookSubscriptionFactory extends Factory
/**
* The name of the factory's corresponding model.
*
* @var string
* @var class-string<\Illuminate\Database\Eloquent\Model>
*/
protected $model = AddressBookSubscription::class;
@@ -12,7 +12,7 @@ class ExportJobFactory extends Factory
/**
* The name of the factory's corresponding model.
*
* @var string
* @var class-string<\Illuminate\Database\Eloquent\Model>
*/
protected $model = ExportJob::class;
+1700 -1697
View File
File diff suppressed because it is too large Load Diff