mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for project_id in exports
This commit is contained in:
parent
60329f4dd3
commit
87bbeeb67e
@ -224,7 +224,7 @@ class CompanyExport implements ShouldQueue
|
|||||||
|
|
||||||
$this->export_data['invoices'] = $this->company->invoices()->orderBy('number', 'DESC')->cursor()->map(function ($invoice) {
|
$this->export_data['invoices'] = $this->company->invoices()->orderBy('number', 'DESC')->cursor()->map(function ($invoice) {
|
||||||
$invoice = $this->transformBasicEntities($invoice);
|
$invoice = $this->transformBasicEntities($invoice);
|
||||||
$invoice = $this->transformArrayOfKeys($invoice, ['recurring_id','client_id', 'vendor_id', 'project_id', 'design_id', 'subscription_id','project_id']);
|
$invoice = $this->transformArrayOfKeys($invoice, ['recurring_id','client_id', 'vendor_id', 'project_id', 'design_id', 'subscription_id']);
|
||||||
$invoice->tax_data = '';
|
$invoice->tax_data = '';
|
||||||
|
|
||||||
return $invoice->makeVisible(['id',
|
return $invoice->makeVisible(['id',
|
||||||
|
148
composer.lock
generated
148
composer.lock
generated
@ -485,16 +485,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "aws/aws-sdk-php",
|
"name": "aws/aws-sdk-php",
|
||||||
"version": "3.293.7",
|
"version": "3.294.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/aws/aws-sdk-php.git",
|
"url": "https://github.com/aws/aws-sdk-php.git",
|
||||||
"reference": "3bf86ba8b9bbea2b298f89e6f5edc58de276690b"
|
"reference": "ab796bc3334e263b52b0b8c6de3edf057675cca4"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3bf86ba8b9bbea2b298f89e6f5edc58de276690b",
|
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/ab796bc3334e263b52b0b8c6de3edf057675cca4",
|
||||||
"reference": "3bf86ba8b9bbea2b298f89e6f5edc58de276690b",
|
"reference": "ab796bc3334e263b52b0b8c6de3edf057675cca4",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -574,9 +574,9 @@
|
|||||||
"support": {
|
"support": {
|
||||||
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
|
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
|
||||||
"issues": "https://github.com/aws/aws-sdk-php/issues",
|
"issues": "https://github.com/aws/aws-sdk-php/issues",
|
||||||
"source": "https://github.com/aws/aws-sdk-php/tree/3.293.7"
|
"source": "https://github.com/aws/aws-sdk-php/tree/3.294.0"
|
||||||
},
|
},
|
||||||
"time": "2023-12-08T19:11:21+00:00"
|
"time": "2023-12-14T19:14:39+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "bacon/bacon-qr-code",
|
"name": "bacon/bacon-qr-code",
|
||||||
@ -790,16 +790,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "carbonphp/carbon-doctrine-types",
|
"name": "carbonphp/carbon-doctrine-types",
|
||||||
"version": "2.0.0",
|
"version": "2.1.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
|
"url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
|
||||||
"reference": "67a77972b9f398ae7068dabacc39c08aeee170d5"
|
"reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/67a77972b9f398ae7068dabacc39c08aeee170d5",
|
"url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
|
||||||
"reference": "67a77972b9f398ae7068dabacc39c08aeee170d5",
|
"reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -839,7 +839,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
|
"issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
|
||||||
"source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.0.0"
|
"source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -855,7 +855,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-10-01T14:29:01+00:00"
|
"time": "2023-12-11T17:09:12+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "checkout/checkout-sdk-php",
|
"name": "checkout/checkout-sdk-php",
|
||||||
@ -2617,16 +2617,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "google/apiclient-services",
|
"name": "google/apiclient-services",
|
||||||
"version": "v0.326.1",
|
"version": "v0.327.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/googleapis/google-api-php-client-services.git",
|
"url": "https://github.com/googleapis/google-api-php-client-services.git",
|
||||||
"reference": "4e89c28c499f87eb517679e13356469896a119c6"
|
"reference": "51a11d4ff70dd9f60334525e71bf4cf592e6d282"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/4e89c28c499f87eb517679e13356469896a119c6",
|
"url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/51a11d4ff70dd9f60334525e71bf4cf592e6d282",
|
||||||
"reference": "4e89c28c499f87eb517679e13356469896a119c6",
|
"reference": "51a11d4ff70dd9f60334525e71bf4cf592e6d282",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -2655,9 +2655,9 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/googleapis/google-api-php-client-services/issues",
|
"issues": "https://github.com/googleapis/google-api-php-client-services/issues",
|
||||||
"source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.326.1"
|
"source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.327.0"
|
||||||
},
|
},
|
||||||
"time": "2023-12-04T01:18:18+00:00"
|
"time": "2023-12-11T00:52:16+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "google/auth",
|
"name": "google/auth",
|
||||||
@ -4114,47 +4114,47 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "jms/serializer",
|
"name": "jms/serializer",
|
||||||
"version": "3.28.0",
|
"version": "3.29.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/schmittjoh/serializer.git",
|
"url": "https://github.com/schmittjoh/serializer.git",
|
||||||
"reference": "5a5a03a71a28a480189c5a0ca95893c19f1d120c"
|
"reference": "111451f43abb448ce297361a8ab96a9591e848cd"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/schmittjoh/serializer/zipball/5a5a03a71a28a480189c5a0ca95893c19f1d120c",
|
"url": "https://api.github.com/repos/schmittjoh/serializer/zipball/111451f43abb448ce297361a8ab96a9591e848cd",
|
||||||
"reference": "5a5a03a71a28a480189c5a0ca95893c19f1d120c",
|
"reference": "111451f43abb448ce297361a8ab96a9591e848cd",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"doctrine/annotations": "^1.13 || ^2.0",
|
"doctrine/annotations": "^1.14 || ^2.0",
|
||||||
"doctrine/instantiator": "^1.0.3 || ^2.0",
|
"doctrine/instantiator": "^1.3.1 || ^2.0",
|
||||||
"doctrine/lexer": "^2.0 || ^3.0",
|
"doctrine/lexer": "^2.0 || ^3.0",
|
||||||
"jms/metadata": "^2.6",
|
"jms/metadata": "^2.6",
|
||||||
"php": "^7.2||^8.0",
|
"php": "^7.2 || ^8.0",
|
||||||
"phpstan/phpdoc-parser": "^0.4 || ^0.5 || ^1.0"
|
"phpstan/phpdoc-parser": "^1.20"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"doctrine/coding-standard": "^12.0",
|
"doctrine/coding-standard": "^12.0",
|
||||||
"doctrine/orm": "~2.1",
|
"doctrine/orm": "^2.14 || ^3.0",
|
||||||
"doctrine/persistence": "^1.3.3|^2.0|^3.0",
|
"doctrine/persistence": "^2.5.2 || ^3.0",
|
||||||
"doctrine/phpcr-odm": "^1.3|^2.0",
|
"doctrine/phpcr-odm": "^1.5.2 || ^2.0",
|
||||||
"ext-pdo_sqlite": "*",
|
"ext-pdo_sqlite": "*",
|
||||||
"jackalope/jackalope-doctrine-dbal": "^1.1.5",
|
"jackalope/jackalope-doctrine-dbal": "^1.3",
|
||||||
"ocramius/proxy-manager": "^1.0|^2.0",
|
"ocramius/proxy-manager": "^1.0 || ^2.0",
|
||||||
"phpbench/phpbench": "^1.0",
|
"phpbench/phpbench": "^1.0",
|
||||||
"phpstan/phpstan": "^1.0.2",
|
"phpstan/phpstan": "^1.0.2",
|
||||||
"phpunit/phpunit": "^8.5.21||^9.0||^10.0",
|
"phpunit/phpunit": "^8.5.21 || ^9.0 || ^10.0",
|
||||||
"psr/container": "^1.0|^2.0",
|
"psr/container": "^1.0 || ^2.0",
|
||||||
"symfony/dependency-injection": "^3.0|^4.0|^5.0|^6.0",
|
"symfony/dependency-injection": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
|
||||||
"symfony/expression-language": "^3.2|^4.0|^5.0|^6.0",
|
"symfony/expression-language": "^3.2 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
|
||||||
"symfony/filesystem": "^3.0|^4.0|^5.0|^6.0",
|
"symfony/filesystem": "^4.2 || ^5.0 || ^6.0 || ^7.0",
|
||||||
"symfony/form": "^3.0|^4.0|^5.0|^6.0",
|
"symfony/form": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
|
||||||
"symfony/translation": "^3.0|^4.0|^5.0|^6.0",
|
"symfony/translation": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
|
||||||
"symfony/uid": "^5.1|^6.0",
|
"symfony/uid": "^5.1 || ^6.0 || ^7.0",
|
||||||
"symfony/validator": "^3.1.9|^4.0|^5.0|^6.0",
|
"symfony/validator": "^3.1.9 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
|
||||||
"symfony/yaml": "^3.3|^4.0|^5.0|^6.0",
|
"symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
|
||||||
"twig/twig": "~1.34|~2.4|^3.0"
|
"twig/twig": "^1.34 || ^2.4 || ^3.0"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"doctrine/collections": "Required if you like to use doctrine collection types as ArrayCollection.",
|
"doctrine/collections": "Required if you like to use doctrine collection types as ArrayCollection.",
|
||||||
@ -4198,7 +4198,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/schmittjoh/serializer/issues",
|
"issues": "https://github.com/schmittjoh/serializer/issues",
|
||||||
"source": "https://github.com/schmittjoh/serializer/tree/3.28.0"
|
"source": "https://github.com/schmittjoh/serializer/tree/3.29.1"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -4206,7 +4206,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-08-03T14:43:08+00:00"
|
"time": "2023-12-14T15:25:09+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "josemmo/facturae-php",
|
"name": "josemmo/facturae-php",
|
||||||
@ -4366,16 +4366,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/framework",
|
"name": "laravel/framework",
|
||||||
"version": "v10.35.0",
|
"version": "v10.37.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laravel/framework.git",
|
"url": "https://github.com/laravel/framework.git",
|
||||||
"reference": "91ec2d92d2f6007e9084fe06438b99c91845da69"
|
"reference": "996375dd61f8c6e4ac262b57ed485655d71fcbdc"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laravel/framework/zipball/91ec2d92d2f6007e9084fe06438b99c91845da69",
|
"url": "https://api.github.com/repos/laravel/framework/zipball/996375dd61f8c6e4ac262b57ed485655d71fcbdc",
|
||||||
"reference": "91ec2d92d2f6007e9084fe06438b99c91845da69",
|
"reference": "996375dd61f8c6e4ac262b57ed485655d71fcbdc",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -4564,7 +4564,7 @@
|
|||||||
"issues": "https://github.com/laravel/framework/issues",
|
"issues": "https://github.com/laravel/framework/issues",
|
||||||
"source": "https://github.com/laravel/framework"
|
"source": "https://github.com/laravel/framework"
|
||||||
},
|
},
|
||||||
"time": "2023-12-05T14:50:33+00:00"
|
"time": "2023-12-13T20:10:58+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/prompts",
|
"name": "laravel/prompts",
|
||||||
@ -10009,16 +10009,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "setasign/fpdi",
|
"name": "setasign/fpdi",
|
||||||
"version": "v2.5.0",
|
"version": "v2.6.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Setasign/FPDI.git",
|
"url": "https://github.com/Setasign/FPDI.git",
|
||||||
"reference": "ecf0459643ec963febfb9a5d529dcd93656006a4"
|
"reference": "a6db878129ec6c7e141316ee71872923e7f1b7ad"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/Setasign/FPDI/zipball/ecf0459643ec963febfb9a5d529dcd93656006a4",
|
"url": "https://api.github.com/repos/Setasign/FPDI/zipball/a6db878129ec6c7e141316ee71872923e7f1b7ad",
|
||||||
"reference": "ecf0459643ec963febfb9a5d529dcd93656006a4",
|
"reference": "a6db878129ec6c7e141316ee71872923e7f1b7ad",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -10030,8 +10030,8 @@
|
|||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "~5.7",
|
"phpunit/phpunit": "~5.7",
|
||||||
"setasign/fpdf": "~1.8",
|
"setasign/fpdf": "~1.8.6",
|
||||||
"setasign/tfpdf": "~1.31",
|
"setasign/tfpdf": "~1.33",
|
||||||
"squizlabs/php_codesniffer": "^3.5",
|
"squizlabs/php_codesniffer": "^3.5",
|
||||||
"tecnickcom/tcpdf": "~6.2"
|
"tecnickcom/tcpdf": "~6.2"
|
||||||
},
|
},
|
||||||
@ -10069,7 +10069,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/Setasign/FPDI/issues",
|
"issues": "https://github.com/Setasign/FPDI/issues",
|
||||||
"source": "https://github.com/Setasign/FPDI/tree/v2.5.0"
|
"source": "https://github.com/Setasign/FPDI/tree/v2.6.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -10077,7 +10077,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-09-28T10:46:27+00:00"
|
"time": "2023-12-11T16:03:32+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "shopify/shopify-api",
|
"name": "shopify/shopify-api",
|
||||||
@ -16067,16 +16067,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpstan/phpstan",
|
"name": "phpstan/phpstan",
|
||||||
"version": "1.10.48",
|
"version": "1.10.50",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/phpstan/phpstan.git",
|
"url": "https://github.com/phpstan/phpstan.git",
|
||||||
"reference": "087ed4b5f4a7a6e8f3bbdfbfe98ce5c181380bc6"
|
"reference": "06a98513ac72c03e8366b5a0cb00750b487032e4"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/087ed4b5f4a7a6e8f3bbdfbfe98ce5c181380bc6",
|
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/06a98513ac72c03e8366b5a0cb00750b487032e4",
|
||||||
"reference": "087ed4b5f4a7a6e8f3bbdfbfe98ce5c181380bc6",
|
"reference": "06a98513ac72c03e8366b5a0cb00750b487032e4",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -16125,20 +16125,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-12-08T14:34:28+00:00"
|
"time": "2023-12-13T10:59:42+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpunit/php-code-coverage",
|
"name": "phpunit/php-code-coverage",
|
||||||
"version": "10.1.9",
|
"version": "10.1.10",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
|
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
|
||||||
"reference": "a56a9ab2f680246adcf3db43f38ddf1765774735"
|
"reference": "599109c8ca6bae97b23482d557d2874c25a65e59"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/a56a9ab2f680246adcf3db43f38ddf1765774735",
|
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/599109c8ca6bae97b23482d557d2874c25a65e59",
|
||||||
"reference": "a56a9ab2f680246adcf3db43f38ddf1765774735",
|
"reference": "599109c8ca6bae97b23482d557d2874c25a65e59",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -16195,7 +16195,7 @@
|
|||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
|
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
|
||||||
"security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
|
"security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
|
||||||
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.9"
|
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.10"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -16203,7 +16203,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-11-23T12:23:20+00:00"
|
"time": "2023-12-11T06:28:43+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpunit/php-file-iterator",
|
"name": "phpunit/php-file-iterator",
|
||||||
@ -16450,16 +16450,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpunit/phpunit",
|
"name": "phpunit/phpunit",
|
||||||
"version": "10.5.2",
|
"version": "10.5.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
||||||
"reference": "5aedff46afba98dddecaa12349ec044d9103d4fe"
|
"reference": "6fce887c71076a73f32fd3e0774a6833fc5c7f19"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/5aedff46afba98dddecaa12349ec044d9103d4fe",
|
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6fce887c71076a73f32fd3e0774a6833fc5c7f19",
|
||||||
"reference": "5aedff46afba98dddecaa12349ec044d9103d4fe",
|
"reference": "6fce887c71076a73f32fd3e0774a6833fc5c7f19",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -16531,7 +16531,7 @@
|
|||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
||||||
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
|
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
|
||||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.2"
|
"source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -16547,7 +16547,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-12-05T14:54:33+00:00"
|
"time": "2023-12-13T07:25:23+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sebastian/cli-parser",
|
"name": "sebastian/cli-parser",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user