diff --git a/VERSION.txt b/VERSION.txt
index 7fb66c74d101..4b336d6ed820 100644
--- a/VERSION.txt
+++ b/VERSION.txt
@@ -1 +1 @@
-5.3.99
\ No newline at end of file
+5.3.100
\ No newline at end of file
diff --git a/app/Http/Requests/ClientPortal/Invoices/ShowInvoiceRequest.php b/app/Http/Requests/ClientPortal/Invoices/ShowInvoiceRequest.php
index f9573fd1c3e3..8d246f98bdf9 100644
--- a/app/Http/Requests/ClientPortal/Invoices/ShowInvoiceRequest.php
+++ b/app/Http/Requests/ClientPortal/Invoices/ShowInvoiceRequest.php
@@ -23,7 +23,7 @@ class ShowInvoiceRequest extends Request
*/
public function authorize() : bool
{
- return auth()->guard('contact')->user()->client_id === (int)$this->invoice->client_id
+ return (int)auth()->guard('contact')->user()->client_id === (int)$this->invoice->client_id
&& auth()->guard('contact')->user()->company->enabled_modules & PortalComposer::MODULE_INVOICES;
}
}
diff --git a/app/Http/Requests/ClientPortal/PaymentMethod/CreatePaymentMethodRequest.php b/app/Http/Requests/ClientPortal/PaymentMethod/CreatePaymentMethodRequest.php
index f94d2071424f..cda603051f8d 100644
--- a/app/Http/Requests/ClientPortal/PaymentMethod/CreatePaymentMethodRequest.php
+++ b/app/Http/Requests/ClientPortal/PaymentMethod/CreatePaymentMethodRequest.php
@@ -27,9 +27,8 @@ class CreatePaymentMethodRequest extends FormRequest
$available_methods[] = $method['gateway_type_id'];
});
- if (in_array($this->query('method'), $available_methods)) {
- return true;
- }
+ if (in_array($this->query('method'), $available_methods))
+ return true;
return false;
}
diff --git a/app/Models/Client.php b/app/Models/Client.php
index 7a4e00c1753b..8c703661d4f9 100644
--- a/app/Models/Client.php
+++ b/app/Models/Client.php
@@ -486,7 +486,7 @@ class Client extends BaseModel implements HasLocalePreference
}
- if($this->currency()->code == 'EUR' && in_array(GatewayType::BANK_TRANSFER, array_column($pms, 'gateway_type_id'))){
+ if($this->currency()->code == 'EUR' && (in_array(GatewayType::BANK_TRANSFER, array_column($pms, 'gateway_type_id')) || in_array(GatewayType::SEPA, array_column($pms, 'gateway_type_id'))) ){
foreach($pms as $pm){
@@ -501,18 +501,6 @@ class Client extends BaseModel implements HasLocalePreference
}
- // if ($this->currency()->code == 'EUR' && in_array(GatewayType::SEPA, array_column($pms, 'gateway_type_id'))) {
- // foreach ($pms as $pm) {
- // if ($pm['gateway_type_id'] == GatewayType::SEPA) {
- // $cg = CompanyGateway::find($pm['company_gateway_id']);
-
- // if ($cg && $cg->fees_and_limits->{GatewayType::SEPA}->is_enabled) {
- // return $cg;
- // }
- // }
- // }
- // }
-
if ($this->country && $this->country->iso_3166_3 == 'GBR' && in_array(GatewayType::DIRECT_DEBIT, array_column($pms, 'gateway_type_id'))) {
foreach ($pms as $pm) {
if ($pm['gateway_type_id'] == GatewayType::DIRECT_DEBIT) {
diff --git a/app/Models/Invoice.php b/app/Models/Invoice.php
index f2907f385ef8..0c3031265ae6 100644
--- a/app/Models/Invoice.php
+++ b/app/Models/Invoice.php
@@ -346,7 +346,7 @@ class Invoice extends BaseModel
return '
'.ctrans('texts.overdue').'
';
break;
case self::STATUS_UNPAID:
- return ''.ctrans('texts.unpaid').'
';
+ return ''.ctrans('texts.unpaid').'
';
break;
case self::STATUS_REVERSED:
return ''.ctrans('texts.reversed').'
';
diff --git a/app/Models/Payment.php b/app/Models/Payment.php
index 3e5e3fab974e..622cacb2972d 100644
--- a/app/Models/Payment.php
+++ b/app/Models/Payment.php
@@ -212,7 +212,7 @@ class Payment extends BaseModel
return ''.ctrans('texts.payment_status_1').'
';
break;
case self::STATUS_CANCELLED:
- return ''.ctrans('texts.payment_status_2').'
';
+ return ''.ctrans('texts.payment_status_2').'
';
break;
case self::STATUS_FAILED:
return ''.ctrans('texts.payment_status_3').'
';
diff --git a/composer.lock b/composer.lock
index 767df76492d7..7b1b4b4bf873 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "7b3f79c9cba4d88565a17f269a2184a2",
+ "content-hash": "c9278efe297c252de6bc0b5a48540c0b",
"packages": [
{
"name": "afosto/yaac",
@@ -434,16 +434,16 @@
},
{
"name": "aws/aws-sdk-php",
- "version": "3.222.20",
+ "version": "3.225.2",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "ae742d2ae4caa9410ad4dfe97551c68064c0cc54"
+ "reference": "f846724ad842916061127d20da4fe4e129f7d4b8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/ae742d2ae4caa9410ad4dfe97551c68064c0cc54",
- "reference": "ae742d2ae4caa9410ad4dfe97551c68064c0cc54",
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/f846724ad842916061127d20da4fe4e129f7d4b8",
+ "reference": "f846724ad842916061127d20da4fe4e129f7d4b8",
"shasum": ""
},
"require": {
@@ -451,7 +451,7 @@
"ext-json": "*",
"ext-pcre": "*",
"ext-simplexml": "*",
- "guzzlehttp/guzzle": "^5.3.3 || ^6.2.1 || ^7.0",
+ "guzzlehttp/guzzle": "^5.3.3 || ^6.5.6 || ^7.4.3",
"guzzlehttp/promises": "^1.4.0",
"guzzlehttp/psr7": "^1.7.0 || ^2.1.1",
"mtdowling/jmespath.php": "^2.6",
@@ -519,9 +519,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.222.20"
+ "source": "https://github.com/aws/aws-sdk-php/tree/3.225.2"
},
- "time": "2022-05-25T18:20:20+00:00"
+ "time": "2022-06-10T19:03:26+00:00"
},
{
"name": "bacon/bacon-qr-code",
@@ -2215,16 +2215,16 @@
},
{
"name": "google/apiclient",
- "version": "v2.12.4",
+ "version": "v2.12.6",
"source": {
"type": "git",
"url": "https://github.com/googleapis/google-api-php-client.git",
- "reference": "702eed9ae7022ba20dc7118c8161060cb50ee9f8"
+ "reference": "f92aa126903a9e2da5bd41a280d9633cb249e79e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/702eed9ae7022ba20dc7118c8161060cb50ee9f8",
- "reference": "702eed9ae7022ba20dc7118c8161060cb50ee9f8",
+ "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/f92aa126903a9e2da5bd41a280d9633cb249e79e",
+ "reference": "f92aa126903a9e2da5bd41a280d9633cb249e79e",
"shasum": ""
},
"require": {
@@ -2233,18 +2233,17 @@
"google/auth": "^1.10",
"guzzlehttp/guzzle": "~5.3.3||~6.0||~7.0",
"guzzlehttp/psr7": "^1.8.4||^2.2.1",
- "monolog/monolog": "^1.17||^2.0",
+ "monolog/monolog": "^1.17||^2.0||^3.0",
"php": "^5.6|^7.0|^8.0",
"phpseclib/phpseclib": "~2.0||^3.0.2"
},
"require-dev": {
"cache/filesystem-adapter": "^0.3.2|^1.1",
"composer/composer": "^1.10.22",
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/php-compatibility": "^9.2",
"phpspec/prophecy-phpunit": "^1.1||^2.0",
"phpunit/phpunit": "^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
- "squizlabs/php_codesniffer": "~2.3",
+ "squizlabs/php_codesniffer": "^3.0",
"symfony/css-selector": "~2.1",
"symfony/dom-crawler": "~2.1",
"yoast/phpunit-polyfills": "^1.0"
@@ -2280,22 +2279,22 @@
],
"support": {
"issues": "https://github.com/googleapis/google-api-php-client/issues",
- "source": "https://github.com/googleapis/google-api-php-client/tree/v2.12.4"
+ "source": "https://github.com/googleapis/google-api-php-client/tree/v2.12.6"
},
- "time": "2022-04-20T16:44:03+00:00"
+ "time": "2022-06-06T20:00:19+00:00"
},
{
"name": "google/apiclient-services",
- "version": "v0.250.0",
+ "version": "v0.252.0",
"source": {
"type": "git",
"url": "https://github.com/googleapis/google-api-php-client-services.git",
- "reference": "3db4c0db2a5452e623b54f06dd993c432e6d6f8c"
+ "reference": "9941c959f6a1f781e49019b78f453d54554dff73"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/3db4c0db2a5452e623b54f06dd993c432e6d6f8c",
- "reference": "3db4c0db2a5452e623b54f06dd993c432e6d6f8c",
+ "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/9941c959f6a1f781e49019b78f453d54554dff73",
+ "reference": "9941c959f6a1f781e49019b78f453d54554dff73",
"shasum": ""
},
"require": {
@@ -2324,9 +2323,9 @@
],
"support": {
"issues": "https://github.com/googleapis/google-api-php-client-services/issues",
- "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.250.0"
+ "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.252.0"
},
- "time": "2022-05-22T01:16:11+00:00"
+ "time": "2022-06-06T01:20:11+00:00"
},
{
"name": "google/auth",
@@ -2508,16 +2507,16 @@
},
{
"name": "guzzlehttp/guzzle",
- "version": "7.4.3",
+ "version": "7.4.4",
"source": {
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
- "reference": "74a8602c6faec9ef74b7a9391ac82c5e65b1cdab"
+ "reference": "e3ff079b22820c2029d4c2a87796b6a0b8716ad8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/74a8602c6faec9ef74b7a9391ac82c5e65b1cdab",
- "reference": "74a8602c6faec9ef74b7a9391ac82c5e65b1cdab",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/e3ff079b22820c2029d4c2a87796b6a0b8716ad8",
+ "reference": "e3ff079b22820c2029d4c2a87796b6a0b8716ad8",
"shasum": ""
},
"require": {
@@ -2612,7 +2611,7 @@
],
"support": {
"issues": "https://github.com/guzzle/guzzle/issues",
- "source": "https://github.com/guzzle/guzzle/tree/7.4.3"
+ "source": "https://github.com/guzzle/guzzle/tree/7.4.4"
},
"funding": [
{
@@ -2628,7 +2627,7 @@
"type": "tidelift"
}
],
- "time": "2022-05-25T13:24:33+00:00"
+ "time": "2022-06-09T21:39:15+00:00"
},
{
"name": "guzzlehttp/promises",
@@ -2716,16 +2715,16 @@
},
{
"name": "guzzlehttp/psr7",
- "version": "2.2.1",
+ "version": "2.3.0",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "c94a94f120803a18554c1805ef2e539f8285f9a2"
+ "reference": "83260bb50b8fc753c72d14dc1621a2dac31877ee"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/c94a94f120803a18554c1805ef2e539f8285f9a2",
- "reference": "c94a94f120803a18554c1805ef2e539f8285f9a2",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/83260bb50b8fc753c72d14dc1621a2dac31877ee",
+ "reference": "83260bb50b8fc753c72d14dc1621a2dac31877ee",
"shasum": ""
},
"require": {
@@ -2749,7 +2748,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.2-dev"
+ "dev-master": "2.3-dev"
}
},
"autoload": {
@@ -2811,7 +2810,7 @@
],
"support": {
"issues": "https://github.com/guzzle/psr7/issues",
- "source": "https://github.com/guzzle/psr7/tree/2.2.1"
+ "source": "https://github.com/guzzle/psr7/tree/2.3.0"
},
"funding": [
{
@@ -2827,7 +2826,7 @@
"type": "tidelift"
}
],
- "time": "2022-03-20T21:55:58+00:00"
+ "time": "2022-06-09T08:26:02+00:00"
},
{
"name": "halaxa/json-machine",
@@ -3066,6 +3065,174 @@
},
"time": "2021-07-21T13:50:14+00:00"
},
+ {
+ "name": "imdhemy/appstore-iap",
+ "version": "0.3.11",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/imdhemy/appstore-iap.git",
+ "reference": "f1400b7df2e003f8be0ef2f3fa267f7fbb2b69a5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/imdhemy/appstore-iap/zipball/f1400b7df2e003f8be0ef2f3fa267f7fbb2b69a5",
+ "reference": "f1400b7df2e003f8be0ef2f3fa267f7fbb2b69a5",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "guzzlehttp/guzzle": "^6.0|^7.0",
+ "nesbot/carbon": "^2.41"
+ },
+ "require-dev": {
+ "fakerphp/faker": "^1.14",
+ "friendsofphp/php-cs-fixer": "^2.16",
+ "phpunit/phpunit": "^8.5",
+ "symfony/var-dumper": "^5.1",
+ "vimeo/psalm": "^3.17"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Imdhemy\\AppStore\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "imdhemy",
+ "email": "imdhemy@gmail.com"
+ }
+ ],
+ "description": "PHP Appstore In-App Purchase implementation",
+ "support": {
+ "issues": "https://github.com/imdhemy/appstore-iap/issues",
+ "source": "https://github.com/imdhemy/appstore-iap/tree/0.3.11"
+ },
+ "time": "2021-05-15T06:44:10+00:00"
+ },
+ {
+ "name": "imdhemy/google-play-billing",
+ "version": "0.6.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/imdhemy/google-play-billing.git",
+ "reference": "957ec1a17db844ee74b1ad71252d2fbd489ab033"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/imdhemy/google-play-billing/zipball/957ec1a17db844ee74b1ad71252d2fbd489ab033",
+ "reference": "957ec1a17db844ee74b1ad71252d2fbd489ab033",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "google/auth": "^1.15",
+ "guzzlehttp/guzzle": "^6.0|^7.0",
+ "nesbot/carbon": "^2.41",
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^2.16",
+ "fzaninotto/faker": "^1.9",
+ "phpunit/phpunit": "^8.5",
+ "symfony/var-dumper": "^5.1",
+ "vimeo/psalm": "^3.17"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Imdhemy\\GooglePlay\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "authors": [
+ {
+ "name": "imdhemy",
+ "email": "imdhemy@gmail.com"
+ }
+ ],
+ "description": "Google Play Billing",
+ "support": {
+ "issues": "https://github.com/imdhemy/google-play-billing/issues",
+ "source": "https://github.com/imdhemy/google-play-billing/tree/0.6.4"
+ },
+ "time": "2021-10-16T09:50:02+00:00"
+ },
+ {
+ "name": "imdhemy/laravel-purchases",
+ "version": "0.10.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/imdhemy/laravel-in-app-purchases.git",
+ "reference": "49a883f71a8cc272cac4db9d046b2d362725e501"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/imdhemy/laravel-in-app-purchases/zipball/49a883f71a8cc272cac4db9d046b2d362725e501",
+ "reference": "49a883f71a8cc272cac4db9d046b2d362725e501",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "imdhemy/appstore-iap": "^0.3",
+ "imdhemy/google-play-billing": "^0.6",
+ "nesbot/carbon": "^2.41",
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^2.17",
+ "orchestra/testbench": "^5.0",
+ "phpunit/phpunit": "^8.5",
+ "psalm/plugin-laravel": "^1.2",
+ "vimeo/psalm": "^4.3"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Imdhemy\\Purchases\\PurchaseServiceProvider"
+ ],
+ "aliases": {
+ "Product": "\\Imdhemy\\Purchases\\Facades\\Product",
+ "Subscription": "\\Imdhemy\\Purchases\\Facades\\Subscription"
+ }
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Imdhemy\\Purchases\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "imdhemy",
+ "email": "imdhemy@gmail.com",
+ "homepage": "http://dhemy.studio",
+ "role": "Developer"
+ }
+ ],
+ "description": "Laravel receipt validator for Google Play",
+ "homepage": "https://github.com/imdhemy/laravel-in-app-purchases",
+ "keywords": [
+ "google_play",
+ "in_app_purchases",
+ "laravel",
+ "laravel-in-app-purchases"
+ ],
+ "support": {
+ "issues": "https://github.com/imdhemy/laravel-in-app-purchases/issues",
+ "source": "https://github.com/imdhemy/laravel-in-app-purchases/tree/0.10.3"
+ },
+ "time": "2021-04-03T15:29:14+00:00"
+ },
{
"name": "intervention/image",
"version": "2.7.2",
@@ -3324,16 +3491,16 @@
},
{
"name": "laravel/framework",
- "version": "v8.83.14",
+ "version": "v8.83.16",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "141cf126f1746c7264f59aa78c923a84eaab501e"
+ "reference": "6be5abd144faf517879af7298e9d79f06f250f75"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/141cf126f1746c7264f59aa78c923a84eaab501e",
- "reference": "141cf126f1746c7264f59aa78c923a84eaab501e",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/6be5abd144faf517879af7298e9d79f06f250f75",
+ "reference": "6be5abd144faf517879af7298e9d79f06f250f75",
"shasum": ""
},
"require": {
@@ -3493,7 +3660,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-05-24T14:04:02+00:00"
+ "time": "2022-06-07T15:09:06+00:00"
},
{
"name": "laravel/serializable-closure",
@@ -3814,17 +3981,152 @@
"time": "2022-05-20T13:38:08+00:00"
},
{
- "name": "league/commonmark",
- "version": "2.3.1",
+ "name": "lcobucci/clock",
+ "version": "2.0.0",
"source": {
"type": "git",
- "url": "https://github.com/thephpleague/commonmark.git",
- "reference": "cb36fee279f7fca01d5d9399ddd1b37e48e2eca1"
+ "url": "https://github.com/lcobucci/clock.git",
+ "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/cb36fee279f7fca01d5d9399ddd1b37e48e2eca1",
- "reference": "cb36fee279f7fca01d5d9399ddd1b37e48e2eca1",
+ "url": "https://api.github.com/repos/lcobucci/clock/zipball/353d83fe2e6ae95745b16b3d911813df6a05bfb3",
+ "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "infection/infection": "^0.17",
+ "lcobucci/coding-standard": "^6.0",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-deprecation-rules": "^0.12",
+ "phpstan/phpstan-phpunit": "^0.12",
+ "phpstan/phpstan-strict-rules": "^0.12",
+ "phpunit/php-code-coverage": "9.1.4",
+ "phpunit/phpunit": "9.3.7"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Lcobucci\\Clock\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Luís Cobucci",
+ "email": "lcobucci@gmail.com"
+ }
+ ],
+ "description": "Yet another clock abstraction",
+ "support": {
+ "issues": "https://github.com/lcobucci/clock/issues",
+ "source": "https://github.com/lcobucci/clock/tree/2.0.x"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/lcobucci",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/lcobucci",
+ "type": "patreon"
+ }
+ ],
+ "time": "2020-08-27T18:56:02+00:00"
+ },
+ {
+ "name": "lcobucci/jwt",
+ "version": "4.1.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/lcobucci/jwt.git",
+ "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
+ "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
+ "shasum": ""
+ },
+ "require": {
+ "ext-hash": "*",
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "ext-sodium": "*",
+ "lcobucci/clock": "^2.0",
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "infection/infection": "^0.21",
+ "lcobucci/coding-standard": "^6.0",
+ "mikey179/vfsstream": "^1.6.7",
+ "phpbench/phpbench": "^1.0",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-deprecation-rules": "^0.12",
+ "phpstan/phpstan-phpunit": "^0.12",
+ "phpstan/phpstan-strict-rules": "^0.12",
+ "phpunit/php-invoker": "^3.1",
+ "phpunit/phpunit": "^9.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Lcobucci\\JWT\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Luís Cobucci",
+ "email": "lcobucci@gmail.com",
+ "role": "Developer"
+ }
+ ],
+ "description": "A simple library to work with JSON Web Token and JSON Web Signature",
+ "keywords": [
+ "JWS",
+ "jwt"
+ ],
+ "support": {
+ "issues": "https://github.com/lcobucci/jwt/issues",
+ "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/lcobucci",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/lcobucci",
+ "type": "patreon"
+ }
+ ],
+ "time": "2021-09-28T19:34:56+00:00"
+ },
+ {
+ "name": "league/commonmark",
+ "version": "2.3.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/commonmark.git",
+ "reference": "0da1dca5781dd3cfddbe328224d9a7a62571addc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/0da1dca5781dd3cfddbe328224d9a7a62571addc",
+ "reference": "0da1dca5781dd3cfddbe328224d9a7a62571addc",
"shasum": ""
},
"require": {
@@ -3917,7 +4219,7 @@
"type": "tidelift"
}
],
- "time": "2022-05-14T15:37:39+00:00"
+ "time": "2022-06-07T21:28:26+00:00"
},
{
"name": "league/config",
@@ -4797,16 +5099,16 @@
},
{
"name": "monolog/monolog",
- "version": "2.6.0",
+ "version": "2.7.0",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
- "reference": "247918972acd74356b0a91dfaa5adcaec069b6c0"
+ "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/247918972acd74356b0a91dfaa5adcaec069b6c0",
- "reference": "247918972acd74356b0a91dfaa5adcaec069b6c0",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
+ "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
"shasum": ""
},
"require": {
@@ -4885,7 +5187,7 @@
],
"support": {
"issues": "https://github.com/Seldaek/monolog/issues",
- "source": "https://github.com/Seldaek/monolog/tree/2.6.0"
+ "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
},
"funding": [
{
@@ -4897,7 +5199,7 @@
"type": "tidelift"
}
],
- "time": "2022-05-10T09:36:00+00:00"
+ "time": "2022-06-09T08:59:12+00:00"
},
{
"name": "mtdowling/jmespath.php",
@@ -5279,16 +5581,16 @@
},
{
"name": "nikic/php-parser",
- "version": "v4.13.2",
+ "version": "v4.14.0",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
+ "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
- "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
+ "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
"shasum": ""
},
"require": {
@@ -5329,9 +5631,9 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
},
- "time": "2021-11-30T19:35:32+00:00"
+ "time": "2022-05-31T20:59:12+00:00"
},
{
"name": "nwidart/laravel-modules",
@@ -5714,16 +6016,16 @@
},
{
"name": "paragonie/constant_time_encoding",
- "version": "v2.5.0",
+ "version": "v2.6.1",
"source": {
"type": "git",
"url": "https://github.com/paragonie/constant_time_encoding.git",
- "reference": "9229e15f2e6ba772f0c55dd6986c563b937170a8"
+ "reference": "d6e1d5d0fb2458dfdd7018ec2f74be120353a3b9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/9229e15f2e6ba772f0c55dd6986c563b937170a8",
- "reference": "9229e15f2e6ba772f0c55dd6986c563b937170a8",
+ "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d6e1d5d0fb2458dfdd7018ec2f74be120353a3b9",
+ "reference": "d6e1d5d0fb2458dfdd7018ec2f74be120353a3b9",
"shasum": ""
},
"require": {
@@ -5777,7 +6079,7 @@
"issues": "https://github.com/paragonie/constant_time_encoding/issues",
"source": "https://github.com/paragonie/constant_time_encoding"
},
- "time": "2022-01-17T05:32:27+00:00"
+ "time": "2022-06-11T00:43:46+00:00"
},
{
"name": "paragonie/random_compat",
@@ -7039,16 +7341,16 @@
},
{
"name": "psy/psysh",
- "version": "v0.11.4",
+ "version": "v0.11.5",
"source": {
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
- "reference": "05c544b339b112226ad14803e1e5b09a61957454"
+ "reference": "c23686f9c48ca202710dbb967df8385a952a2daf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/05c544b339b112226ad14803e1e5b09a61957454",
- "reference": "05c544b339b112226ad14803e1e5b09a61957454",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/c23686f9c48ca202710dbb967df8385a952a2daf",
+ "reference": "c23686f9c48ca202710dbb967df8385a952a2daf",
"shasum": ""
},
"require": {
@@ -7109,9 +7411,9 @@
],
"support": {
"issues": "https://github.com/bobthecow/psysh/issues",
- "source": "https://github.com/bobthecow/psysh/tree/v0.11.4"
+ "source": "https://github.com/bobthecow/psysh/tree/v0.11.5"
},
- "time": "2022-05-06T12:49:14+00:00"
+ "time": "2022-05-27T18:03:49+00:00"
},
{
"name": "ralouphie/getallheaders",
@@ -7664,16 +7966,16 @@
},
{
"name": "sentry/sentry",
- "version": "3.5.0",
+ "version": "3.6.0",
"source": {
"type": "git",
"url": "https://github.com/getsentry/sentry-php.git",
- "reference": "5b611e3f09035f5ad5edf494443e3236bd5ea482"
+ "reference": "6d1a6ee29c558be373bfe08d454a3c116c02dd0d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/5b611e3f09035f5ad5edf494443e3236bd5ea482",
- "reference": "5b611e3f09035f5ad5edf494443e3236bd5ea482",
+ "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/6d1a6ee29c558be373bfe08d454a3c116c02dd0d",
+ "reference": "6d1a6ee29c558be373bfe08d454a3c116c02dd0d",
"shasum": ""
},
"require": {
@@ -7702,7 +8004,7 @@
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19|3.4.*",
"http-interop/http-factory-guzzle": "^1.0",
- "monolog/monolog": "^1.3|^2.0",
+ "monolog/monolog": "^1.6|^2.0|^3.0",
"nikic/php-parser": "^4.10.3",
"php-http/mock-client": "^1.3",
"phpbench/phpbench": "^1.0",
@@ -7719,7 +8021,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.5.x-dev"
+ "dev-master": "3.6.x-dev"
}
},
"autoload": {
@@ -7753,7 +8055,7 @@
],
"support": {
"issues": "https://github.com/getsentry/sentry-php/issues",
- "source": "https://github.com/getsentry/sentry-php/tree/3.5.0"
+ "source": "https://github.com/getsentry/sentry-php/tree/3.6.0"
},
"funding": [
{
@@ -7765,7 +8067,7 @@
"type": "custom"
}
],
- "time": "2022-05-19T07:14:12+00:00"
+ "time": "2022-06-09T20:33:39+00:00"
},
{
"name": "sentry/sentry-laravel",
@@ -7976,6 +8278,192 @@
],
"time": "2021-02-11T11:37:01+00:00"
},
+ {
+ "name": "socialiteproviders/apple",
+ "version": "5.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/SocialiteProviders/Apple.git",
+ "reference": "b34e1955e65ef6f5f897c8f63ace68297d28e02c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/SocialiteProviders/Apple/zipball/b34e1955e65ef6f5f897c8f63ace68297d28e02c",
+ "reference": "b34e1955e65ef6f5f897c8f63ace68297d28e02c",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-openssl": "*",
+ "firebase/php-jwt": "^6.2",
+ "lcobucci/jwt": "^4.1.5",
+ "php": "^7.4 || ^8.0",
+ "socialiteproviders/manager": "~4.0"
+ },
+ "suggest": {
+ "ahilmurugesan/socialite-apple-helper": "Automatic Apple client key generation and management."
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "SocialiteProviders\\Apple\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ahilan",
+ "email": "ahilmurugesan@gmail.com",
+ "role": "Developer"
+ },
+ {
+ "name": "Vamsi Krishna V",
+ "email": "vamsi@vonectech.com",
+ "homepage": "https://vonectech.com/",
+ "role": "Farmer"
+ }
+ ],
+ "description": "Apple OAuth2 Provider for Laravel Socialite",
+ "keywords": [
+ "apple",
+ "apple client key",
+ "apple sign in",
+ "client key generator",
+ "client key refresh",
+ "laravel",
+ "laravel apple",
+ "laravel socialite",
+ "oauth",
+ "provider",
+ "sign in with apple",
+ "socialite",
+ "socialite apple"
+ ],
+ "support": {
+ "docs": "https://socialiteproviders.com/apple",
+ "issues": "https://github.com/socialiteproviders/providers/issues",
+ "source": "https://github.com/socialiteproviders/providers"
+ },
+ "time": "2022-05-26T00:02:22+00:00"
+ },
+ {
+ "name": "socialiteproviders/manager",
+ "version": "v4.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/SocialiteProviders/Manager.git",
+ "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9",
+ "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
+ "laravel/socialite": "~4.0 || ~5.0",
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.2",
+ "phpunit/phpunit": "^6.0 || ^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "SocialiteProviders\\Manager\\ServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "SocialiteProviders\\Manager\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Andy Wendt",
+ "email": "andy@awendt.com"
+ },
+ {
+ "name": "Anton Komarev",
+ "email": "a.komarev@cybercog.su"
+ },
+ {
+ "name": "Miguel Piedrafita",
+ "email": "soy@miguelpiedrafita.com"
+ },
+ {
+ "name": "atymic",
+ "email": "atymicq@gmail.com",
+ "homepage": "https://atymic.dev"
+ }
+ ],
+ "description": "Easily add new or override built-in providers in Laravel Socialite.",
+ "homepage": "https://socialiteproviders.com",
+ "keywords": [
+ "laravel",
+ "manager",
+ "oauth",
+ "providers",
+ "socialite"
+ ],
+ "support": {
+ "issues": "https://github.com/socialiteproviders/manager/issues",
+ "source": "https://github.com/socialiteproviders/manager"
+ },
+ "time": "2022-01-23T22:40:23+00:00"
+ },
+ {
+ "name": "socialiteproviders/microsoft",
+ "version": "4.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/SocialiteProviders/Microsoft.git",
+ "reference": "2892499be9339c76853fd7e077e28f5f04120523"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/SocialiteProviders/Microsoft/zipball/2892499be9339c76853fd7e077e28f5f04120523",
+ "reference": "2892499be9339c76853fd7e077e28f5f04120523",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "php": "^7.2 || ^8.0",
+ "socialiteproviders/manager": "~4.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "SocialiteProviders\\Microsoft\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Brian Faust",
+ "email": "hello@brianfaust.de"
+ }
+ ],
+ "description": "Microsoft OAuth2 Provider for Laravel Socialite",
+ "support": {
+ "source": "https://github.com/SocialiteProviders/Microsoft/tree/4.1.1"
+ },
+ "time": "2021-03-16T01:16:00+00:00"
+ },
{
"name": "square/square",
"version": "13.0.0.20210721",
@@ -8171,16 +8659,16 @@
},
{
"name": "symfony/console",
- "version": "v5.4.8",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "ffe3aed36c4d60da2cf1b0a1cee6b8f2e5fa881b"
+ "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/ffe3aed36c4d60da2cf1b0a1cee6b8f2e5fa881b",
- "reference": "ffe3aed36c4d60da2cf1b0a1cee6b8f2e5fa881b",
+ "url": "https://api.github.com/repos/symfony/console/zipball/829d5d1bf60b2efeb0887b7436873becc71a45eb",
+ "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb",
"shasum": ""
},
"require": {
@@ -8250,7 +8738,7 @@
"terminal"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v5.4.8"
+ "source": "https://github.com/symfony/console/tree/v5.4.9"
},
"funding": [
{
@@ -8266,7 +8754,7 @@
"type": "tidelift"
}
],
- "time": "2022-04-12T16:02:29+00:00"
+ "time": "2022-05-18T06:17:34+00:00"
},
{
"name": "symfony/css-selector",
@@ -8403,16 +8891,16 @@
},
{
"name": "symfony/error-handler",
- "version": "v5.4.8",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
- "reference": "c1fcde614dfe99d62a83b796a53b8bad358b266a"
+ "reference": "c116cda1f51c678782768dce89a45f13c949455d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/c1fcde614dfe99d62a83b796a53b8bad358b266a",
- "reference": "c1fcde614dfe99d62a83b796a53b8bad358b266a",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
+ "reference": "c116cda1f51c678782768dce89a45f13c949455d",
"shasum": ""
},
"require": {
@@ -8454,7 +8942,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/error-handler/tree/v5.4.8"
+ "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
},
"funding": [
{
@@ -8470,20 +8958,20 @@
"type": "tidelift"
}
],
- "time": "2022-04-12T15:48:08+00:00"
+ "time": "2022-05-21T13:57:48+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "v5.4.3",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d"
+ "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/dec8a9f58d20df252b9cd89f1c6c1530f747685d",
- "reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
+ "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
"shasum": ""
},
"require": {
@@ -8539,7 +9027,7 @@
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.3"
+ "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
},
"funding": [
{
@@ -8555,7 +9043,7 @@
"type": "tidelift"
}
],
- "time": "2022-01-02T09:53:40+00:00"
+ "time": "2022-05-05T16:45:39+00:00"
},
{
"name": "symfony/event-dispatcher-contracts",
@@ -8638,16 +9126,16 @@
},
{
"name": "symfony/filesystem",
- "version": "v5.4.7",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
- "reference": "3a4442138d80c9f7b600fb297534ac718b61d37f"
+ "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/3a4442138d80c9f7b600fb297534ac718b61d37f",
- "reference": "3a4442138d80c9f7b600fb297534ac718b61d37f",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/36a017fa4cce1eff1b8e8129ff53513abcef05ba",
+ "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba",
"shasum": ""
},
"require": {
@@ -8682,7 +9170,7 @@
"description": "Provides basic utilities for the filesystem",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/filesystem/tree/v5.4.7"
+ "source": "https://github.com/symfony/filesystem/tree/v5.4.9"
},
"funding": [
{
@@ -8698,7 +9186,7 @@
"type": "tidelift"
}
],
- "time": "2022-04-01T12:33:59+00:00"
+ "time": "2022-05-20T13:55:35+00:00"
},
{
"name": "symfony/finder",
@@ -8765,16 +9253,16 @@
},
{
"name": "symfony/http-client",
- "version": "v5.4.8",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-client.git",
- "reference": "0dabec4e3898d3e00451dd47b5ef839168f9bbf5"
+ "reference": "dc0b15e42b762c040761c1eb9ce86a55d47cf672"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client/zipball/0dabec4e3898d3e00451dd47b5ef839168f9bbf5",
- "reference": "0dabec4e3898d3e00451dd47b5ef839168f9bbf5",
+ "url": "https://api.github.com/repos/symfony/http-client/zipball/dc0b15e42b762c040761c1eb9ce86a55d47cf672",
+ "reference": "dc0b15e42b762c040761c1eb9ce86a55d47cf672",
"shasum": ""
},
"require": {
@@ -8832,7 +9320,7 @@
"description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-client/tree/v5.4.8"
+ "source": "https://github.com/symfony/http-client/tree/v5.4.9"
},
"funding": [
{
@@ -8848,7 +9336,7 @@
"type": "tidelift"
}
],
- "time": "2022-04-12T16:02:29+00:00"
+ "time": "2022-05-21T08:57:05+00:00"
},
{
"name": "symfony/http-client-contracts",
@@ -8930,16 +9418,16 @@
},
{
"name": "symfony/http-foundation",
- "version": "v5.4.8",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "ff2818d1c3d49860bcae1f2cbb5eb00fcd3bf9e2"
+ "reference": "6b0d0e4aca38d57605dcd11e2416994b38774522"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ff2818d1c3d49860bcae1f2cbb5eb00fcd3bf9e2",
- "reference": "ff2818d1c3d49860bcae1f2cbb5eb00fcd3bf9e2",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6b0d0e4aca38d57605dcd11e2416994b38774522",
+ "reference": "6b0d0e4aca38d57605dcd11e2416994b38774522",
"shasum": ""
},
"require": {
@@ -8983,7 +9471,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v5.4.8"
+ "source": "https://github.com/symfony/http-foundation/tree/v5.4.9"
},
"funding": [
{
@@ -8999,20 +9487,20 @@
"type": "tidelift"
}
],
- "time": "2022-04-22T08:14:12+00:00"
+ "time": "2022-05-17T15:07:29+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v5.4.8",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "cf7e61106abfc19b305ca0aedc41724ced89a02a"
+ "reference": "34b121ad3dc761f35fe1346d2f15618f8cbf77f8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/cf7e61106abfc19b305ca0aedc41724ced89a02a",
- "reference": "cf7e61106abfc19b305ca0aedc41724ced89a02a",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/34b121ad3dc761f35fe1346d2f15618f8cbf77f8",
+ "reference": "34b121ad3dc761f35fe1346d2f15618f8cbf77f8",
"shasum": ""
},
"require": {
@@ -9095,7 +9583,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-kernel/tree/v5.4.8"
+ "source": "https://github.com/symfony/http-kernel/tree/v5.4.9"
},
"funding": [
{
@@ -9111,20 +9599,20 @@
"type": "tidelift"
}
],
- "time": "2022-04-27T17:22:21+00:00"
+ "time": "2022-05-27T07:09:08+00:00"
},
{
"name": "symfony/mime",
- "version": "v5.4.8",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/mime.git",
- "reference": "af49bc163ec3272f677bde3bc44c0d766c1fd662"
+ "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/af49bc163ec3272f677bde3bc44c0d766c1fd662",
- "reference": "af49bc163ec3272f677bde3bc44c0d766c1fd662",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/2b3802a24e48d0cfccf885173d2aac91e73df92e",
+ "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e",
"shasum": ""
},
"require": {
@@ -9178,7 +9666,7 @@
"mime-type"
],
"support": {
- "source": "https://github.com/symfony/mime/tree/v5.4.8"
+ "source": "https://github.com/symfony/mime/tree/v5.4.9"
},
"funding": [
{
@@ -9194,7 +9682,7 @@
"type": "tidelift"
}
],
- "time": "2022-04-12T15:48:08+00:00"
+ "time": "2022-05-21T10:24:18+00:00"
},
{
"name": "symfony/options-resolver",
@@ -9267,16 +9755,16 @@
},
{
"name": "symfony/polyfill-ctype",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "30885182c981ab175d4d034db0f6f469898070ab"
+ "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
- "reference": "30885182c981ab175d4d034db0f6f469898070ab",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
+ "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
"shasum": ""
},
"require": {
@@ -9291,7 +9779,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -9329,7 +9817,7 @@
"portable"
],
"support": {
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
},
"funding": [
{
@@ -9345,20 +9833,20 @@
"type": "tidelift"
}
],
- "time": "2021-10-20T20:35:02+00:00"
+ "time": "2022-05-24T11:49:31+00:00"
},
{
"name": "symfony/polyfill-iconv",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-iconv.git",
- "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40"
+ "reference": "143f1881e655bebca1312722af8068de235ae5dc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f1aed619e28cb077fc83fac8c4c0383578356e40",
- "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40",
+ "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
+ "reference": "143f1881e655bebca1312722af8068de235ae5dc",
"shasum": ""
},
"require": {
@@ -9373,7 +9861,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -9412,7 +9900,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-iconv/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
},
"funding": [
{
@@ -9428,20 +9916,20 @@
"type": "tidelift"
}
],
- "time": "2022-01-04T09:04:05+00:00"
+ "time": "2022-05-24T11:49:31+00:00"
},
{
"name": "symfony/polyfill-intl-grapheme",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
+ "reference": "433d05519ce6990bf3530fba6957499d327395c2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
- "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
+ "reference": "433d05519ce6990bf3530fba6957499d327395c2",
"shasum": ""
},
"require": {
@@ -9453,7 +9941,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -9493,7 +9981,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
},
"funding": [
{
@@ -9509,20 +9997,20 @@
"type": "tidelift"
}
],
- "time": "2021-11-23T21:10:46+00:00"
+ "time": "2022-05-24T11:49:31+00:00"
},
{
"name": "symfony/polyfill-intl-idn",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-idn.git",
- "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
+ "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
- "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
+ "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
"shasum": ""
},
"require": {
@@ -9536,7 +10024,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -9580,7 +10068,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
},
"funding": [
{
@@ -9596,20 +10084,20 @@
"type": "tidelift"
}
],
- "time": "2021-09-14T14:02:44+00:00"
+ "time": "2022-05-24T11:49:31+00:00"
},
{
"name": "symfony/polyfill-intl-normalizer",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
+ "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
- "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
+ "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
"shasum": ""
},
"require": {
@@ -9621,7 +10109,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -9664,7 +10152,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
},
"funding": [
{
@@ -9680,20 +10168,20 @@
"type": "tidelift"
}
],
- "time": "2021-02-19T12:13:01+00:00"
+ "time": "2022-05-24T11:49:31+00:00"
},
{
"name": "symfony/polyfill-mbstring",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
+ "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
- "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
+ "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
"shasum": ""
},
"require": {
@@ -9708,7 +10196,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -9747,7 +10235,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
},
"funding": [
{
@@ -9763,20 +10251,20 @@
"type": "tidelift"
}
],
- "time": "2021-11-30T18:21:41+00:00"
+ "time": "2022-05-24T11:49:31+00:00"
},
{
"name": "symfony/polyfill-php72",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
+ "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
- "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
+ "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
+ "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
"shasum": ""
},
"require": {
@@ -9785,7 +10273,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -9823,7 +10311,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
},
"funding": [
{
@@ -9839,20 +10327,20 @@
"type": "tidelift"
}
],
- "time": "2021-05-27T09:17:38+00:00"
+ "time": "2022-05-24T11:49:31+00:00"
},
{
"name": "symfony/polyfill-php73",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php73.git",
- "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
+ "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
- "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
+ "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
+ "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
"shasum": ""
},
"require": {
@@ -9861,7 +10349,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -9902,7 +10390,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
},
"funding": [
{
@@ -9918,20 +10406,20 @@
"type": "tidelift"
}
],
- "time": "2021-06-05T21:20:04+00:00"
+ "time": "2022-05-24T11:49:31+00:00"
},
{
"name": "symfony/polyfill-php80",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
+ "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
- "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
+ "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
"shasum": ""
},
"require": {
@@ -9940,7 +10428,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -9985,7 +10473,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
},
"funding": [
{
@@ -10001,20 +10489,20 @@
"type": "tidelift"
}
],
- "time": "2022-03-04T08:16:47+00:00"
+ "time": "2022-05-10T07:21:04+00:00"
},
{
"name": "symfony/polyfill-php81",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php81.git",
- "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
+ "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
- "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
+ "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
"shasum": ""
},
"require": {
@@ -10023,7 +10511,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -10064,7 +10552,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
},
"funding": [
{
@@ -10080,20 +10568,20 @@
"type": "tidelift"
}
],
- "time": "2021-09-13T13:58:11+00:00"
+ "time": "2022-05-24T11:49:31+00:00"
},
{
"name": "symfony/polyfill-uuid",
- "version": "v1.25.0",
+ "version": "v1.26.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-uuid.git",
- "reference": "7529922412d23ac44413d0f308861d50cf68d3ee"
+ "reference": "a41886c1c81dc075a09c71fe6db5b9d68c79de23"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/7529922412d23ac44413d0f308861d50cf68d3ee",
- "reference": "7529922412d23ac44413d0f308861d50cf68d3ee",
+ "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/a41886c1c81dc075a09c71fe6db5b9d68c79de23",
+ "reference": "a41886c1c81dc075a09c71fe6db5b9d68c79de23",
"shasum": ""
},
"require": {
@@ -10108,7 +10596,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.23-dev"
+ "dev-main": "1.26-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -10146,7 +10634,7 @@
"uuid"
],
"support": {
- "source": "https://github.com/symfony/polyfill-uuid/tree/v1.25.0"
+ "source": "https://github.com/symfony/polyfill-uuid/tree/v1.26.0"
},
"funding": [
{
@@ -10162,7 +10650,7 @@
"type": "tidelift"
}
],
- "time": "2021-10-20T20:35:02+00:00"
+ "time": "2022-05-24T11:49:31+00:00"
},
{
"name": "symfony/process",
@@ -10489,16 +10977,16 @@
},
{
"name": "symfony/string",
- "version": "v5.4.8",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
- "reference": "3c061a76bff6d6ea427d85e12ad1bb8ed8cd43e8"
+ "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/3c061a76bff6d6ea427d85e12ad1bb8ed8cd43e8",
- "reference": "3c061a76bff6d6ea427d85e12ad1bb8ed8cd43e8",
+ "url": "https://api.github.com/repos/symfony/string/zipball/985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
+ "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
"shasum": ""
},
"require": {
@@ -10555,7 +11043,7 @@
"utf8"
],
"support": {
- "source": "https://github.com/symfony/string/tree/v5.4.8"
+ "source": "https://github.com/symfony/string/tree/v5.4.9"
},
"funding": [
{
@@ -10575,16 +11063,16 @@
},
{
"name": "symfony/translation",
- "version": "v5.4.8",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "f5c0f6d1f20993b2606f3a5f36b1dc8c1899170b"
+ "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/f5c0f6d1f20993b2606f3a5f36b1dc8c1899170b",
- "reference": "f5c0f6d1f20993b2606f3a5f36b1dc8c1899170b",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/1639abc1177d26bcd4320e535e664cef067ab0ca",
+ "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca",
"shasum": ""
},
"require": {
@@ -10652,7 +11140,7 @@
"description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/translation/tree/v5.4.8"
+ "source": "https://github.com/symfony/translation/tree/v5.4.9"
},
"funding": [
{
@@ -10668,7 +11156,7 @@
"type": "tidelift"
}
],
- "time": "2022-04-22T08:14:12+00:00"
+ "time": "2022-05-06T12:33:37+00:00"
},
{
"name": "symfony/translation-contracts",
@@ -10750,16 +11238,16 @@
},
{
"name": "symfony/var-dumper",
- "version": "v5.4.8",
+ "version": "v5.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "cdcadd343d31ad16fc5e006b0de81ea307435053"
+ "reference": "af52239a330fafd192c773795520dc2dd62b5657"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cdcadd343d31ad16fc5e006b0de81ea307435053",
- "reference": "cdcadd343d31ad16fc5e006b0de81ea307435053",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
+ "reference": "af52239a330fafd192c773795520dc2dd62b5657",
"shasum": ""
},
"require": {
@@ -10819,7 +11307,7 @@
"dump"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v5.4.8"
+ "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
},
"funding": [
{
@@ -10835,7 +11323,7 @@
"type": "tidelift"
}
],
- "time": "2022-04-26T13:19:20+00:00"
+ "time": "2022-05-21T10:24:18+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
@@ -11178,21 +11666,21 @@
},
{
"name": "webmozart/assert",
- "version": "1.10.0",
+ "version": "1.11.0",
"source": {
"type": "git",
"url": "https://github.com/webmozarts/assert.git",
- "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
+ "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
- "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
+ "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
+ "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0",
- "symfony/polyfill-ctype": "^1.8"
+ "ext-ctype": "*",
+ "php": "^7.2 || ^8.0"
},
"conflict": {
"phpstan/phpstan": "<0.12.20",
@@ -11230,9 +11718,9 @@
],
"support": {
"issues": "https://github.com/webmozarts/assert/issues",
- "source": "https://github.com/webmozarts/assert/tree/1.10.0"
+ "source": "https://github.com/webmozarts/assert/tree/1.11.0"
},
- "time": "2021-03-09T10:59:23+00:00"
+ "time": "2022-06-03T18:03:27+00:00"
},
{
"name": "webpatser/laravel-countries",
@@ -14888,6 +15376,7 @@
"type": "tidelift"
}
],
+ "abandoned": "symfony/error-handler",
"time": "2022-04-12T15:19:55+00:00"
},
{
@@ -15236,5 +15725,5 @@
"platform-dev": {
"php": "^7.4|^8.0"
},
- "plugin-api-version": "2.1.0"
+ "plugin-api-version": "2.0.0"
}
diff --git a/config/ninja.php b/config/ninja.php
index 65016615d0e0..c07e03da7a42 100644
--- a/config/ninja.php
+++ b/config/ninja.php
@@ -14,8 +14,8 @@ return [
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
- 'app_version' => '5.3.99',
- 'app_tag' => '5.3.99',
+ 'app_version' => '5.3.100',
+ 'app_tag' => '5.3.100',
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', ''),
diff --git a/routes/vendor.php b/routes/vendor.php
index a9c2cc723e4d..48a8af4bf0cf 100644
--- a/routes/vendor.php
+++ b/routes/vendor.php
@@ -1,6 +1,4 @@