Updated lock

This commit is contained in:
David Bomba 2025-01-26 09:59:19 +11:00
parent a3221c0aa5
commit da9e12a592
5 changed files with 11 additions and 80 deletions

View File

@ -1 +1 @@
5.11.30
5.11.31

View File

@ -64,7 +64,6 @@
"hyvor/php-json-exporter": "^0.0.3",
"imdhemy/laravel-purchases": "^1.7",
"intervention/image": "^2.5",
"invoiceninja/admin-api": "dev-main",
"invoiceninja/einvoice": "dev-main",
"invoiceninja/inspector": "^3.0",
"invoiceninja/ubl_invoice": "^2",

82
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "2db1d9b7140ed367436ba6e01ebf11d7",
"content-hash": "0fd554859df6ddb888c01b8ea86ac68b",
"packages": [
{
"name": "adrienrn/php-mimetyper",
@ -4432,73 +4432,6 @@
],
"time": "2022-05-21T17:30:32+00:00"
},
{
"name": "invoiceninja/admin-api",
"version": "dev-main",
"source": {
"type": "git",
"url": "git@github.com:invoiceninja/admin-api.git",
"reference": "2fdd14b91f384393a40eade40c58523422dd624f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/invoiceninja/admin-api/zipball/2fdd14b91f384393a40eade40c58523422dd624f",
"reference": "2fdd14b91f384393a40eade40c58523422dd624f",
"shasum": ""
},
"require": {
"asm/php-ansible": "dev-main",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"illuminate/database": "^11.0",
"illuminate/support": "^11.0",
"imdhemy/laravel-purchases": "^1.7",
"php": "^8.2"
},
"require-dev": {
"larastan/larastan": "^3.0",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.0"
},
"default-branch": true,
"type": "library",
"extra": {
"laravel": {
"providers": [
"InvoiceNinja\\AdminApi\\Providers\\AdminApiServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"InvoiceNinja\\AdminApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InvoiceNinja\\AdminApi\\Tests\\": "tests/"
}
},
"license": [
"Elastic"
],
"authors": [
{
"name": "David Bomba",
"email": "turbo124@gmail.com"
}
],
"description": "API endpoints for the admin interface",
"support": {
"source": "https://github.com/invoiceninja/admin-api/tree/main",
"issues": "https://github.com/invoiceninja/admin-api/issues"
},
"time": "2025-01-24T09:44:31+00:00"
},
{
"name": "invoiceninja/einvoice",
"version": "dev-main",
@ -17901,16 +17834,16 @@
},
{
"name": "filp/whoops",
"version": "2.16.0",
"version": "2.17.0",
"source": {
"type": "git",
"url": "https://github.com/filp/whoops.git",
"reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
"reference": "075bc0c26631110584175de6523ab3f1652eb28e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
"reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
"url": "https://api.github.com/repos/filp/whoops/zipball/075bc0c26631110584175de6523ab3f1652eb28e",
"reference": "075bc0c26631110584175de6523ab3f1652eb28e",
"shasum": ""
},
"require": {
@ -17960,7 +17893,7 @@
],
"support": {
"issues": "https://github.com/filp/whoops/issues",
"source": "https://github.com/filp/whoops/tree/2.16.0"
"source": "https://github.com/filp/whoops/tree/2.17.0"
},
"funding": [
{
@ -17968,7 +17901,7 @@
"type": "github"
}
],
"time": "2024-09-25T12:00:00+00:00"
"time": "2025-01-25T12:00:00+00:00"
},
{
"name": "friendsofphp/php-cs-fixer",
@ -21277,7 +21210,6 @@
"asm/php-ansible": 20,
"beganovich/snappdf": 20,
"horstoeko/orderx": 20,
"invoiceninja/admin-api": 20,
"invoiceninja/einvoice": 20,
"socialiteproviders/apple": 20
},

View File

@ -17,8 +17,8 @@ return [
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
'app_version' => env('APP_VERSION', '5.11.30'),
'app_tag' => env('APP_TAG', '5.11.30'),
'app_version' => env('APP_VERSION', '5.11.31'),
'app_tag' => env('APP_TAG', '5.11.31'),
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),

View File

@ -9,7 +9,7 @@
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace Tests\Integration\Einvoice\Storecove;
namespace Tests\Integration\Einvoice;
use Tests\TestCase;
use App\Models\Client;