mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
Static Analysis
This commit is contained in:
parent
acdf3a75a5
commit
2927611b4e
@ -120,116 +120,116 @@ class QuickbooksImport implements ShouldQueue
|
||||
};
|
||||
}
|
||||
|
||||
private function syncQbToNinjaInvoices($records): void
|
||||
{
|
||||
// private function syncQbToNinjaInvoices($records): void
|
||||
// {
|
||||
|
||||
|
||||
}
|
||||
// }
|
||||
|
||||
|
||||
|
||||
private function syncQbToNinjaVendors(array $records): void
|
||||
{
|
||||
// private function syncQbToNinjaVendors(array $records): void
|
||||
// {
|
||||
|
||||
$transformer = new VendorTransformer($this->company);
|
||||
// $transformer = new VendorTransformer($this->company);
|
||||
|
||||
foreach($records as $record)
|
||||
{
|
||||
$ninja_data = $transformer->qbToNinja($record);
|
||||
// foreach($records as $record)
|
||||
// {
|
||||
// $ninja_data = $transformer->qbToNinja($record);
|
||||
|
||||
if($vendor = $this->findVendor($ninja_data))
|
||||
{
|
||||
$vendor->fill($ninja_data[0]);
|
||||
$vendor->saveQuietly();
|
||||
// if($vendor = $this->findVendor($ninja_data))
|
||||
// {
|
||||
// $vendor->fill($ninja_data[0]);
|
||||
// $vendor->saveQuietly();
|
||||
|
||||
$contact = $vendor->contacts()->where('email', $ninja_data[1]['email'])->first();
|
||||
// $contact = $vendor->contacts()->where('email', $ninja_data[1]['email'])->first();
|
||||
|
||||
if(!$contact)
|
||||
{
|
||||
$contact = VendorContactFactory::create($this->company->id, $this->company->owner()->id);
|
||||
$contact->vendor_id = $vendor->id;
|
||||
$contact->send_email = true;
|
||||
$contact->is_primary = true;
|
||||
$contact->fill($ninja_data[1]);
|
||||
$contact->saveQuietly();
|
||||
}
|
||||
elseif($this->qbs->syncable('vendor', \App\Enum\SyncDirection::PULL)){
|
||||
$contact->fill($ninja_data[1]);
|
||||
$contact->saveQuietly();
|
||||
}
|
||||
// if(!$contact)
|
||||
// {
|
||||
// $contact = VendorContactFactory::create($this->company->id, $this->company->owner()->id);
|
||||
// $contact->vendor_id = $vendor->id;
|
||||
// $contact->send_email = true;
|
||||
// $contact->is_primary = true;
|
||||
// $contact->fill($ninja_data[1]);
|
||||
// $contact->saveQuietly();
|
||||
// }
|
||||
// elseif($this->qbs->syncable('vendor', \App\Enum\SyncDirection::PULL)){
|
||||
// $contact->fill($ninja_data[1]);
|
||||
// $contact->saveQuietly();
|
||||
// }
|
||||
|
||||
}
|
||||
// }
|
||||
|
||||
}
|
||||
}
|
||||
// }
|
||||
// }
|
||||
|
||||
private function syncQbToNinjaExpenses(array $records): void
|
||||
{
|
||||
// private function syncQbToNinjaExpenses(array $records): void
|
||||
// {
|
||||
|
||||
$transformer = new ExpenseTransformer($this->company);
|
||||
// $transformer = new ExpenseTransformer($this->company);
|
||||
|
||||
foreach($records as $record)
|
||||
{
|
||||
$ninja_data = $transformer->qbToNinja($record);
|
||||
// foreach($records as $record)
|
||||
// {
|
||||
// $ninja_data = $transformer->qbToNinja($record);
|
||||
|
||||
if($expense = $this->findExpense($ninja_data))
|
||||
{
|
||||
$expense->fill($ninja_data);
|
||||
$expense->saveQuietly();
|
||||
}
|
||||
// if($expense = $this->findExpense($ninja_data))
|
||||
// {
|
||||
// $expense->fill($ninja_data);
|
||||
// $expense->saveQuietly();
|
||||
// }
|
||||
|
||||
}
|
||||
}
|
||||
// }
|
||||
// }
|
||||
|
||||
private function findExpense(array $qb_data): ?Expense
|
||||
{
|
||||
$expense = $qb_data;
|
||||
// private function findExpense(array $qb_data): ?Expense
|
||||
// {
|
||||
// $expense = $qb_data;
|
||||
|
||||
$search = Expense::query()
|
||||
->withTrashed()
|
||||
->where('company_id', $this->company->id)
|
||||
->where('number', $expense['number']);
|
||||
// $search = Expense::query()
|
||||
// ->withTrashed()
|
||||
// ->where('company_id', $this->company->id)
|
||||
// ->where('number', $expense['number']);
|
||||
|
||||
if($search->count() == 0) {
|
||||
return ExpenseFactory::create($this->company->id, $this->company->owner()->id);
|
||||
}
|
||||
elseif($search->count() == 1) {
|
||||
return $this->qbs->syncable('expense', \App\Enum\SyncDirection::PULL) ? $search->first() : null;
|
||||
}
|
||||
// if($search->count() == 0) {
|
||||
// return ExpenseFactory::create($this->company->id, $this->company->owner()->id);
|
||||
// }
|
||||
// elseif($search->count() == 1) {
|
||||
// return $this->qbs->syncable('expense', \App\Enum\SyncDirection::PULL) ? $search->first() : null;
|
||||
// }
|
||||
|
||||
return null;
|
||||
}
|
||||
// return null;
|
||||
// }
|
||||
|
||||
private function findVendor(array $qb_data) :?Vendor
|
||||
{
|
||||
$vendor = $qb_data[0];
|
||||
$contact = $qb_data[1];
|
||||
$vendor_meta = $qb_data[2];
|
||||
// private function findVendor(array $qb_data) :?Vendor
|
||||
// {
|
||||
// $vendor = $qb_data[0];
|
||||
// $contact = $qb_data[1];
|
||||
// $vendor_meta = $qb_data[2];
|
||||
|
||||
$search = Vendor::query()
|
||||
->withTrashed()
|
||||
->where('company_id', $this->company->id)
|
||||
->where(function ($q) use ($vendor, $vendor_meta, $contact){
|
||||
// $search = Vendor::query()
|
||||
// ->withTrashed()
|
||||
// ->where('company_id', $this->company->id)
|
||||
// ->where(function ($q) use ($vendor, $vendor_meta, $contact){
|
||||
|
||||
$q->where('vendor_hash', $vendor_meta['vendor_hash'])
|
||||
->orWhere('number', $vendor['number'])
|
||||
->orWhereHas('contacts', function ($q) use ($contact){
|
||||
$q->where('email', $contact['email']);
|
||||
});
|
||||
// $q->where('vendor_hash', $vendor_meta['vendor_hash'])
|
||||
// ->orWhere('number', $vendor['number'])
|
||||
// ->orWhereHas('contacts', function ($q) use ($contact){
|
||||
// $q->where('email', $contact['email']);
|
||||
// });
|
||||
|
||||
});
|
||||
// });
|
||||
|
||||
if($search->count() == 0) {
|
||||
//new client
|
||||
return VendorFactory::create($this->company->id, $this->company->owner()->id);
|
||||
}
|
||||
elseif($search->count() == 1) {
|
||||
// if($search->count() == 0) {
|
||||
// //new client
|
||||
// return VendorFactory::create($this->company->id, $this->company->owner()->id);
|
||||
// }
|
||||
// elseif($search->count() == 1) {
|
||||
|
||||
return $this->qbs->syncable('vendor', \App\Enum\SyncDirection::PULL) ? $search->first() : null;
|
||||
}
|
||||
// return $this->qbs->syncable('vendor', \App\Enum\SyncDirection::PULL) ? $search->first() : null;
|
||||
// }
|
||||
|
||||
return null;
|
||||
}
|
||||
// return null;
|
||||
// }
|
||||
|
||||
public function middleware()
|
||||
{
|
||||
|
237
composer.lock
generated
237
composer.lock
generated
@ -535,16 +535,16 @@
|
||||
},
|
||||
{
|
||||
"name": "aws/aws-sdk-php",
|
||||
"version": "3.323.2",
|
||||
"version": "3.324.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/aws/aws-sdk-php.git",
|
||||
"reference": "030b93340f0e7d6fd20276037087d3eab8f16575"
|
||||
"reference": "5b824a9b8015a38f18c53b023975c0f63c7bd3dc"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/030b93340f0e7d6fd20276037087d3eab8f16575",
|
||||
"reference": "030b93340f0e7d6fd20276037087d3eab8f16575",
|
||||
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5b824a9b8015a38f18c53b023975c0f63c7bd3dc",
|
||||
"reference": "5b824a9b8015a38f18c53b023975c0f63c7bd3dc",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -627,9 +627,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.323.2"
|
||||
"source": "https://github.com/aws/aws-sdk-php/tree/3.324.1"
|
||||
},
|
||||
"time": "2024-10-07T18:11:24+00:00"
|
||||
"time": "2024-10-11T18:22:01+00:00"
|
||||
},
|
||||
{
|
||||
"name": "babenkoivan/elastic-adapter",
|
||||
@ -1580,16 +1580,16 @@
|
||||
},
|
||||
{
|
||||
"name": "doctrine/dbal",
|
||||
"version": "4.1.1",
|
||||
"version": "4.2.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/doctrine/dbal.git",
|
||||
"reference": "7a8252418689feb860ea8dfeab66d64a56a64df8"
|
||||
"reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/doctrine/dbal/zipball/7a8252418689feb860ea8dfeab66d64a56a64df8",
|
||||
"reference": "7a8252418689feb860ea8dfeab66d64a56a64df8",
|
||||
"url": "https://api.github.com/repos/doctrine/dbal/zipball/dadd35300837a3a2184bd47d403333b15d0a9bd0",
|
||||
"reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -1602,7 +1602,7 @@
|
||||
"doctrine/coding-standard": "12.0.0",
|
||||
"fig/log-test": "^1",
|
||||
"jetbrains/phpstorm-stubs": "2023.2",
|
||||
"phpstan/phpstan": "1.12.0",
|
||||
"phpstan/phpstan": "1.12.6",
|
||||
"phpstan/phpstan-phpunit": "1.4.0",
|
||||
"phpstan/phpstan-strict-rules": "^1.6",
|
||||
"phpunit/phpunit": "10.5.30",
|
||||
@ -1668,7 +1668,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/doctrine/dbal/issues",
|
||||
"source": "https://github.com/doctrine/dbal/tree/4.1.1"
|
||||
"source": "https://github.com/doctrine/dbal/tree/4.2.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -1684,7 +1684,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-09-03T08:58:39+00:00"
|
||||
"time": "2024-10-10T18:01:27+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/deprecations",
|
||||
@ -2035,16 +2035,16 @@
|
||||
},
|
||||
{
|
||||
"name": "dragonmantank/cron-expression",
|
||||
"version": "v3.3.3",
|
||||
"version": "v3.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/dragonmantank/cron-expression.git",
|
||||
"reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
|
||||
"reference": "8c784d071debd117328803d86b2097615b457500"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
|
||||
"reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
|
||||
"url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
|
||||
"reference": "8c784d071debd117328803d86b2097615b457500",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2057,10 +2057,14 @@
|
||||
"require-dev": {
|
||||
"phpstan/extension-installer": "^1.0",
|
||||
"phpstan/phpstan": "^1.0",
|
||||
"phpstan/phpstan-webmozart-assert": "^1.0",
|
||||
"phpunit/phpunit": "^7.0|^8.0|^9.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "3.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Cron\\": "src/Cron/"
|
||||
@ -2084,7 +2088,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/dragonmantank/cron-expression/issues",
|
||||
"source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
|
||||
"source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -2092,7 +2096,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2023-08-10T19:36:49+00:00"
|
||||
"time": "2024-10-09T13:47:03+00:00"
|
||||
},
|
||||
{
|
||||
"name": "egulias/email-validator",
|
||||
@ -3882,16 +3886,16 @@
|
||||
},
|
||||
{
|
||||
"name": "horstoeko/zugferd",
|
||||
"version": "v1.0.65",
|
||||
"version": "v1.0.66",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/horstoeko/zugferd.git",
|
||||
"reference": "ccafcda546f6867b3203420331fd436baf028187"
|
||||
"reference": "2a009cd78d6aab7771f2a6dbf31c8c0cfd4f3fc5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/horstoeko/zugferd/zipball/ccafcda546f6867b3203420331fd436baf028187",
|
||||
"reference": "ccafcda546f6867b3203420331fd436baf028187",
|
||||
"url": "https://api.github.com/repos/horstoeko/zugferd/zipball/2a009cd78d6aab7771f2a6dbf31c8c0cfd4f3fc5",
|
||||
"reference": "2a009cd78d6aab7771f2a6dbf31c8c0cfd4f3fc5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3951,9 +3955,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/horstoeko/zugferd/issues",
|
||||
"source": "https://github.com/horstoeko/zugferd/tree/v1.0.65"
|
||||
"source": "https://github.com/horstoeko/zugferd/tree/v1.0.66"
|
||||
},
|
||||
"time": "2024-10-06T09:56:35+00:00"
|
||||
"time": "2024-10-11T09:37:47+00:00"
|
||||
},
|
||||
{
|
||||
"name": "horstoeko/zugferdvisualizer",
|
||||
@ -4883,16 +4887,16 @@
|
||||
},
|
||||
{
|
||||
"name": "laravel/framework",
|
||||
"version": "v11.26.0",
|
||||
"version": "v11.27.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/framework.git",
|
||||
"reference": "b8cb8998701d5b3cfe68539d3c3da1fc59ddd82b"
|
||||
"reference": "a51d1f2b771c542324a3d9b76a98b1bbc75c0ee9"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/b8cb8998701d5b3cfe68539d3c3da1fc59ddd82b",
|
||||
"reference": "b8cb8998701d5b3cfe68539d3c3da1fc59ddd82b",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/a51d1f2b771c542324a3d9b76a98b1bbc75c0ee9",
|
||||
"reference": "a51d1f2b771c542324a3d9b76a98b1bbc75c0ee9",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -5088,7 +5092,7 @@
|
||||
"issues": "https://github.com/laravel/framework/issues",
|
||||
"source": "https://github.com/laravel/framework"
|
||||
},
|
||||
"time": "2024-10-01T14:29:34+00:00"
|
||||
"time": "2024-10-09T04:17:35+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/prompts",
|
||||
@ -5620,38 +5624,38 @@
|
||||
},
|
||||
{
|
||||
"name": "lcobucci/jwt",
|
||||
"version": "5.3.0",
|
||||
"version": "5.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/lcobucci/jwt.git",
|
||||
"reference": "08071d8d2c7f4b00222cc4b1fb6aa46990a80f83"
|
||||
"reference": "aac4fd512681fd5cb4b77d2105ab7ec700c72051"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/lcobucci/jwt/zipball/08071d8d2c7f4b00222cc4b1fb6aa46990a80f83",
|
||||
"reference": "08071d8d2c7f4b00222cc4b1fb6aa46990a80f83",
|
||||
"url": "https://api.github.com/repos/lcobucci/jwt/zipball/aac4fd512681fd5cb4b77d2105ab7ec700c72051",
|
||||
"reference": "aac4fd512681fd5cb4b77d2105ab7ec700c72051",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-openssl": "*",
|
||||
"ext-sodium": "*",
|
||||
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
|
||||
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
|
||||
"psr/clock": "^1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"infection/infection": "^0.27.0",
|
||||
"lcobucci/clock": "^3.0",
|
||||
"infection/infection": "^0.29",
|
||||
"lcobucci/clock": "^3.2",
|
||||
"lcobucci/coding-standard": "^11.0",
|
||||
"phpbench/phpbench": "^1.2.9",
|
||||
"phpbench/phpbench": "^1.2",
|
||||
"phpstan/extension-installer": "^1.2",
|
||||
"phpstan/phpstan": "^1.10.7",
|
||||
"phpstan/phpstan-deprecation-rules": "^1.1.3",
|
||||
"phpstan/phpstan-phpunit": "^1.3.10",
|
||||
"phpstan/phpstan-strict-rules": "^1.5.0",
|
||||
"phpunit/phpunit": "^10.2.6"
|
||||
"phpunit/phpunit": "^11.1"
|
||||
},
|
||||
"suggest": {
|
||||
"lcobucci/clock": ">= 3.0"
|
||||
"lcobucci/clock": ">= 3.2"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
@ -5677,7 +5681,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/lcobucci/jwt/issues",
|
||||
"source": "https://github.com/lcobucci/jwt/tree/5.3.0"
|
||||
"source": "https://github.com/lcobucci/jwt/tree/5.4.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -5689,7 +5693,7 @@
|
||||
"type": "patreon"
|
||||
}
|
||||
],
|
||||
"time": "2024-04-11T23:07:54+00:00"
|
||||
"time": "2024-10-08T22:06:45+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/commonmark",
|
||||
@ -5881,16 +5885,16 @@
|
||||
},
|
||||
{
|
||||
"name": "league/csv",
|
||||
"version": "9.16.0",
|
||||
"version": "9.17.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/csv.git",
|
||||
"reference": "998280c6c34bd67d8125fdc8b45bae28d761b440"
|
||||
"reference": "8cab815fb11ec93aa2f7b8a57b3daa1f1a364011"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/csv/zipball/998280c6c34bd67d8125fdc8b45bae28d761b440",
|
||||
"reference": "998280c6c34bd67d8125fdc8b45bae28d761b440",
|
||||
"url": "https://api.github.com/repos/thephpleague/csv/zipball/8cab815fb11ec93aa2f7b8a57b3daa1f1a364011",
|
||||
"reference": "8cab815fb11ec93aa2f7b8a57b3daa1f1a364011",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -5898,17 +5902,16 @@
|
||||
"php": "^8.1.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/collections": "^2.2.2",
|
||||
"ext-dom": "*",
|
||||
"ext-xdebug": "*",
|
||||
"friendsofphp/php-cs-fixer": "^3.57.1",
|
||||
"phpbench/phpbench": "^1.2.15",
|
||||
"phpstan/phpstan": "^1.11.1",
|
||||
"phpstan/phpstan-deprecation-rules": "^1.2.0",
|
||||
"friendsofphp/php-cs-fixer": "^3.64.0",
|
||||
"phpbench/phpbench": "^1.3.1",
|
||||
"phpstan/phpstan": "^1.12.5",
|
||||
"phpstan/phpstan-deprecation-rules": "^1.2.1",
|
||||
"phpstan/phpstan-phpunit": "^1.4.0",
|
||||
"phpstan/phpstan-strict-rules": "^1.6.0",
|
||||
"phpunit/phpunit": "^10.5.16 || ^11.1.3",
|
||||
"symfony/var-dumper": "^6.4.6 || ^7.0.7"
|
||||
"phpstan/phpstan-strict-rules": "^1.6.1",
|
||||
"phpunit/phpunit": "^10.5.16 || ^11.4.0",
|
||||
"symfony/var-dumper": "^6.4.8 || ^7.1.5"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
|
||||
@ -5926,7 +5929,7 @@
|
||||
"src/functions_include.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"League\\Csv\\": "src"
|
||||
"League\\Csv\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
@ -5965,20 +5968,20 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2024-05-24T11:04:54+00:00"
|
||||
"time": "2024-10-10T10:30:28+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/flysystem",
|
||||
"version": "3.29.0",
|
||||
"version": "3.29.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/flysystem.git",
|
||||
"reference": "0adc0d9a51852e170e0028a60bd271726626d3f0"
|
||||
"reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0adc0d9a51852e170e0028a60bd271726626d3f0",
|
||||
"reference": "0adc0d9a51852e170e0028a60bd271726626d3f0",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
|
||||
"reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -6046,9 +6049,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/thephpleague/flysystem/issues",
|
||||
"source": "https://github.com/thephpleague/flysystem/tree/3.29.0"
|
||||
"source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
|
||||
},
|
||||
"time": "2024-09-29T11:59:11+00:00"
|
||||
"time": "2024-10-08T08:58:34+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/flysystem-aws-s3-v3",
|
||||
@ -6358,16 +6361,16 @@
|
||||
},
|
||||
{
|
||||
"name": "livewire/livewire",
|
||||
"version": "v3.5.9",
|
||||
"version": "v3.5.10",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/livewire/livewire.git",
|
||||
"reference": "d04a229058afa76116d0e39209943a8ea3a7f888"
|
||||
"reference": "774092003edb2670615ef09f3a9fbdd335d6d0d7"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/livewire/livewire/zipball/d04a229058afa76116d0e39209943a8ea3a7f888",
|
||||
"reference": "d04a229058afa76116d0e39209943a8ea3a7f888",
|
||||
"url": "https://api.github.com/repos/livewire/livewire/zipball/774092003edb2670615ef09f3a9fbdd335d6d0d7",
|
||||
"reference": "774092003edb2670615ef09f3a9fbdd335d6d0d7",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -6422,7 +6425,7 @@
|
||||
"description": "A front-end framework for Laravel.",
|
||||
"support": {
|
||||
"issues": "https://github.com/livewire/livewire/issues",
|
||||
"source": "https://github.com/livewire/livewire/tree/v3.5.9"
|
||||
"source": "https://github.com/livewire/livewire/tree/v3.5.10"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -6430,20 +6433,20 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2024-10-01T12:40:06+00:00"
|
||||
"time": "2024-10-10T20:03:38+00:00"
|
||||
},
|
||||
{
|
||||
"name": "maennchen/zipstream-php",
|
||||
"version": "3.1.0",
|
||||
"version": "3.1.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/maennchen/ZipStream-PHP.git",
|
||||
"reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1"
|
||||
"reference": "6187e9cc4493da94b9b63eb2315821552015fca9"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1",
|
||||
"reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1",
|
||||
"url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/6187e9cc4493da94b9b63eb2315821552015fca9",
|
||||
"reference": "6187e9cc4493da94b9b63eb2315821552015fca9",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -6499,19 +6502,15 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/maennchen/ZipStream-PHP/issues",
|
||||
"source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0"
|
||||
"source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/maennchen",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://opencollective.com/zipstream",
|
||||
"type": "open_collective"
|
||||
}
|
||||
],
|
||||
"time": "2023-06-21T14:59:35+00:00"
|
||||
"time": "2024-10-10T12:33:01+00:00"
|
||||
},
|
||||
{
|
||||
"name": "mailgun/mailgun-php",
|
||||
@ -6802,16 +6801,16 @@
|
||||
},
|
||||
{
|
||||
"name": "mindee/mindee",
|
||||
"version": "v1.11.1",
|
||||
"version": "v1.12.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mindee/mindee-api-php.git",
|
||||
"reference": "1ffbbdab646202f6b9547d12399841feba75c68e"
|
||||
"reference": "4088e5d7e5aef72162dbea10386c64c3f071aa23"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/mindee/mindee-api-php/zipball/1ffbbdab646202f6b9547d12399841feba75c68e",
|
||||
"reference": "1ffbbdab646202f6b9547d12399841feba75c68e",
|
||||
"url": "https://api.github.com/repos/mindee/mindee-api-php/zipball/4088e5d7e5aef72162dbea10386c64c3f071aa23",
|
||||
"reference": "4088e5d7e5aef72162dbea10386c64c3f071aa23",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -6850,9 +6849,9 @@
|
||||
"description": "Mindee Client Library for PHP",
|
||||
"support": {
|
||||
"issues": "https://github.com/mindee/mindee-api-php/issues",
|
||||
"source": "https://github.com/mindee/mindee-api-php/tree/v1.11.1"
|
||||
"source": "https://github.com/mindee/mindee-api-php/tree/v1.12.0"
|
||||
},
|
||||
"time": "2024-09-20T14:46:42+00:00"
|
||||
"time": "2024-10-11T15:47:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "mollie/mollie-api-php",
|
||||
@ -7675,16 +7674,16 @@
|
||||
},
|
||||
{
|
||||
"name": "nikic/php-parser",
|
||||
"version": "v5.3.0",
|
||||
"version": "v5.3.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nikic/PHP-Parser.git",
|
||||
"reference": "3abf7425cd284141dc5d8d14a9ee444de3345d1a"
|
||||
"reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/3abf7425cd284141dc5d8d14a9ee444de3345d1a",
|
||||
"reference": "3abf7425cd284141dc5d8d14a9ee444de3345d1a",
|
||||
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
|
||||
"reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -7727,9 +7726,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/nikic/PHP-Parser/issues",
|
||||
"source": "https://github.com/nikic/PHP-Parser/tree/v5.3.0"
|
||||
"source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
|
||||
},
|
||||
"time": "2024-09-29T13:56:26+00:00"
|
||||
"time": "2024-10-08T18:51:32+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nordigen/nordigen-php",
|
||||
@ -15196,16 +15195,16 @@
|
||||
},
|
||||
{
|
||||
"name": "turbo124/beacon",
|
||||
"version": "v2.0.2",
|
||||
"version": "v2.0.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/turbo124/beacon.git",
|
||||
"reference": "95f3de3bdcbb786329cd7050f319520588920466"
|
||||
"reference": "eb7ff81a49b2aa75d62459f36ad06b88181e1e00"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/turbo124/beacon/zipball/95f3de3bdcbb786329cd7050f319520588920466",
|
||||
"reference": "95f3de3bdcbb786329cd7050f319520588920466",
|
||||
"url": "https://api.github.com/repos/turbo124/beacon/zipball/eb7ff81a49b2aa75d62459f36ad06b88181e1e00",
|
||||
"reference": "eb7ff81a49b2aa75d62459f36ad06b88181e1e00",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -15252,9 +15251,9 @@
|
||||
"turbo124"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/turbo124/beacon/tree/v2.0.2"
|
||||
"source": "https://github.com/turbo124/beacon/tree/v2.0.3"
|
||||
},
|
||||
"time": "2024-06-27T01:23:05+00:00"
|
||||
"time": "2024-10-12T06:57:20+00:00"
|
||||
},
|
||||
{
|
||||
"name": "twig/intl-extra",
|
||||
@ -17458,35 +17457,35 @@
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-code-coverage",
|
||||
"version": "11.0.6",
|
||||
"version": "11.0.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
|
||||
"reference": "ebdffc9e09585dafa71b9bffcdb0a229d4704c45"
|
||||
"reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ebdffc9e09585dafa71b9bffcdb0a229d4704c45",
|
||||
"reference": "ebdffc9e09585dafa71b9bffcdb0a229d4704c45",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
|
||||
"reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-dom": "*",
|
||||
"ext-libxml": "*",
|
||||
"ext-xmlwriter": "*",
|
||||
"nikic/php-parser": "^5.1.0",
|
||||
"nikic/php-parser": "^5.3.1",
|
||||
"php": ">=8.2",
|
||||
"phpunit/php-file-iterator": "^5.0.1",
|
||||
"phpunit/php-file-iterator": "^5.1.0",
|
||||
"phpunit/php-text-template": "^4.0.1",
|
||||
"sebastian/code-unit-reverse-lookup": "^4.0.1",
|
||||
"sebastian/complexity": "^4.0.1",
|
||||
"sebastian/environment": "^7.2.0",
|
||||
"sebastian/lines-of-code": "^3.0.1",
|
||||
"sebastian/version": "^5.0.1",
|
||||
"sebastian/version": "^5.0.2",
|
||||
"theseer/tokenizer": "^1.2.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^11.0"
|
||||
"phpunit/phpunit": "^11.4.1"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-pcov": "PHP extension that provides line coverage",
|
||||
@ -17524,7 +17523,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/11.0.6"
|
||||
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -17532,7 +17531,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2024-08-22T04:37:56+00:00"
|
||||
"time": "2024-10-09T06:21:38+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-file-iterator",
|
||||
@ -17781,16 +17780,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpunit/phpunit",
|
||||
"version": "11.4.0",
|
||||
"version": "11.4.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
||||
"reference": "89fe0c530133c08f7fff89d3d727154e4e504925"
|
||||
"reference": "7875627f15f4da7e7f0823d1f323f7295a77334e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/89fe0c530133c08f7fff89d3d727154e4e504925",
|
||||
"reference": "89fe0c530133c08f7fff89d3d727154e4e504925",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/7875627f15f4da7e7f0823d1f323f7295a77334e",
|
||||
"reference": "7875627f15f4da7e7f0823d1f323f7295a77334e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -17861,7 +17860,7 @@
|
||||
"support": {
|
||||
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
||||
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
|
||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.0"
|
||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -17877,7 +17876,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-10-05T08:39:03+00:00"
|
||||
"time": "2024-10-08T15:38:37+00:00"
|
||||
},
|
||||
{
|
||||
"name": "react/cache",
|
||||
@ -19280,16 +19279,16 @@
|
||||
},
|
||||
{
|
||||
"name": "sebastian/version",
|
||||
"version": "5.0.1",
|
||||
"version": "5.0.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/version.git",
|
||||
"reference": "45c9debb7d039ce9b97de2f749c2cf5832a06ac4"
|
||||
"reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/version/zipball/45c9debb7d039ce9b97de2f749c2cf5832a06ac4",
|
||||
"reference": "45c9debb7d039ce9b97de2f749c2cf5832a06ac4",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
|
||||
"reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -19322,7 +19321,7 @@
|
||||
"support": {
|
||||
"issues": "https://github.com/sebastianbergmann/version/issues",
|
||||
"security": "https://github.com/sebastianbergmann/version/security/policy",
|
||||
"source": "https://github.com/sebastianbergmann/version/tree/5.0.1"
|
||||
"source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@ -19330,7 +19329,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2024-07-03T05:13:08+00:00"
|
||||
"time": "2024-10-09T05:16:32+00:00"
|
||||
},
|
||||
{
|
||||
"name": "spatie/backtrace",
|
||||
|
Loading…
Reference in New Issue
Block a user