diff --git a/app/Http/Controllers/PreviewController.php b/app/Http/Controllers/PreviewController.php
index d5cf2651f002..fae8aefea366 100644
--- a/app/Http/Controllers/PreviewController.php
+++ b/app/Http/Controllers/PreviewController.php
@@ -361,21 +361,8 @@ class PreviewController extends BaseController
$design_object = json_decode(json_encode(request()->input('design')),1);
- // $client_id = Invoice::whereHas('payments')->company()->where('is_deleted', 0)->orderBy('id','desc')->first()->client_id;
- // $vendor_id = PurchaseOrder::query()->company()->where('is_deleted', 0)->orderBy('id', 'desc')->first()->vendor_id;
-
- // $data = [
- // 'invoices' => Invoice::whereHas('payments')->company()->with('client','payments')->where('client_id', $client_id)->orderBy('id','desc')->take(4)->get(),
- // 'quotes' => Quote::query()->company()->with('client')->where('client_id', $client_id)->orderBy('id','desc')->take(4)->get(),
- // 'credits' => Credit::query()->company()->with('client')->where('client_id', $client_id)->orderBy('id','desc')->take(4)->get(),
- // 'payments' => Payment::query()->company()->with('client')->where('client_id', $client_id)->orderBy('id','desc')->take(4)->get(),
- // 'purchase_orders' => PurchaseOrder::query()->company()->with('vendor')->where('vendor_id', $vendor_id)->orderBy('id','desc')->take(5)->get(),
- // 'tasks' => Task::query()->company()->with('client','invoice')->where('client_id', $client_id)->orderBy('id','desc')->take(2)->get(),
- // 'projects' => Project::query()->company()->with('tasks','client')->where('client_id', $client_id)->orderBy('id','desc')->take(2)->get(),
- // ];
-
-
$ts = (new TemplateService());
+
try {
$ts->setCompany($company)
->setTemplate($design_object)
@@ -383,9 +370,7 @@ class PreviewController extends BaseController
}
catch(\Twig\Error\SyntaxError $e)
{
-
// return response()->json(['message' => 'Twig syntax is invalid.', 'errors' => new \stdClass], 422);
-
}
$html = $ts->getHtml();
diff --git a/app/Services/Template/TemplateService.php b/app/Services/Template/TemplateService.php
index bdf1e9ed15c5..bf1b62507d37 100644
--- a/app/Services/Template/TemplateService.php
+++ b/app/Services/Template/TemplateService.php
@@ -140,10 +140,11 @@ class TemplateService
$tm = new TemplateMock($this->company);
$tm->init();
+ $this->entity = $this->company->invoices()->first();
+
$this->data = $tm->engines;
$this->variables = $tm->variables[0];
-
$this->parseNinjaBlocks()
->parseGlobalStacks()
->parseVariables();
@@ -261,13 +262,12 @@ class TemplateService
*
* @return self
*/
- private function parseVariables(): self
+ public function parseVariables(): self
{
$html = $this->getHtml();
foreach($this->variables as $key => $variable) {
-
if(isset($variable['labels']) && isset($variable['values'])) {
$html = strtr($html, $variable['labels']);
$html = strtr($html, $variable['values']);
@@ -827,12 +827,11 @@ class TemplateService
];
collect($stacks)->filter(function ($stack) {
- $this->document->getElementById($stack);
-
+ return $this->document->getElementById($stack) ?? false;
})->each(function ($stack){
$this->parseStack($stack);
});
-
+
return $this;
}
@@ -845,6 +844,7 @@ class TemplateService
*/
private function parseStack(string $stack): self
{
+
match($stack){
'entity-details' => $this->entityDetails(),
'client-details' => $this->clientDetails(),
@@ -854,82 +854,233 @@ class TemplateService
'shipping-details' => $this->shippingDetails(),
};
+ $this->save();
+
return $this;
}
private function companyDetails(): self
{
+ $var_set = $this->getVarSet();
$company_details =
- collect($this->company->settings->pdf_variables['company_details'])
- ->filter(function ($variable) {
- return isset($this->variables['values'][$variable]) && !empty($this->variables['values'][$variable]);
+ collect($this->company->settings->pdf_variables->company_details)
+ ->filter(function ($variable) use($var_set) {
+ return isset($var_set['values'][$variable]) && !empty($var_set['values'][$variable]);
})
->map(function ($variable) {
return ['element' => 'p', 'content' => $variable, 'show_empty' => false, 'properties' => ['data-ref' => 'company_details-' . substr($variable, 1)]];
})->toArray();
- $this->parseStack()
+ $this->updateElementProperties('company-details', $company_details);
+
return $this;
}
private function companyAddress(): self
{
- $variables = $this->company->settings->pdf_variables['company_address'];
+ $var_set = $this->getVarSet();
- $elements = [];
+ $company_address =
+ collect($this->company->settings->pdf_variables->company_address)
+ ->filter(function ($variable) use ($var_set) {
+ return isset($var_set['values'][$variable]) && !empty($var_set['values'][$variable]);
+ })
+ ->map(function ($variable) {
+ return ['element' => 'p', 'content' => $variable, 'show_empty' => false, 'properties' => ['data-ref' => 'company_address-' . substr($variable, 1)]];
+ })->toArray();
- foreach ($variables as $variable) {
- $elements[] = ['element' => 'p', 'content' => $variable, 'show_empty' => false, 'properties' => ['data-ref' => 'company_address-' . substr($variable, 1)]];
- }
-
- return $elements;
+ $this->updateElementProperties('company-address', $company_address);
return $this;
}
private function shippingDetails(): self
{
+ if(!$this->entity->client)
+ return $this;
+
+ $this->client = $this->entity->client;
+
+ $shipping_address = [
+ ['element' => 'p', 'content' => ctrans('texts.shipping_address'), 'properties' => ['data-ref' => 'shipping_address-label', 'style' => 'font-weight: bold; text-transform: uppercase']],
+ ['element' => 'p', 'content' => $this->client->name, 'show_empty' => false, 'properties' => ['data-ref' => 'shipping_address-client.name']],
+ ['element' => 'p', 'content' => $this->client->shipping_address1, 'show_empty' => false, 'properties' => ['data-ref' => 'shipping_address-client.shipping_address1']],
+ ['element' => 'p', 'content' => $this->client->shipping_address2, 'show_empty' => false, 'properties' => ['data-ref' => 'shipping_address-client.shipping_address2']],
+ ['element' => 'p', 'show_empty' => false, 'elements' => [
+ ['element' => 'span', 'content' => "{$this->client->shipping_city} ", 'properties' => ['ref' => 'shipping_address-client.shipping_city']],
+ ['element' => 'span', 'content' => "{$this->client->shipping_state} ", 'properties' => ['ref' => 'shipping_address-client.shipping_state']],
+ ['element' => 'span', 'content' => "{$this->client->shipping_postal_code} ", 'properties' => ['ref' => 'shipping_address-client.shipping_postal_code']],
+ ]],
+ ['element' => 'p', 'content' => optional($this->client->shipping_country)->name, 'show_empty' => false],
+ ];
+
+ $shipping_address =
+ collect($shipping_address)->filter(function ($address){
+ return isset($address['content']) && !empty($address['content']);
+ })->toArray();
+
+ $this->updateElementProperties('shipping-details', $shipping_address);
return $this;
}
private function clientDetails(): self
{
+ $var_set = $this->getVarSet();
+
+ $client_details =
+ collect($this->company->settings->pdf_variables->client_details)
+ ->filter(function ($variable) use ($var_set) {
+ return isset($var_set['values'][$variable]) && !empty($var_set['values'][$variable]);
+ })
+ ->map(function ($variable) {
+ return ['element' => 'p', 'content' => $variable, 'show_empty' => false, 'properties' => ['data-ref' => 'client_details-' . substr($variable, 1)]];
+ })->toArray();
+
+
+ $this->updateElementProperties('client-details', $client_details);
return $this;
}
+ private function resolveEntity(): string
+ {
+ $entity_string = '';
+
+ match($this->entity){
+ ($this->entity instanceof Invoice) => $entity_string = 'invoice',
+ ($this->entity instanceof Quote) => $entity_string = 'quote',
+ ($this->entity instanceof Credit) => $entity_string = 'credit',
+ ($this->entity instanceof RecurringInvoice) => $entity_string = 'invoice',
+ ($this->entity instanceof PurchaseOrder) => $entity_string = 'task',
+ default => $entity_string = 'invoice',
+ };
+
+ return $entity_string;
+
+ }
+
+ /**
+ * Returns the variable array by first key, if it exists
+ *
+ * @return array
+ */
+ private function getVarSet(): array
+ {
+ return array_key_exists(array_key_first($this->variables), $this->variables) ? $this->variables[array_key_first($this->variables)] : $this->variables;
+ }
+
+ /**
+ * Injects the entity details to the DOM document
+ *
+ * @return self
+ */
private function entityDetails(): self
{
+ $entity_string = $this->resolveEntity();
+ $entity_string_prop = "{$entity_string}_details";
+ $var_set = $this->getVarSet();
+
+ $entity_details =
+ collect($this->company->settings->pdf_variables->{$entity_string_prop})
+ ->filter(function ($variable) use ($var_set) {
+ return isset($var_set['values'][$variable]) && !empty($var_set['values'][$variable]);
+ })->toArray();
+
+ $this->updateElementProperties("entity-details", $this->labelledFieldStack($entity_details));
return $this;
}
+ private function labelledFieldStack(array $variables): array
+ {
+
+ $elements = [];
+
+ foreach ($variables as $variable) {
+ $_variable = explode('.', $variable)[1];
+ $_customs = ['custom1', 'custom2', 'custom3', 'custom4'];
+
+ $var = str_replace("custom", "custom_value", $_variable);
+
+ if (in_array($_variable, $_customs) && !empty($this->entity->{$var})) {
+ $elements[] = ['element' => 'tr', 'elements' => [
+ ['element' => 'th', 'content' => $variable . '_label', 'properties' => ['data-ref' => 'entity_details-' . substr($variable, 1) . '_label']],
+ ['element' => 'th', 'content' => $variable, 'properties' => ['data-ref' => 'entity_details-' . substr($variable, 1)]],
+ ]];
+ } else {
+ $elements[] = ['element' => 'tr', 'properties' => ['hidden' => $this->entityVariableCheck($variable)], 'elements' => [
+ ['element' => 'th', 'content' => $variable . '_label', 'properties' => ['data-ref' => 'entity_details-' . substr($variable, 1) . '_label']],
+ ['element' => 'th', 'content' => $variable, 'properties' => ['data-ref' => 'entity_details-' . substr($variable, 1)]],
+ ]];
+ }
+ }
+
+ return $elements;
+
+ }
+
private function vendorDetails(): self
{
+ $var_set = $this->getVarSet();
- // $elements = [];
+ $vendor_details =
+ collect($this->company->settings->pdf_variables->vendor_details)
+ ->filter(function ($variable) use ($var_set) {
+ return isset($var_set['values'][$variable]) && !empty($var_set['values'][$variable]);
+ })
+ ->map(function ($variable) {
+ return ['element' => 'p', 'content' => $variable, 'show_empty' => false, 'properties' => ['data-ref' => 'vendor_details-' . substr($variable, 1)]];
+ })->toArray();
- // if (!$this->vendor) {
- // return $elements;
- // }
-
- // $variables = $this->context['pdf_variables']['vendor_details'];
-
- // foreach ($variables as $variable) {
- // $elements[] = ['element' => 'p', 'content' => $variable, 'show_empty' => false, 'properties' => ['data-ref' => 'vendor_details-' . substr($variable, 1)]];
- // }
-
- // return $elements;
+ $this->updateElementProperties('vendor-details', $vendor_details);
return $this;
}
+
+ /**
+ * Performs a variable check to ensure
+ * the variable exists
+ *
+ * @param string $variable
+ * @return bool
+ *
+ */
+ public function entityVariableCheck(string $variable): bool
+ {
+ // When it comes to invoice balance, we'll always show it.
+ if ($variable == '$invoice.total') {
+ return false;
+ }
+
+ // Some variables don't map 1:1 to table columns. This gives us support for such cases.
+ $aliases = [
+ '$quote.balance_due' => 'partial',
+ ];
+
+ try {
+ $_variable = explode('.', $variable)[1];
+ } catch (\Exception $e) {
+ throw new \Exception('Company settings seems to be broken. Missing $this->service->config->entity.variable type.');
+ }
+
+ if (\in_array($variable, \array_keys($aliases))) {
+ $_variable = $aliases[$variable];
+ }
+
+ if (is_null($this->entity->{$_variable}) || empty($this->entity->{$_variable})) {
+ return true;
+ }
+
+ return false;
+ }
+
////////////////////////////////////////
// Dom Traversal
///////////////////////////////////////
@@ -937,9 +1088,9 @@ class TemplateService
public function updateElementProperties(string $element_id, array $elements): self
{
$node = $this->document->getElementById($element_id);
-
- $this->createElementContent($node, $elements);
-
+
+ $this->createElementContent($node, $elements);
+
return $this;
}
@@ -962,15 +1113,17 @@ class TemplateService
public function createElementContent($element, $children) :self
{
+
foreach ($children as $child) {
$contains_html = false;
- if ($child['element'] !== 'script') {
- if ($this->company->markdown_enabled && array_key_exists('content', $child)) {
- $child['content'] = str_replace('
', "\r", $child['content']);
- $child['content'] = $this->commonmark->convert($child['content'] ?? '');
- }
- }
+ //06-11-2023 for some reason this parses content as HTML
+ // if ($child['element'] !== 'script') {
+ // if ($this->company->markdown_enabled && array_key_exists('content', $child)) {
+ // $child['content'] = str_replace('
', "\r", $child['content']);
+ // $child['content'] = $this->commonmark->convert($child['content'] ?? '');
+ // }
+ // }
if (isset($child['content'])) {
if (isset($child['is_empty']) && $child['is_empty'] === true) {
@@ -979,7 +1132,7 @@ class TemplateService
$contains_html = preg_match('#(?<=<)\w+(?=[^<]*?>)#', $child['content'], $m) != 0;
}
-
+
if ($contains_html) {
// If the element contains the HTML, we gonna display it as is. Backend is going to
// encode it for us, preventing any errors on the processing stage.
@@ -1007,6 +1160,7 @@ class TemplateService
if (isset($child['elements'])) {
$this->createElementContent($_child, $child['elements']);
}
+
}
return $this;
diff --git a/composer.lock b/composer.lock
index 2c2cacba4624..20bef4724e05 100644
--- a/composer.lock
+++ b/composer.lock
@@ -60,16 +60,16 @@
},
{
"name": "apimatic/core",
- "version": "0.3.2",
+ "version": "0.3.3",
"source": {
"type": "git",
"url": "https://github.com/apimatic/core-lib-php.git",
- "reference": "32238fb83ce9a3ebef38c726b497c0f218d6e6c9"
+ "reference": "984123c831598fc31749d194aa044cd46f227d29"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/apimatic/core-lib-php/zipball/32238fb83ce9a3ebef38c726b497c0f218d6e6c9",
- "reference": "32238fb83ce9a3ebef38c726b497c0f218d6e6c9",
+ "url": "https://api.github.com/repos/apimatic/core-lib-php/zipball/984123c831598fc31749d194aa044cd46f227d29",
+ "reference": "984123c831598fc31749d194aa044cd46f227d29",
"shasum": ""
},
"require": {
@@ -107,9 +107,9 @@
],
"support": {
"issues": "https://github.com/apimatic/core-lib-php/issues",
- "source": "https://github.com/apimatic/core-lib-php/tree/0.3.2"
+ "source": "https://github.com/apimatic/core-lib-php/tree/0.3.3"
},
- "time": "2023-07-11T09:30:32+00:00"
+ "time": "2023-10-26T06:52:40+00:00"
},
{
"name": "apimatic/core-interfaces",
@@ -431,16 +431,16 @@
},
{
"name": "aws/aws-crt-php",
- "version": "v1.2.2",
+ "version": "v1.2.3",
"source": {
"type": "git",
"url": "https://github.com/awslabs/aws-crt-php.git",
- "reference": "2f1dc7b7eda080498be96a4a6d683a41583030e9"
+ "reference": "5545a4fa310aec39f54279fdacebcce33b3ff382"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/2f1dc7b7eda080498be96a4a6d683a41583030e9",
- "reference": "2f1dc7b7eda080498be96a4a6d683a41583030e9",
+ "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/5545a4fa310aec39f54279fdacebcce33b3ff382",
+ "reference": "5545a4fa310aec39f54279fdacebcce33b3ff382",
"shasum": ""
},
"require": {
@@ -479,26 +479,26 @@
],
"support": {
"issues": "https://github.com/awslabs/aws-crt-php/issues",
- "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.2"
+ "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.3"
},
- "time": "2023-07-20T16:49:55+00:00"
+ "time": "2023-10-16T20:10:06+00:00"
},
{
"name": "aws/aws-sdk-php",
- "version": "3.282.0",
+ "version": "3.284.0",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "79a3ed5bb573f592823f8b1cffe0dbac3132e6b4"
+ "reference": "1b7e926acc990509e3d13fa708cdede686b40d90"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/79a3ed5bb573f592823f8b1cffe0dbac3132e6b4",
- "reference": "79a3ed5bb573f592823f8b1cffe0dbac3132e6b4",
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/1b7e926acc990509e3d13fa708cdede686b40d90",
+ "reference": "1b7e926acc990509e3d13fa708cdede686b40d90",
"shasum": ""
},
"require": {
- "aws/aws-crt-php": "^1.0.4",
+ "aws/aws-crt-php": "^1.2.3",
"ext-json": "*",
"ext-pcre": "*",
"ext-simplexml": "*",
@@ -574,9 +574,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.282.0"
+ "source": "https://github.com/aws/aws-sdk-php/tree/3.284.0"
},
- "time": "2023-09-28T18:09:20+00:00"
+ "time": "2023-11-03T18:13:48+00:00"
},
{
"name": "bacon/bacon-qr-code",
@@ -686,16 +686,16 @@
},
{
"name": "braintree/braintree_php",
- "version": "6.13.0",
+ "version": "6.14.0",
"source": {
"type": "git",
"url": "https://github.com/braintree/braintree_php.git",
- "reference": "c7bdef50c9692f1f9f9bf982e452aec0d137f5ec"
+ "reference": "084ed5bb728bc32ad444c6d043c87b409cca72d7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/braintree/braintree_php/zipball/c7bdef50c9692f1f9f9bf982e452aec0d137f5ec",
- "reference": "c7bdef50c9692f1f9f9bf982e452aec0d137f5ec",
+ "url": "https://api.github.com/repos/braintree/braintree_php/zipball/084ed5bb728bc32ad444c6d043c87b409cca72d7",
+ "reference": "084ed5bb728bc32ad444c6d043c87b409cca72d7",
"shasum": ""
},
"require": {
@@ -729,9 +729,9 @@
"description": "Braintree PHP Client Library",
"support": {
"issues": "https://github.com/braintree/braintree_php/issues",
- "source": "https://github.com/braintree/braintree_php/tree/6.13.0"
+ "source": "https://github.com/braintree/braintree_php/tree/6.14.0"
},
- "time": "2023-08-30T21:46:13+00:00"
+ "time": "2023-10-18T22:00:15+00:00"
},
{
"name": "brick/math",
@@ -790,16 +790,16 @@
},
{
"name": "checkout/checkout-sdk-php",
- "version": "3.0.15",
+ "version": "3.0.17",
"source": {
"type": "git",
"url": "https://github.com/checkout/checkout-sdk-php.git",
- "reference": "18a2278eb28cb1141b1cb189d4a2ee86b1837350"
+ "reference": "dabb6dd37ad80aaa9c34e60f48f9bf8b651bdc27"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/checkout/checkout-sdk-php/zipball/18a2278eb28cb1141b1cb189d4a2ee86b1837350",
- "reference": "18a2278eb28cb1141b1cb189d4a2ee86b1837350",
+ "url": "https://api.github.com/repos/checkout/checkout-sdk-php/zipball/dabb6dd37ad80aaa9c34e60f48f9bf8b651bdc27",
+ "reference": "dabb6dd37ad80aaa9c34e60f48f9bf8b651bdc27",
"shasum": ""
},
"require": {
@@ -852,9 +852,9 @@
],
"support": {
"issues": "https://github.com/checkout/checkout-sdk-php/issues",
- "source": "https://github.com/checkout/checkout-sdk-php/tree/3.0.15"
+ "source": "https://github.com/checkout/checkout-sdk-php/tree/3.0.17"
},
- "time": "2023-09-19T14:42:51+00:00"
+ "time": "2023-10-20T22:35:30+00:00"
},
{
"name": "cleverit/ubl_invoice",
@@ -1353,16 +1353,16 @@
},
{
"name": "doctrine/dbal",
- "version": "3.7.0",
+ "version": "3.7.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
- "reference": "00d03067f07482f025d41ab55e4ba0db5eca2cdf"
+ "reference": "5b7bd66c9ff58c04c5474ab85edce442f8081cb2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/00d03067f07482f025d41ab55e4ba0db5eca2cdf",
- "reference": "00d03067f07482f025d41ab55e4ba0db5eca2cdf",
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/5b7bd66c9ff58c04c5474ab85edce442f8081cb2",
+ "reference": "5b7bd66c9ff58c04c5474ab85edce442f8081cb2",
"shasum": ""
},
"require": {
@@ -1446,7 +1446,7 @@
],
"support": {
"issues": "https://github.com/doctrine/dbal/issues",
- "source": "https://github.com/doctrine/dbal/tree/3.7.0"
+ "source": "https://github.com/doctrine/dbal/tree/3.7.1"
},
"funding": [
{
@@ -1462,7 +1462,7 @@
"type": "tidelift"
}
],
- "time": "2023-09-26T20:56:55+00:00"
+ "time": "2023-10-06T05:06:20+00:00"
},
{
"name": "doctrine/deprecations",
@@ -1903,16 +1903,16 @@
},
{
"name": "egulias/email-validator",
- "version": "4.0.1",
+ "version": "4.0.2",
"source": {
"type": "git",
"url": "https://github.com/egulias/EmailValidator.git",
- "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
+ "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
- "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
+ "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
"shasum": ""
},
"require": {
@@ -1921,8 +1921,8 @@
"symfony/polyfill-intl-idn": "^1.26"
},
"require-dev": {
- "phpunit/phpunit": "^9.5.27",
- "vimeo/psalm": "^4.30"
+ "phpunit/phpunit": "^10.2",
+ "vimeo/psalm": "^5.12"
},
"suggest": {
"ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
@@ -1958,7 +1958,7 @@
],
"support": {
"issues": "https://github.com/egulias/EmailValidator/issues",
- "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
+ "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
},
"funding": [
{
@@ -1966,7 +1966,7 @@
"type": "github"
}
],
- "time": "2023-01-14T14:17:03+00:00"
+ "time": "2023-10-06T06:47:41+00:00"
},
{
"name": "endroid/qr-code",
@@ -2169,16 +2169,16 @@
},
{
"name": "firebase/php-jwt",
- "version": "v6.8.1",
+ "version": "v6.9.0",
"source": {
"type": "git",
"url": "https://github.com/firebase/php-jwt.git",
- "reference": "5dbc8959427416b8ee09a100d7a8588c00fb2e26"
+ "reference": "f03270e63eaccf3019ef0f32849c497385774e11"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/firebase/php-jwt/zipball/5dbc8959427416b8ee09a100d7a8588c00fb2e26",
- "reference": "5dbc8959427416b8ee09a100d7a8588c00fb2e26",
+ "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f03270e63eaccf3019ef0f32849c497385774e11",
+ "reference": "f03270e63eaccf3019ef0f32849c497385774e11",
"shasum": ""
},
"require": {
@@ -2226,27 +2226,27 @@
],
"support": {
"issues": "https://github.com/firebase/php-jwt/issues",
- "source": "https://github.com/firebase/php-jwt/tree/v6.8.1"
+ "source": "https://github.com/firebase/php-jwt/tree/v6.9.0"
},
- "time": "2023-07-14T18:33:00+00:00"
+ "time": "2023-10-05T00:24:42+00:00"
},
{
"name": "fruitcake/php-cors",
- "version": "v1.2.0",
+ "version": "v1.3.0",
"source": {
"type": "git",
"url": "https://github.com/fruitcake/php-cors.git",
- "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
+ "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
- "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
+ "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
+ "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
"shasum": ""
},
"require": {
"php": "^7.4|^8.0",
- "symfony/http-foundation": "^4.4|^5.4|^6"
+ "symfony/http-foundation": "^4.4|^5.4|^6|^7"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
@@ -2256,7 +2256,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.1-dev"
+ "dev-master": "1.2-dev"
}
},
"autoload": {
@@ -2287,7 +2287,7 @@
],
"support": {
"issues": "https://github.com/fruitcake/php-cors/issues",
- "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
+ "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
},
"funding": [
{
@@ -2299,7 +2299,7 @@
"type": "github"
}
],
- "time": "2022-02-20T15:07:15+00:00"
+ "time": "2023-10-12T05:21:21+00:00"
},
{
"name": "gocardless/gocardless-pro",
@@ -2487,16 +2487,16 @@
},
{
"name": "google/apiclient-services",
- "version": "v0.318.0",
+ "version": "v0.323.0",
"source": {
"type": "git",
"url": "https://github.com/googleapis/google-api-php-client-services.git",
- "reference": "908a866797b9731352e650997112c8c3a0347ac5"
+ "reference": "d5497d30ddfafe7592102ca48bedaf222a4ca7a6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/908a866797b9731352e650997112c8c3a0347ac5",
- "reference": "908a866797b9731352e650997112c8c3a0347ac5",
+ "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/d5497d30ddfafe7592102ca48bedaf222a4ca7a6",
+ "reference": "d5497d30ddfafe7592102ca48bedaf222a4ca7a6",
"shasum": ""
},
"require": {
@@ -2525,22 +2525,22 @@
],
"support": {
"issues": "https://github.com/googleapis/google-api-php-client-services/issues",
- "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.318.0"
+ "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.323.0"
},
- "time": "2023-10-02T01:10:14+00:00"
+ "time": "2023-11-06T01:08:38+00:00"
},
{
"name": "google/auth",
- "version": "v1.30.0",
+ "version": "v1.32.1",
"source": {
"type": "git",
"url": "https://github.com/googleapis/google-auth-library-php.git",
- "reference": "6028b072aa444d7edecbed603431322026704627"
+ "reference": "999e9ce8b9d17914f04e1718271a0a46da4de2f3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/6028b072aa444d7edecbed603431322026704627",
- "reference": "6028b072aa444d7edecbed603431322026704627",
+ "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/999e9ce8b9d17914f04e1718271a0a46da4de2f3",
+ "reference": "999e9ce8b9d17914f04e1718271a0a46da4de2f3",
"shasum": ""
},
"require": {
@@ -2583,9 +2583,9 @@
"support": {
"docs": "https://googleapis.github.io/google-auth-library-php/main/",
"issues": "https://github.com/googleapis/google-auth-library-php/issues",
- "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.30.0"
+ "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.32.1"
},
- "time": "2023-09-07T19:13:44+00:00"
+ "time": "2023-10-17T21:13:22+00:00"
},
{
"name": "graham-campbell/result-type",
@@ -3397,16 +3397,16 @@
},
{
"name": "horstoeko/zugferd",
- "version": "v1.0.30",
+ "version": "v1.0.31",
"source": {
"type": "git",
"url": "https://github.com/horstoeko/zugferd.git",
- "reference": "b5e85651fe2e53eef82aa086c9245b7f5229433f"
+ "reference": "d1cdb2100aed1cec67b25a660da5e4cc31cf7e09"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/horstoeko/zugferd/zipball/b5e85651fe2e53eef82aa086c9245b7f5229433f",
- "reference": "b5e85651fe2e53eef82aa086c9245b7f5229433f",
+ "url": "https://api.github.com/repos/horstoeko/zugferd/zipball/d1cdb2100aed1cec67b25a660da5e4cc31cf7e09",
+ "reference": "d1cdb2100aed1cec67b25a660da5e4cc31cf7e09",
"shasum": ""
},
"require": {
@@ -3464,9 +3464,9 @@
],
"support": {
"issues": "https://github.com/horstoeko/zugferd/issues",
- "source": "https://github.com/horstoeko/zugferd/tree/v1.0.30"
+ "source": "https://github.com/horstoeko/zugferd/tree/v1.0.31"
},
- "time": "2023-09-30T13:42:02+00:00"
+ "time": "2023-10-12T16:05:51+00:00"
},
{
"name": "http-interop/http-factory-guzzle",
@@ -4287,16 +4287,16 @@
},
{
"name": "laravel/framework",
- "version": "v10.25.2",
+ "version": "v10.30.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "6014dd456b414b305fb0b408404efdcec18e64bc"
+ "reference": "7a2da50258c4d0f693b738d3f3c69b2693aea6c1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/6014dd456b414b305fb0b408404efdcec18e64bc",
- "reference": "6014dd456b414b305fb0b408404efdcec18e64bc",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/7a2da50258c4d0f693b738d3f3c69b2693aea6c1",
+ "reference": "7a2da50258c4d0f693b738d3f3c69b2693aea6c1",
"shasum": ""
},
"require": {
@@ -4329,7 +4329,7 @@
"symfony/console": "^6.2",
"symfony/error-handler": "^6.2",
"symfony/finder": "^6.2",
- "symfony/http-foundation": "^6.2",
+ "symfony/http-foundation": "^6.3",
"symfony/http-kernel": "^6.2",
"symfony/mailer": "^6.2",
"symfony/mime": "^6.2",
@@ -4396,13 +4396,15 @@
"league/flysystem-read-only": "^3.3",
"league/flysystem-sftp-v3": "^3.0",
"mockery/mockery": "^1.5.1",
+ "nyholm/psr7": "^1.2",
"orchestra/testbench-core": "^8.12",
"pda/pheanstalk": "^4.0",
"phpstan/phpstan": "^1.4.7",
"phpunit/phpunit": "^10.0.7",
"predis/predis": "^2.0.2",
"symfony/cache": "^6.2",
- "symfony/http-client": "^6.2.4"
+ "symfony/http-client": "^6.2.4",
+ "symfony/psr-http-message-bridge": "^2.0"
},
"suggest": {
"ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
@@ -4483,27 +4485,27 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2023-09-28T14:08:59+00:00"
+ "time": "2023-11-01T13:52:17+00:00"
},
{
"name": "laravel/prompts",
- "version": "v0.1.10",
+ "version": "v0.1.13",
"source": {
"type": "git",
"url": "https://github.com/laravel/prompts.git",
- "reference": "37ed55f6950d921a87d5beeab16d03f8de26b060"
+ "reference": "e1379d8ead15edd6cc4369c22274345982edc95a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/prompts/zipball/37ed55f6950d921a87d5beeab16d03f8de26b060",
- "reference": "37ed55f6950d921a87d5beeab16d03f8de26b060",
+ "url": "https://api.github.com/repos/laravel/prompts/zipball/e1379d8ead15edd6cc4369c22274345982edc95a",
+ "reference": "e1379d8ead15edd6cc4369c22274345982edc95a",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
"illuminate/collections": "^10.0|^11.0",
"php": "^8.1",
- "symfony/console": "^6.2"
+ "symfony/console": "^6.2|^7.0"
},
"conflict": {
"illuminate/console": ">=10.17.0 <10.25.0",
@@ -4538,22 +4540,22 @@
],
"support": {
"issues": "https://github.com/laravel/prompts/issues",
- "source": "https://github.com/laravel/prompts/tree/v0.1.10"
+ "source": "https://github.com/laravel/prompts/tree/v0.1.13"
},
- "time": "2023-09-29T07:26:07+00:00"
+ "time": "2023-10-27T13:53:59+00:00"
},
{
"name": "laravel/serializable-closure",
- "version": "v1.3.1",
+ "version": "v1.3.2",
"source": {
"type": "git",
"url": "https://github.com/laravel/serializable-closure.git",
- "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902"
+ "reference": "076fe2cf128bd54b4341cdc6d49b95b34e101e4c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/e5a3057a5591e1cfe8183034b0203921abe2c902",
- "reference": "e5a3057a5591e1cfe8183034b0203921abe2c902",
+ "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/076fe2cf128bd54b4341cdc6d49b95b34e101e4c",
+ "reference": "076fe2cf128bd54b4341cdc6d49b95b34e101e4c",
"shasum": ""
},
"require": {
@@ -4600,7 +4602,7 @@
"issues": "https://github.com/laravel/serializable-closure/issues",
"source": "https://github.com/laravel/serializable-closure"
},
- "time": "2023-07-14T13:56:28+00:00"
+ "time": "2023-10-17T13:38:16+00:00"
},
{
"name": "laravel/slack-notification-channel",
@@ -4665,16 +4667,16 @@
},
{
"name": "laravel/socialite",
- "version": "v5.9.1",
+ "version": "v5.10.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/socialite.git",
- "reference": "49ecc4c907ed88c1254bae991c6b2948945645c2"
+ "reference": "f376b6eda9084899e37ac08bafd64a95edf9c6c0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/socialite/zipball/49ecc4c907ed88c1254bae991c6b2948945645c2",
- "reference": "49ecc4c907ed88c1254bae991c6b2948945645c2",
+ "url": "https://api.github.com/repos/laravel/socialite/zipball/f376b6eda9084899e37ac08bafd64a95edf9c6c0",
+ "reference": "f376b6eda9084899e37ac08bafd64a95edf9c6c0",
"shasum": ""
},
"require": {
@@ -4731,7 +4733,7 @@
"issues": "https://github.com/laravel/socialite/issues",
"source": "https://github.com/laravel/socialite"
},
- "time": "2023-09-07T16:13:53+00:00"
+ "time": "2023-10-30T22:09:58+00:00"
},
{
"name": "laravel/tinker",
@@ -5280,16 +5282,16 @@
},
{
"name": "league/flysystem",
- "version": "3.16.0",
+ "version": "3.18.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "4fdf372ca6b63c6e281b1c01a624349ccb757729"
+ "reference": "015633a05aee22490495159237a5944091d8281e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/4fdf372ca6b63c6e281b1c01a624349ccb757729",
- "reference": "4fdf372ca6b63c6e281b1c01a624349ccb757729",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/015633a05aee22490495159237a5944091d8281e",
+ "reference": "015633a05aee22490495159237a5944091d8281e",
"shasum": ""
},
"require": {
@@ -5307,8 +5309,8 @@
"symfony/http-client": "<5.2"
},
"require-dev": {
- "async-aws/s3": "^1.5",
- "async-aws/simple-s3": "^1.1",
+ "async-aws/s3": "^1.5 || ^2.0",
+ "async-aws/simple-s3": "^1.1 || ^2.0",
"aws/aws-sdk-php": "^3.220.0",
"composer/semver": "^3.0",
"ext-fileinfo": "*",
@@ -5318,7 +5320,7 @@
"google/cloud-storage": "^1.23",
"microsoft/azure-storage-blob": "^1.1",
"phpseclib/phpseclib": "^3.0.14",
- "phpstan/phpstan": "^0.12.26",
+ "phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5.11|^10.0",
"sabre/dav": "^4.3.1"
},
@@ -5354,7 +5356,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.16.0"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.18.0"
},
"funding": [
{
@@ -5366,7 +5368,7 @@
"type": "github"
}
],
- "time": "2023-09-07T19:22:17+00:00"
+ "time": "2023-10-20T17:59:40+00:00"
},
{
"name": "league/flysystem-aws-s3-v3",
@@ -5436,16 +5438,16 @@
},
{
"name": "league/flysystem-local",
- "version": "3.16.0",
+ "version": "3.18.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-local.git",
- "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781"
+ "reference": "e7381ef7643f658b87efb7dbe98fe538fb1bbf32"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ec7383f25642e6fd4bb0c9554fc2311245391781",
- "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e7381ef7643f658b87efb7dbe98fe538fb1bbf32",
+ "reference": "e7381ef7643f658b87efb7dbe98fe538fb1bbf32",
"shasum": ""
},
"require": {
@@ -5480,7 +5482,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem-local/issues",
- "source": "https://github.com/thephpleague/flysystem-local/tree/3.16.0"
+ "source": "https://github.com/thephpleague/flysystem-local/tree/3.18.0"
},
"funding": [
{
@@ -5492,7 +5494,7 @@
"type": "github"
}
],
- "time": "2023-08-30T10:23:59+00:00"
+ "time": "2023-10-19T20:07:13+00:00"
},
{
"name": "league/fractal",
@@ -5566,16 +5568,16 @@
},
{
"name": "league/mime-type-detection",
- "version": "1.13.0",
+ "version": "1.14.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/mime-type-detection.git",
- "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
+ "reference": "b6a5854368533df0295c5761a0253656a2e52d9e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
- "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
+ "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e",
+ "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
"shasum": ""
},
"require": {
@@ -5606,7 +5608,7 @@
"description": "Mime-type detection for Flysystem",
"support": {
"issues": "https://github.com/thephpleague/mime-type-detection/issues",
- "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
+ "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0"
},
"funding": [
{
@@ -5618,7 +5620,7 @@
"type": "tidelift"
}
],
- "time": "2023-08-05T12:09:49+00:00"
+ "time": "2023-10-17T14:13:20+00:00"
},
{
"name": "league/oauth1-client",
@@ -5834,16 +5836,16 @@
},
{
"name": "microsoft/microsoft-graph",
- "version": "1.107.0",
+ "version": "1.109.0",
"source": {
"type": "git",
"url": "https://github.com/microsoftgraph/msgraph-sdk-php.git",
- "reference": "63fed05d4d9c348db094f8d8a1d44ff9ce6887c7"
+ "reference": "14b1b9f24a6b6ace91323b1121030c96a0988ee0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/microsoftgraph/msgraph-sdk-php/zipball/63fed05d4d9c348db094f8d8a1d44ff9ce6887c7",
- "reference": "63fed05d4d9c348db094f8d8a1d44ff9ce6887c7",
+ "url": "https://api.github.com/repos/microsoftgraph/msgraph-sdk-php/zipball/14b1b9f24a6b6ace91323b1121030c96a0988ee0",
+ "reference": "14b1b9f24a6b6ace91323b1121030c96a0988ee0",
"shasum": ""
},
"require": {
@@ -5880,22 +5882,22 @@
"homepage": "https://developer.microsoft.com/en-us/graph",
"support": {
"issues": "https://github.com/microsoftgraph/msgraph-sdk-php/issues",
- "source": "https://github.com/microsoftgraph/msgraph-sdk-php/tree/1.107.0"
+ "source": "https://github.com/microsoftgraph/msgraph-sdk-php/tree/1.109.0"
},
- "time": "2023-09-27T06:43:40+00:00"
+ "time": "2023-11-02T10:25:39+00:00"
},
{
"name": "mollie/mollie-api-php",
- "version": "v2.61.0",
+ "version": "v2.62.0",
"source": {
"type": "git",
"url": "https://github.com/mollie/mollie-api-php.git",
- "reference": "d3ec7a191985aa57bec9b4425a665e95b4ba346a"
+ "reference": "feb6d52859ed1ea7a65b25bb6cbfaadb04b33827"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/mollie/mollie-api-php/zipball/d3ec7a191985aa57bec9b4425a665e95b4ba346a",
- "reference": "d3ec7a191985aa57bec9b4425a665e95b4ba346a",
+ "url": "https://api.github.com/repos/mollie/mollie-api-php/zipball/feb6d52859ed1ea7a65b25bb6cbfaadb04b33827",
+ "reference": "feb6d52859ed1ea7a65b25bb6cbfaadb04b33827",
"shasum": ""
},
"require": {
@@ -5972,9 +5974,9 @@
],
"support": {
"issues": "https://github.com/mollie/mollie-api-php/issues",
- "source": "https://github.com/mollie/mollie-api-php/tree/v2.61.0"
+ "source": "https://github.com/mollie/mollie-api-php/tree/v2.62.0"
},
- "time": "2023-07-31T15:37:46+00:00"
+ "time": "2023-10-23T11:22:58+00:00"
},
{
"name": "moneyphp/money",
@@ -6067,16 +6069,16 @@
},
{
"name": "monolog/monolog",
- "version": "3.4.0",
+ "version": "3.5.0",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
- "reference": "e2392369686d420ca32df3803de28b5d6f76867d"
+ "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e2392369686d420ca32df3803de28b5d6f76867d",
- "reference": "e2392369686d420ca32df3803de28b5d6f76867d",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448",
+ "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448",
"shasum": ""
},
"require": {
@@ -6152,7 +6154,7 @@
],
"support": {
"issues": "https://github.com/Seldaek/monolog/issues",
- "source": "https://github.com/Seldaek/monolog/tree/3.4.0"
+ "source": "https://github.com/Seldaek/monolog/tree/3.5.0"
},
"funding": [
{
@@ -6164,7 +6166,7 @@
"type": "tidelift"
}
],
- "time": "2023-06-21T08:46:11+00:00"
+ "time": "2023-10-27T15:32:31+00:00"
},
{
"name": "mtdowling/jmespath.php",
@@ -6476,16 +6478,16 @@
},
{
"name": "nette/schema",
- "version": "v1.2.4",
+ "version": "v1.2.5",
"source": {
"type": "git",
"url": "https://github.com/nette/schema.git",
- "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab"
+ "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nette/schema/zipball/c9ff517a53903b3d4e29ec547fb20feecb05b8ab",
- "reference": "c9ff517a53903b3d4e29ec547fb20feecb05b8ab",
+ "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
+ "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
"shasum": ""
},
"require": {
@@ -6532,22 +6534,22 @@
],
"support": {
"issues": "https://github.com/nette/schema/issues",
- "source": "https://github.com/nette/schema/tree/v1.2.4"
+ "source": "https://github.com/nette/schema/tree/v1.2.5"
},
- "time": "2023-08-05T18:56:25+00:00"
+ "time": "2023-10-05T20:37:59+00:00"
},
{
"name": "nette/utils",
- "version": "v4.0.2",
+ "version": "v4.0.3",
"source": {
"type": "git",
"url": "https://github.com/nette/utils.git",
- "reference": "cead6637226456b35e1175cc53797dd585d85545"
+ "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nette/utils/zipball/cead6637226456b35e1175cc53797dd585d85545",
- "reference": "cead6637226456b35e1175cc53797dd585d85545",
+ "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015",
+ "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
"shasum": ""
},
"require": {
@@ -6618,9 +6620,9 @@
],
"support": {
"issues": "https://github.com/nette/utils/issues",
- "source": "https://github.com/nette/utils/tree/v4.0.2"
+ "source": "https://github.com/nette/utils/tree/v4.0.3"
},
- "time": "2023-09-19T11:58:07+00:00"
+ "time": "2023-10-29T21:02:13+00:00"
},
{
"name": "nikic/php-parser",
@@ -6766,16 +6768,16 @@
},
{
"name": "nwidart/laravel-modules",
- "version": "v10.0.0",
+ "version": "10.0.3",
"source": {
"type": "git",
"url": "https://github.com/nWidart/laravel-modules.git",
- "reference": "35e514f13cb8ae8dce093e9794785fea27319d81"
+ "reference": "786da1e6dfa2df6caa8718acb9c37a8fe94595b3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nWidart/laravel-modules/zipball/35e514f13cb8ae8dce093e9794785fea27319d81",
- "reference": "35e514f13cb8ae8dce093e9794785fea27319d81",
+ "url": "https://api.github.com/repos/nWidart/laravel-modules/zipball/786da1e6dfa2df6caa8718acb9c37a8fe94595b3",
+ "reference": "786da1e6dfa2df6caa8718acb9c37a8fe94595b3",
"shasum": ""
},
"require": {
@@ -6835,15 +6837,19 @@
],
"support": {
"issues": "https://github.com/nWidart/laravel-modules/issues",
- "source": "https://github.com/nWidart/laravel-modules/tree/v10.0.0"
+ "source": "https://github.com/nWidart/laravel-modules/tree/10.0.3"
},
"funding": [
+ {
+ "url": "https://github.com/dcblogdev",
+ "type": "github"
+ },
{
"url": "https://github.com/nwidart",
"type": "github"
}
],
- "time": "2023-02-16T11:08:15+00:00"
+ "time": "2023-11-02T17:47:33+00:00"
},
{
"name": "nyholm/psr7",
@@ -7285,22 +7291,22 @@
},
{
"name": "payfast/payfast-php-sdk",
- "version": "v1.1.4",
+ "version": "v1.1.5",
"source": {
"type": "git",
- "url": "https://github.com/PayFast/payfast-php-sdk.git",
- "reference": "897e88dabc99283e891d6f8dbad25ccca7a787b9"
+ "url": "https://github.com/Payfast/payfast-php-sdk.git",
+ "reference": "902b2cfa7318ad947ed0eba953eea4a3831c526a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/PayFast/payfast-php-sdk/zipball/897e88dabc99283e891d6f8dbad25ccca7a787b9",
- "reference": "897e88dabc99283e891d6f8dbad25ccca7a787b9",
+ "url": "https://api.github.com/repos/Payfast/payfast-php-sdk/zipball/902b2cfa7318ad947ed0eba953eea4a3831c526a",
+ "reference": "902b2cfa7318ad947ed0eba953eea4a3831c526a",
"shasum": ""
},
"require": {
"ext-json": "*",
"guzzlehttp/guzzle": ">=6.0.0",
- "php": ">=7.2.5"
+ "php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^9"
@@ -7308,7 +7314,7 @@
"type": "library",
"autoload": {
"psr-4": {
- "PayFast\\": "lib/"
+ "Payfast\\": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -7317,11 +7323,11 @@
],
"authors": [
{
- "name": "Claire Grant",
- "email": "claire.grant@payfast.co.za"
+ "name": "Payfast",
+ "email": "support@payfast.help"
}
],
- "description": "PayFast PHP Library",
+ "description": "Payfast PHP Library",
"keywords": [
"api",
"onsite",
@@ -7329,11 +7335,11 @@
"php"
],
"support": {
- "issues": "https://github.com/PayFast/payfast-php-sdk/issues",
- "source": "https://github.com/PayFast/payfast-php-sdk/tree/v1.1.4"
+ "issues": "https://github.com/Payfast/payfast-php-sdk/issues",
+ "source": "https://github.com/Payfast/payfast-php-sdk/tree/v1.1.5"
},
"abandoned": true,
- "time": "2022-12-20T10:39:51+00:00"
+ "time": "2023-10-11T09:57:01+00:00"
},
{
"name": "php-http/client-common",
@@ -7727,31 +7733,26 @@
},
{
"name": "php-http/promise",
- "version": "1.1.0",
+ "version": "1.2.0",
"source": {
"type": "git",
"url": "https://github.com/php-http/promise.git",
- "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
+ "reference": "ef4905bfb492ff389eb7f12e26925a0f20073050"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
- "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
+ "url": "https://api.github.com/repos/php-http/promise/zipball/ef4905bfb492ff389eb7f12e26925a0f20073050",
+ "reference": "ef4905bfb492ff389eb7f12e26925a0f20073050",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
},
"require-dev": {
- "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
- "phpspec/phpspec": "^5.1.2 || ^6.2"
+ "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
+ "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1-dev"
- }
- },
"autoload": {
"psr-4": {
"Http\\Promise\\": "src/"
@@ -7778,9 +7779,9 @@
],
"support": {
"issues": "https://github.com/php-http/promise/issues",
- "source": "https://github.com/php-http/promise/tree/1.1.0"
+ "source": "https://github.com/php-http/promise/tree/1.2.0"
},
- "time": "2020-07-07T09:29:14+00:00"
+ "time": "2023-10-24T09:20:26+00:00"
},
{
"name": "php-jsonpointer/php-jsonpointer",
@@ -8026,16 +8027,16 @@
},
{
"name": "phpseclib/phpseclib",
- "version": "3.0.23",
+ "version": "3.0.33",
"source": {
"type": "git",
"url": "https://github.com/phpseclib/phpseclib.git",
- "reference": "866cc78fbd82462ffd880e3f65692afe928bed50"
+ "reference": "33fa69b2514a61138dd48e7a49f99445711e0ad0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/866cc78fbd82462ffd880e3f65692afe928bed50",
- "reference": "866cc78fbd82462ffd880e3f65692afe928bed50",
+ "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/33fa69b2514a61138dd48e7a49f99445711e0ad0",
+ "reference": "33fa69b2514a61138dd48e7a49f99445711e0ad0",
"shasum": ""
},
"require": {
@@ -8116,7 +8117,7 @@
],
"support": {
"issues": "https://github.com/phpseclib/phpseclib/issues",
- "source": "https://github.com/phpseclib/phpseclib/tree/3.0.23"
+ "source": "https://github.com/phpseclib/phpseclib/tree/3.0.33"
},
"funding": [
{
@@ -8132,7 +8133,7 @@
"type": "tidelift"
}
],
- "time": "2023-09-18T17:22:01+00:00"
+ "time": "2023-10-21T14:00:39+00:00"
},
{
"name": "phpstan/phpdoc-parser",
@@ -8757,16 +8758,16 @@
},
{
"name": "psy/psysh",
- "version": "v0.11.21",
+ "version": "v0.11.22",
"source": {
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
- "reference": "bcb22101107f3bf770523b65630c9d547f60c540"
+ "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/bcb22101107f3bf770523b65630c9d547f60c540",
- "reference": "bcb22101107f3bf770523b65630c9d547f60c540",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
+ "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
"shasum": ""
},
"require": {
@@ -8795,7 +8796,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "0.11.x-dev"
+ "dev-0.11": "0.11.x-dev"
},
"bamarni-bin": {
"bin-links": false,
@@ -8831,9 +8832,9 @@
],
"support": {
"issues": "https://github.com/bobthecow/psysh/issues",
- "source": "https://github.com/bobthecow/psysh/tree/v0.11.21"
+ "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
},
- "time": "2023-09-17T21:15:54+00:00"
+ "time": "2023-10-14T21:56:36+00:00"
},
{
"name": "pusher/pusher-php-server",
@@ -9460,16 +9461,16 @@
},
{
"name": "sentry/sentry",
- "version": "3.21.0",
+ "version": "3.22.0",
"source": {
"type": "git",
"url": "https://github.com/getsentry/sentry-php.git",
- "reference": "624aafc22b84b089ffa43b71fb01e0096505ec4f"
+ "reference": "c0e3df5a5c1d133cd9461e7672568ff07042c19d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/624aafc22b84b089ffa43b71fb01e0096505ec4f",
- "reference": "624aafc22b84b089ffa43b71fb01e0096505ec4f",
+ "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/c0e3df5a5c1d133cd9461e7672568ff07042c19d",
+ "reference": "c0e3df5a5c1d133cd9461e7672568ff07042c19d",
"shasum": ""
},
"require": {
@@ -9487,7 +9488,7 @@
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
- "symfony/options-resolver": "^3.4.43|^4.4.30|^5.0.11|^6.0",
+ "symfony/options-resolver": "^3.4.43|^4.4.30|^5.0.11|^6.0|^7.0",
"symfony/polyfill-php80": "^1.17"
},
"conflict": {
@@ -9544,7 +9545,7 @@
],
"support": {
"issues": "https://github.com/getsentry/sentry-php/issues",
- "source": "https://github.com/getsentry/sentry-php/tree/3.21.0"
+ "source": "https://github.com/getsentry/sentry-php/tree/3.22.0"
},
"funding": [
{
@@ -9556,20 +9557,20 @@
"type": "custom"
}
],
- "time": "2023-07-31T15:31:24+00:00"
+ "time": "2023-10-23T20:34:53+00:00"
},
{
"name": "sentry/sentry-laravel",
- "version": "3.8.0",
+ "version": "3.8.2",
"source": {
"type": "git",
"url": "https://github.com/getsentry/sentry-laravel.git",
- "reference": "c7e7611553f9f90af10ed98dde1a680220f02e4d"
+ "reference": "1293e5732f8405e12f000cdf5dee78c927a18de0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/c7e7611553f9f90af10ed98dde1a680220f02e4d",
- "reference": "c7e7611553f9f90af10ed98dde1a680220f02e4d",
+ "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/1293e5732f8405e12f000cdf5dee78c927a18de0",
+ "reference": "1293e5732f8405e12f000cdf5dee78c927a18de0",
"shasum": ""
},
"require": {
@@ -9636,7 +9637,7 @@
],
"support": {
"issues": "https://github.com/getsentry/sentry-laravel/issues",
- "source": "https://github.com/getsentry/sentry-laravel/tree/3.8.0"
+ "source": "https://github.com/getsentry/sentry-laravel/tree/3.8.2"
},
"funding": [
{
@@ -9648,7 +9649,7 @@
"type": "custom"
}
],
- "time": "2023-09-05T11:02:34+00:00"
+ "time": "2023-10-12T14:38:46+00:00"
},
{
"name": "setasign/fpdf",
@@ -10080,16 +10081,16 @@
},
{
"name": "spatie/laravel-data",
- "version": "3.9.0",
+ "version": "3.9.2",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-data.git",
- "reference": "21bad55113a1e1e5180a0f89b695f02ce1732aef"
+ "reference": "dea1e755549a9b54f5895097cc56b9f244f97867"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-data/zipball/21bad55113a1e1e5180a0f89b695f02ce1732aef",
- "reference": "21bad55113a1e1e5180a0f89b695f02ce1732aef",
+ "url": "https://api.github.com/repos/spatie/laravel-data/zipball/dea1e755549a9b54f5895097cc56b9f244f97867",
+ "reference": "dea1e755549a9b54f5895097cc56b9f244f97867",
"shasum": ""
},
"require": {
@@ -10151,7 +10152,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-data/issues",
- "source": "https://github.com/spatie/laravel-data/tree/3.9.0"
+ "source": "https://github.com/spatie/laravel-data/tree/3.9.2"
},
"funding": [
{
@@ -10159,7 +10160,7 @@
"type": "github"
}
],
- "time": "2023-09-15T12:04:39+00:00"
+ "time": "2023-10-20T10:18:36+00:00"
},
{
"name": "spatie/laravel-package-tools",
@@ -10978,16 +10979,16 @@
},
{
"name": "symfony/http-client",
- "version": "v6.3.5",
+ "version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-client.git",
- "reference": "213e564da4cbf61acc9728d97e666bcdb868c10d"
+ "reference": "cd67fcaf4524ec6ae5d9b2d9497682d7ad3ce57d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client/zipball/213e564da4cbf61acc9728d97e666bcdb868c10d",
- "reference": "213e564da4cbf61acc9728d97e666bcdb868c10d",
+ "url": "https://api.github.com/repos/symfony/http-client/zipball/cd67fcaf4524ec6ae5d9b2d9497682d7ad3ce57d",
+ "reference": "cd67fcaf4524ec6ae5d9b2d9497682d7ad3ce57d",
"shasum": ""
},
"require": {
@@ -11050,7 +11051,7 @@
"http"
],
"support": {
- "source": "https://github.com/symfony/http-client/tree/v6.3.5"
+ "source": "https://github.com/symfony/http-client/tree/v6.3.7"
},
"funding": [
{
@@ -11066,7 +11067,7 @@
"type": "tidelift"
}
],
- "time": "2023-09-29T15:57:12+00:00"
+ "time": "2023-10-29T12:41:36+00:00"
},
{
"name": "symfony/http-client-contracts",
@@ -11148,16 +11149,16 @@
},
{
"name": "symfony/http-foundation",
- "version": "v6.3.5",
+ "version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "b50f5e281d722cb0f4c296f908bacc3e2b721957"
+ "reference": "59d1837d5d992d16c2628cd0d6b76acf8d69b33e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b50f5e281d722cb0f4c296f908bacc3e2b721957",
- "reference": "b50f5e281d722cb0f4c296f908bacc3e2b721957",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/59d1837d5d992d16c2628cd0d6b76acf8d69b33e",
+ "reference": "59d1837d5d992d16c2628cd0d6b76acf8d69b33e",
"shasum": ""
},
"require": {
@@ -11167,12 +11168,12 @@
"symfony/polyfill-php83": "^1.27"
},
"conflict": {
- "symfony/cache": "<6.2"
+ "symfony/cache": "<6.3"
},
"require-dev": {
- "doctrine/dbal": "^2.13.1|^3.0",
+ "doctrine/dbal": "^2.13.1|^3|^4",
"predis/predis": "^1.1|^2.0",
- "symfony/cache": "^5.4|^6.0",
+ "symfony/cache": "^6.3",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/expression-language": "^5.4|^6.0",
"symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
@@ -11205,7 +11206,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v6.3.5"
+ "source": "https://github.com/symfony/http-foundation/tree/v6.3.7"
},
"funding": [
{
@@ -11221,20 +11222,20 @@
"type": "tidelift"
}
],
- "time": "2023-09-04T21:33:54+00:00"
+ "time": "2023-10-28T23:55:27+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v6.3.5",
+ "version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "9f991a964368bee8d883e8d57ced4fe9fff04dfc"
+ "reference": "6d4098095f93279d9536a0e9124439560cc764d0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f991a964368bee8d883e8d57ced4fe9fff04dfc",
- "reference": "9f991a964368bee8d883e8d57ced4fe9fff04dfc",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6d4098095f93279d9536a0e9124439560cc764d0",
+ "reference": "6d4098095f93279d9536a0e9124439560cc764d0",
"shasum": ""
},
"require": {
@@ -11318,7 +11319,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/v6.3.5"
+ "source": "https://github.com/symfony/http-kernel/tree/v6.3.7"
},
"funding": [
{
@@ -11334,20 +11335,20 @@
"type": "tidelift"
}
],
- "time": "2023-09-30T06:37:04+00:00"
+ "time": "2023-10-29T14:31:45+00:00"
},
{
"name": "symfony/intl",
- "version": "v6.3.2",
+ "version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/intl.git",
- "reference": "1f8cb145c869ed089a8531c51a6a4b31ed0b3c69"
+ "reference": "4cc98c05f2c55150a6aa5b3e20667f7a6d06cca9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/intl/zipball/1f8cb145c869ed089a8531c51a6a4b31ed0b3c69",
- "reference": "1f8cb145c869ed089a8531c51a6a4b31ed0b3c69",
+ "url": "https://api.github.com/repos/symfony/intl/zipball/4cc98c05f2c55150a6aa5b3e20667f7a6d06cca9",
+ "reference": "4cc98c05f2c55150a6aa5b3e20667f7a6d06cca9",
"shasum": ""
},
"require": {
@@ -11400,7 +11401,7 @@
"localization"
],
"support": {
- "source": "https://github.com/symfony/intl/tree/v6.3.2"
+ "source": "https://github.com/symfony/intl/tree/v6.3.7"
},
"funding": [
{
@@ -11416,7 +11417,7 @@
"type": "tidelift"
}
],
- "time": "2023-07-20T07:43:09+00:00"
+ "time": "2023-10-28T23:11:45+00:00"
},
{
"name": "symfony/mailer",
@@ -11500,16 +11501,16 @@
},
{
"name": "symfony/mailgun-mailer",
- "version": "v6.3.5",
+ "version": "v6.3.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailgun-mailer.git",
- "reference": "b467aba49c8240a71f7027c213d9d140ba1abce7"
+ "reference": "8d9741467c53750dc8ccda23a1cdb91cda732571"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/b467aba49c8240a71f7027c213d9d140ba1abce7",
- "reference": "b467aba49c8240a71f7027c213d9d140ba1abce7",
+ "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/8d9741467c53750dc8ccda23a1cdb91cda732571",
+ "reference": "8d9741467c53750dc8ccda23a1cdb91cda732571",
"shasum": ""
},
"require": {
@@ -11549,7 +11550,7 @@
"description": "Symfony Mailgun Mailer Bridge",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/mailgun-mailer/tree/v6.3.5"
+ "source": "https://github.com/symfony/mailgun-mailer/tree/v6.3.6"
},
"funding": [
{
@@ -11565,7 +11566,7 @@
"type": "tidelift"
}
],
- "time": "2023-09-29T17:30:10+00:00"
+ "time": "2023-10-12T13:32:47+00:00"
},
{
"name": "symfony/mime",
@@ -13261,16 +13262,16 @@
},
{
"name": "symfony/translation",
- "version": "v6.3.3",
+ "version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd"
+ "reference": "30212e7c87dcb79c83f6362b00bde0e0b1213499"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
- "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/30212e7c87dcb79c83f6362b00bde0e0b1213499",
+ "reference": "30212e7c87dcb79c83f6362b00bde0e0b1213499",
"shasum": ""
},
"require": {
@@ -13336,7 +13337,7 @@
"description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/translation/tree/v6.3.3"
+ "source": "https://github.com/symfony/translation/tree/v6.3.7"
},
"funding": [
{
@@ -13352,7 +13353,7 @@
"type": "tidelift"
}
],
- "time": "2023-07-31T07:08:24+00:00"
+ "time": "2023-10-28T23:11:45+00:00"
},
{
"name": "symfony/translation-contracts",
@@ -13508,16 +13509,16 @@
},
{
"name": "symfony/validator",
- "version": "v6.3.5",
+ "version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/validator.git",
- "reference": "48e815ba3b5eb72e632588dbf7ea2dc4e608ee47"
+ "reference": "9cc736663fa5839b9710ac2c303bb0b951014fc1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/validator/zipball/48e815ba3b5eb72e632588dbf7ea2dc4e608ee47",
- "reference": "48e815ba3b5eb72e632588dbf7ea2dc4e608ee47",
+ "url": "https://api.github.com/repos/symfony/validator/zipball/9cc736663fa5839b9710ac2c303bb0b951014fc1",
+ "reference": "9cc736663fa5839b9710ac2c303bb0b951014fc1",
"shasum": ""
},
"require": {
@@ -13584,7 +13585,7 @@
"description": "Provides tools to validate values",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/validator/tree/v6.3.5"
+ "source": "https://github.com/symfony/validator/tree/v6.3.7"
},
"funding": [
{
@@ -13600,20 +13601,20 @@
"type": "tidelift"
}
],
- "time": "2023-09-29T07:41:15+00:00"
+ "time": "2023-10-28T23:11:45+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v6.3.5",
+ "version": "v6.3.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "3d9999376be5fea8de47752837a3e1d1c5f69ef5"
+ "reference": "999ede244507c32b8e43aebaa10e9fce20de7c97"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3d9999376be5fea8de47752837a3e1d1c5f69ef5",
- "reference": "3d9999376be5fea8de47752837a3e1d1c5f69ef5",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/999ede244507c32b8e43aebaa10e9fce20de7c97",
+ "reference": "999ede244507c32b8e43aebaa10e9fce20de7c97",
"shasum": ""
},
"require": {
@@ -13668,7 +13669,7 @@
"dump"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v6.3.5"
+ "source": "https://github.com/symfony/var-dumper/tree/v6.3.6"
},
"funding": [
{
@@ -13684,20 +13685,20 @@
"type": "tidelift"
}
],
- "time": "2023-09-12T10:11:35+00:00"
+ "time": "2023-10-12T18:45:56+00:00"
},
{
"name": "symfony/yaml",
- "version": "v6.3.3",
+ "version": "v6.3.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add"
+ "reference": "9758b6c69d179936435d0ffb577c3708d57e38a8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add",
- "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/9758b6c69d179936435d0ffb577c3708d57e38a8",
+ "reference": "9758b6c69d179936435d0ffb577c3708d57e38a8",
"shasum": ""
},
"require": {
@@ -13740,7 +13741,7 @@
"description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/yaml/tree/v6.3.3"
+ "source": "https://github.com/symfony/yaml/tree/v6.3.7"
},
"funding": [
{
@@ -13756,7 +13757,7 @@
"type": "tidelift"
}
],
- "time": "2023-07-31T07:08:24+00:00"
+ "time": "2023-10-28T23:31:00+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
@@ -14663,16 +14664,16 @@
},
{
"name": "brianium/paratest",
- "version": "v7.2.7",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/paratestphp/paratest.git",
- "reference": "1526eb4fd195f65075456dee394d14742ae0a66c"
+ "reference": "551f46f52a93177d873f3be08a1649ae886b4a30"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/paratestphp/paratest/zipball/1526eb4fd195f65075456dee394d14742ae0a66c",
- "reference": "1526eb4fd195f65075456dee394d14742ae0a66c",
+ "url": "https://api.github.com/repos/paratestphp/paratest/zipball/551f46f52a93177d873f3be08a1649ae886b4a30",
+ "reference": "551f46f52a93177d873f3be08a1649ae886b4a30",
"shasum": ""
},
"require": {
@@ -14680,28 +14681,28 @@
"ext-pcre": "*",
"ext-reflection": "*",
"ext-simplexml": "*",
- "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1",
+ "fidry/cpu-core-counter": "^0.5.1 || ^1.0.0",
"jean85/pretty-package-versions": "^2.0.5",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
- "phpunit/php-code-coverage": "^10.1.3",
- "phpunit/php-file-iterator": "^4.0.2",
+ "phpunit/php-code-coverage": "^10.1.7",
+ "phpunit/php-file-iterator": "^4.1.0",
"phpunit/php-timer": "^6.0",
- "phpunit/phpunit": "^10.3.2",
+ "phpunit/phpunit": "^10.4.2",
"sebastian/environment": "^6.0.1",
- "symfony/console": "^6.3.4",
- "symfony/process": "^6.3.4"
+ "symfony/console": "^6.3.4 || ^7.0.0",
+ "symfony/process": "^6.3.4 || ^7.0.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"ext-pcov": "*",
"ext-posix": "*",
- "infection/infection": "^0.27.0",
- "phpstan/phpstan": "^1.10.32",
+ "infection/infection": "^0.27.6",
+ "phpstan/phpstan": "^1.10.40",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
- "phpstan/phpstan-phpunit": "^1.3.14",
- "phpstan/phpstan-strict-rules": "^1.5.1",
+ "phpstan/phpstan-phpunit": "^1.3.15",
+ "phpstan/phpstan-strict-rules": "^1.5.2",
"squizlabs/php_codesniffer": "^3.7.2",
- "symfony/filesystem": "^6.3.1"
+ "symfony/filesystem": "^6.3.1 || ^7.0.0"
},
"bin": [
"bin/paratest",
@@ -14742,7 +14743,7 @@
],
"support": {
"issues": "https://github.com/paratestphp/paratest/issues",
- "source": "https://github.com/paratestphp/paratest/tree/v7.2.7"
+ "source": "https://github.com/paratestphp/paratest/tree/v7.3.1"
},
"funding": [
{
@@ -14754,7 +14755,7 @@
"type": "paypal"
}
],
- "time": "2023-09-14T14:10:09+00:00"
+ "time": "2023-10-31T09:24:17+00:00"
},
{
"name": "composer/class-map-generator",
@@ -14831,16 +14832,16 @@
},
{
"name": "composer/pcre",
- "version": "3.1.0",
+ "version": "3.1.1",
"source": {
"type": "git",
"url": "https://github.com/composer/pcre.git",
- "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
+ "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
- "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
+ "url": "https://api.github.com/repos/composer/pcre/zipball/00104306927c7a0919b4ced2aaa6782c1e61a3c9",
+ "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9",
"shasum": ""
},
"require": {
@@ -14882,7 +14883,7 @@
],
"support": {
"issues": "https://github.com/composer/pcre/issues",
- "source": "https://github.com/composer/pcre/tree/3.1.0"
+ "source": "https://github.com/composer/pcre/tree/3.1.1"
},
"funding": [
{
@@ -14898,7 +14899,7 @@
"type": "tidelift"
}
],
- "time": "2022-11-17T09:50:14+00:00"
+ "time": "2023-10-11T07:11:09+00:00"
},
{
"name": "composer/semver",
@@ -15049,16 +15050,16 @@
},
{
"name": "fidry/cpu-core-counter",
- "version": "0.5.1",
+ "version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/theofidry/cpu-core-counter.git",
- "reference": "b58e5a3933e541dc286cc91fc4f3898bbc6f1623"
+ "reference": "85193c0b0cb5c47894b5eaec906e946f054e7077"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/b58e5a3933e541dc286cc91fc4f3898bbc6f1623",
- "reference": "b58e5a3933e541dc286cc91fc4f3898bbc6f1623",
+ "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/85193c0b0cb5c47894b5eaec906e946f054e7077",
+ "reference": "85193c0b0cb5c47894b5eaec906e946f054e7077",
"shasum": ""
},
"require": {
@@ -15066,13 +15067,13 @@
},
"require-dev": {
"fidry/makefile": "^0.2.0",
+ "fidry/php-cs-fixer-config": "^1.1.2",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan": "^1.9.2",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.2.2",
"phpstan/phpstan-strict-rules": "^1.4.4",
- "phpunit/phpunit": "^9.5.26 || ^8.5.31",
- "theofidry/php-cs-fixer-config": "^1.0",
+ "phpunit/phpunit": "^8.5.31 || ^9.5.26",
"webmozarts/strict-phpunit": "^7.5"
},
"type": "library",
@@ -15098,7 +15099,7 @@
],
"support": {
"issues": "https://github.com/theofidry/cpu-core-counter/issues",
- "source": "https://github.com/theofidry/cpu-core-counter/tree/0.5.1"
+ "source": "https://github.com/theofidry/cpu-core-counter/tree/1.0.0"
},
"funding": [
{
@@ -15106,20 +15107,20 @@
"type": "github"
}
],
- "time": "2022-12-24T12:35:10+00:00"
+ "time": "2023-09-17T21:38:23+00:00"
},
{
"name": "filp/whoops",
- "version": "2.15.3",
+ "version": "2.15.4",
"source": {
"type": "git",
"url": "https://github.com/filp/whoops.git",
- "reference": "c83e88a30524f9360b11f585f71e6b17313b7187"
+ "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187",
- "reference": "c83e88a30524f9360b11f585f71e6b17313b7187",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
+ "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
"shasum": ""
},
"require": {
@@ -15169,7 +15170,7 @@
],
"support": {
"issues": "https://github.com/filp/whoops/issues",
- "source": "https://github.com/filp/whoops/tree/2.15.3"
+ "source": "https://github.com/filp/whoops/tree/2.15.4"
},
"funding": [
{
@@ -15177,20 +15178,20 @@
"type": "github"
}
],
- "time": "2023-07-13T12:00:00+00:00"
+ "time": "2023-11-03T12:00:00+00:00"
},
{
"name": "friendsofphp/php-cs-fixer",
- "version": "v3.34.0",
+ "version": "v3.37.1",
"source": {
"type": "git",
"url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
- "reference": "7c7a4ad2ed8fe50df3e25528218b13d383608f23"
+ "reference": "c3fe76976081ab871aa654e872da588077e19679"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/7c7a4ad2ed8fe50df3e25528218b13d383608f23",
- "reference": "7c7a4ad2ed8fe50df3e25528218b13d383608f23",
+ "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/c3fe76976081ab871aa654e872da588077e19679",
+ "reference": "c3fe76976081ab871aa654e872da588077e19679",
"shasum": ""
},
"require": {
@@ -15211,9 +15212,6 @@
"symfony/process": "^5.4 || ^6.0",
"symfony/stopwatch": "^5.4 || ^6.0"
},
- "conflict": {
- "stevebauman/unfinalize": "*"
- },
"require-dev": {
"facile-it/paraunit": "^1.3 || ^2.0",
"justinrainbow/json-schema": "^5.2",
@@ -15226,8 +15224,6 @@
"phpspec/prophecy": "^1.16",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
- "phpunitgoodpractices/polyfill": "^1.6",
- "phpunitgoodpractices/traits": "^1.9.2",
"symfony/phpunit-bridge": "^6.2.3",
"symfony/yaml": "^5.4 || ^6.0"
},
@@ -15267,7 +15263,7 @@
],
"support": {
"issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
- "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.34.0"
+ "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.37.1"
},
"funding": [
{
@@ -15275,7 +15271,7 @@
"type": "github"
}
],
- "time": "2023-09-29T15:34:26+00:00"
+ "time": "2023-10-29T20:51:23+00:00"
},
{
"name": "hamcrest/hamcrest-php",
@@ -15389,16 +15385,16 @@
},
{
"name": "maximebf/debugbar",
- "version": "v1.19.0",
+ "version": "v1.19.1",
"source": {
"type": "git",
"url": "https://github.com/maximebf/php-debugbar.git",
- "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e"
+ "reference": "03dd40a1826f4d585ef93ef83afa2a9874a00523"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30f65f18f7ac086255a77a079f8e0dcdd35e828e",
- "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e",
+ "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/03dd40a1826f4d585ef93ef83afa2a9874a00523",
+ "reference": "03dd40a1826f4d585ef93ef83afa2a9874a00523",
"shasum": ""
},
"require": {
@@ -15449,9 +15445,9 @@
],
"support": {
"issues": "https://github.com/maximebf/php-debugbar/issues",
- "source": "https://github.com/maximebf/php-debugbar/tree/v1.19.0"
+ "source": "https://github.com/maximebf/php-debugbar/tree/v1.19.1"
},
- "time": "2023-09-19T19:53:10+00:00"
+ "time": "2023-10-12T08:10:52+00:00"
},
{
"name": "mockery/mockery",
@@ -15599,16 +15595,16 @@
},
{
"name": "nunomaduro/collision",
- "version": "v7.9.0",
+ "version": "v7.10.0",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/collision.git",
- "reference": "296d0cf9fe462837ac0da8a568b56fc026b132da"
+ "reference": "49ec67fa7b002712da8526678abd651c09f375b2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/collision/zipball/296d0cf9fe462837ac0da8a568b56fc026b132da",
- "reference": "296d0cf9fe462837ac0da8a568b56fc026b132da",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2",
+ "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
"shasum": ""
},
"require": {
@@ -15617,19 +15613,22 @@
"php": "^8.1.0",
"symfony/console": "^6.3.4"
},
+ "conflict": {
+ "laravel/framework": ">=11.0.0"
+ },
"require-dev": {
- "brianium/paratest": "^7.2.7",
- "laravel/framework": "^10.23.1",
- "laravel/pint": "^1.13.1",
+ "brianium/paratest": "^7.3.0",
+ "laravel/framework": "^10.28.0",
+ "laravel/pint": "^1.13.3",
"laravel/sail": "^1.25.0",
"laravel/sanctum": "^3.3.1",
"laravel/tinker": "^2.8.2",
"nunomaduro/larastan": "^2.6.4",
- "orchestra/testbench-core": "^8.11.0",
- "pestphp/pest": "^2.19.1",
- "phpunit/phpunit": "^10.3.5",
+ "orchestra/testbench-core": "^8.13.0",
+ "pestphp/pest": "^2.23.2",
+ "phpunit/phpunit": "^10.4.1",
"sebastian/environment": "^6.0.1",
- "spatie/laravel-ignition": "^2.3.0"
+ "spatie/laravel-ignition": "^2.3.1"
},
"type": "library",
"extra": {
@@ -15688,7 +15687,7 @@
"type": "patreon"
}
],
- "time": "2023-09-19T10:45:09+00:00"
+ "time": "2023-10-11T15:45:01+00:00"
},
{
"name": "nunomaduro/larastan",
@@ -15986,16 +15985,16 @@
},
{
"name": "phpstan/phpstan",
- "version": "1.10.36",
+ "version": "1.10.41",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan.git",
- "reference": "ffa3089511121a672e62969404e4fddc753f9b15"
+ "reference": "c6174523c2a69231df55bdc65b61655e72876d76"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ffa3089511121a672e62969404e4fddc753f9b15",
- "reference": "ffa3089511121a672e62969404e4fddc753f9b15",
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/c6174523c2a69231df55bdc65b61655e72876d76",
+ "reference": "c6174523c2a69231df55bdc65b61655e72876d76",
"shasum": ""
},
"require": {
@@ -16044,20 +16043,20 @@
"type": "tidelift"
}
],
- "time": "2023-09-29T14:07:45+00:00"
+ "time": "2023-11-05T12:57:57+00:00"
},
{
"name": "phpunit/php-code-coverage",
- "version": "10.1.6",
+ "version": "10.1.7",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "56f33548fe522c8d82da7ff3824b42829d324364"
+ "reference": "355324ca4980b8916c18b9db29f3ef484078f26e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/56f33548fe522c8d82da7ff3824b42829d324364",
- "reference": "56f33548fe522c8d82da7ff3824b42829d324364",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/355324ca4980b8916c18b9db29f3ef484078f26e",
+ "reference": "355324ca4980b8916c18b9db29f3ef484078f26e",
"shasum": ""
},
"require": {
@@ -16114,7 +16113,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.6"
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.7"
},
"funding": [
{
@@ -16122,7 +16121,7 @@
"type": "github"
}
],
- "time": "2023-09-19T04:59:03+00:00"
+ "time": "2023-10-04T15:34:17+00:00"
},
{
"name": "phpunit/php-file-iterator",
@@ -16369,16 +16368,16 @@
},
{
"name": "phpunit/phpunit",
- "version": "10.3.5",
+ "version": "10.4.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "747c3b2038f1139e3dcd9886a3f5a948648b7503"
+ "reference": "cacd8b9dd224efa8eb28beb69004126c7ca1a1a1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/747c3b2038f1139e3dcd9886a3f5a948648b7503",
- "reference": "747c3b2038f1139e3dcd9886a3f5a948648b7503",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/cacd8b9dd224efa8eb28beb69004126c7ca1a1a1",
+ "reference": "cacd8b9dd224efa8eb28beb69004126c7ca1a1a1",
"shasum": ""
},
"require": {
@@ -16418,7 +16417,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "10.3-dev"
+ "dev-main": "10.4-dev"
}
},
"autoload": {
@@ -16450,7 +16449,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/10.3.5"
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/10.4.2"
},
"funding": [
{
@@ -16466,7 +16465,7 @@
"type": "tidelift"
}
],
- "time": "2023-09-19T05:42:37+00:00"
+ "time": "2023-10-26T07:21:45+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -17447,35 +17446,35 @@
},
{
"name": "spatie/flare-client-php",
- "version": "1.4.2",
+ "version": "1.4.3",
"source": {
"type": "git",
"url": "https://github.com/spatie/flare-client-php.git",
- "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544"
+ "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
- "reference": "5f2c6a7a0d2c1d90c12559dc7828fd942911a544",
+ "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec",
+ "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec",
"shasum": ""
},
"require": {
- "illuminate/pipeline": "^8.0|^9.0|^10.0",
+ "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
"nesbot/carbon": "^2.62.1",
"php": "^8.0",
"spatie/backtrace": "^1.5.2",
- "symfony/http-foundation": "^5.0|^6.0",
- "symfony/mime": "^5.2|^6.0",
- "symfony/process": "^5.2|^6.0",
- "symfony/var-dumper": "^5.2|^6.0"
+ "symfony/http-foundation": "^5.2|^6.0|^7.0",
+ "symfony/mime": "^5.2|^6.0|^7.0",
+ "symfony/process": "^5.2|^6.0|^7.0",
+ "symfony/var-dumper": "^5.2|^6.0|^7.0"
},
"require-dev": {
- "dms/phpunit-arraysubset-asserts": "^0.3.0",
- "pestphp/pest": "^1.20",
+ "dms/phpunit-arraysubset-asserts": "^0.5.0",
+ "pestphp/pest": "^1.20|^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
- "spatie/phpunit-snapshot-assertions": "^4.0"
+ "spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
},
"type": "library",
"extra": {
@@ -17505,7 +17504,7 @@
],
"support": {
"issues": "https://github.com/spatie/flare-client-php/issues",
- "source": "https://github.com/spatie/flare-client-php/tree/1.4.2"
+ "source": "https://github.com/spatie/flare-client-php/tree/1.4.3"
},
"funding": [
{
@@ -17513,20 +17512,20 @@
"type": "github"
}
],
- "time": "2023-07-28T08:07:24+00:00"
+ "time": "2023-10-17T15:54:07+00:00"
},
{
"name": "spatie/ignition",
- "version": "1.11.2",
+ "version": "1.11.3",
"source": {
"type": "git",
"url": "https://github.com/spatie/ignition.git",
- "reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa"
+ "reference": "3d886de644ff7a5b42e4d27c1e1f67c8b5f00044"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/ignition/zipball/48b23411ca4bfbc75c75dfc638b6b36159c375aa",
- "reference": "48b23411ca4bfbc75c75dfc638b6b36159c375aa",
+ "url": "https://api.github.com/repos/spatie/ignition/zipball/3d886de644ff7a5b42e4d27c1e1f67c8b5f00044",
+ "reference": "3d886de644ff7a5b42e4d27c1e1f67c8b5f00044",
"shasum": ""
},
"require": {
@@ -17535,19 +17534,19 @@
"php": "^8.0",
"spatie/backtrace": "^1.5.3",
"spatie/flare-client-php": "^1.4.0",
- "symfony/console": "^5.4|^6.0",
- "symfony/var-dumper": "^5.4|^6.0"
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/var-dumper": "^5.4|^6.0|^7.0"
},
"require-dev": {
- "illuminate/cache": "^9.52",
+ "illuminate/cache": "^9.52|^10.0|^11.0",
"mockery/mockery": "^1.4",
- "pestphp/pest": "^1.20",
+ "pestphp/pest": "^1.20|^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"psr/simple-cache-implementation": "*",
- "symfony/cache": "^6.0",
- "symfony/process": "^5.4|^6.0",
+ "symfony/cache": "^5.4|^6.0|^7.0",
+ "symfony/process": "^5.4|^6.0|^7.0",
"vlucas/phpdotenv": "^5.5"
},
"suggest": {
@@ -17596,20 +17595,20 @@
"type": "github"
}
],
- "time": "2023-09-19T15:29:52+00:00"
+ "time": "2023-10-18T14:09:40+00:00"
},
{
"name": "spatie/laravel-ignition",
- "version": "2.3.0",
+ "version": "2.3.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-ignition.git",
- "reference": "4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0"
+ "reference": "bf21cd15aa47fa4ec5d73bbc932005c70261efc8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0",
- "reference": "4ed813d16edb5a1ab0d7f4b1d116c37ee8cdf3c0",
+ "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/bf21cd15aa47fa4ec5d73bbc932005c70261efc8",
+ "reference": "bf21cd15aa47fa4ec5d73bbc932005c70261efc8",
"shasum": ""
},
"require": {
@@ -17688,20 +17687,20 @@
"type": "github"
}
],
- "time": "2023-08-23T06:24:34+00:00"
+ "time": "2023-10-09T12:55:26+00:00"
},
{
"name": "spaze/phpstan-stripe",
- "version": "v3.0.0",
+ "version": "v3.1.0",
"source": {
"type": "git",
"url": "https://github.com/spaze/phpstan-stripe.git",
- "reference": "6e5debe4f65b15192a28bd01f01670ced8250443"
+ "reference": "ebe8d3a7ae99f45ec024767453a09c93dedec030"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spaze/phpstan-stripe/zipball/6e5debe4f65b15192a28bd01f01670ced8250443",
- "reference": "6e5debe4f65b15192a28bd01f01670ced8250443",
+ "url": "https://api.github.com/repos/spaze/phpstan-stripe/zipball/ebe8d3a7ae99f45ec024767453a09c93dedec030",
+ "reference": "ebe8d3a7ae99f45ec024767453a09c93dedec030",
"shasum": ""
},
"require": {
@@ -17748,9 +17747,9 @@
],
"support": {
"issues": "https://github.com/spaze/phpstan-stripe/issues",
- "source": "https://github.com/spaze/phpstan-stripe/tree/v3.0.0"
+ "source": "https://github.com/spaze/phpstan-stripe/tree/v3.1.0"
},
- "time": "2023-03-06T00:39:29+00:00"
+ "time": "2023-10-28T14:16:00+00:00"
},
{
"name": "symfony/polyfill-php81",
diff --git a/tests/Feature/Template/TemplateTest.php b/tests/Feature/Template/TemplateTest.php
index 2268891fadb9..e771f1416a3f 100644
--- a/tests/Feature/Template/TemplateTest.php
+++ b/tests/Feature/Template/TemplateTest.php
@@ -24,6 +24,7 @@ use App\Utils\Traits\MakesDates;
use App\Services\PdfMaker\PdfMaker;
use Illuminate\Support\Facades\App;
use App\Jobs\Entity\CreateEntityPdf;
+use App\Services\Template\TemplateMock;
use App\Services\Template\TemplateService;
use App\Services\PdfMaker\Design as PdfDesignModel;
use App\Services\PdfMaker\Design as PdfMakerDesign;
@@ -165,7 +166,7 @@ class TemplateTest extends TestCase
';
- private string $stack = '