mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Updated lock
This commit is contained in:
parent
ef4319ab9c
commit
1c6ac06e63
@ -44,7 +44,6 @@
|
|||||||
"braintree/braintree_php": "^6.0",
|
"braintree/braintree_php": "^6.0",
|
||||||
"btcpayserver/btcpayserver-greenfield-php": "^2.6",
|
"btcpayserver/btcpayserver-greenfield-php": "^2.6",
|
||||||
"checkout/checkout-sdk-php": "^3.0",
|
"checkout/checkout-sdk-php": "^3.0",
|
||||||
"invoiceninja/ubl_invoice": "^2",
|
|
||||||
"doctrine/dbal": "^3.0",
|
"doctrine/dbal": "^3.0",
|
||||||
"eway/eway-rapid-php": "^1.3",
|
"eway/eway-rapid-php": "^1.3",
|
||||||
"fakerphp/faker": "^1.14",
|
"fakerphp/faker": "^1.14",
|
||||||
@ -55,10 +54,14 @@
|
|||||||
"halaxa/json-machine": "^0.7.0",
|
"halaxa/json-machine": "^0.7.0",
|
||||||
"hashids/hashids": "^4.0",
|
"hashids/hashids": "^4.0",
|
||||||
"hedii/laravel-gelf-logger": "^8",
|
"hedii/laravel-gelf-logger": "^8",
|
||||||
|
"horstoeko/orderx": "dev-master",
|
||||||
"horstoeko/zugferd": "^1",
|
"horstoeko/zugferd": "^1",
|
||||||
|
"hyvor/php-json-exporter": "^0.0.3",
|
||||||
"imdhemy/laravel-purchases": "^1.7",
|
"imdhemy/laravel-purchases": "^1.7",
|
||||||
"intervention/image": "^2.5",
|
"intervention/image": "^2.5",
|
||||||
|
"invoiceninja/einvoice": "dev-main",
|
||||||
"invoiceninja/inspector": "^2.0",
|
"invoiceninja/inspector": "^2.0",
|
||||||
|
"invoiceninja/ubl_invoice": "^2",
|
||||||
"josemmo/facturae-php": "^1.7",
|
"josemmo/facturae-php": "^1.7",
|
||||||
"laracasts/presenter": "^0.2.1",
|
"laracasts/presenter": "^0.2.1",
|
||||||
"laravel/framework": "^10",
|
"laravel/framework": "^10",
|
||||||
@ -88,6 +91,7 @@
|
|||||||
"setasign/fpdi": "^2.3",
|
"setasign/fpdi": "^2.3",
|
||||||
"socialiteproviders/apple": "dev-master",
|
"socialiteproviders/apple": "dev-master",
|
||||||
"socialiteproviders/microsoft": "^4.1",
|
"socialiteproviders/microsoft": "^4.1",
|
||||||
|
"spatie/laravel-data": "^4.6",
|
||||||
"sprain/swiss-qr-bill": "^4.3",
|
"sprain/swiss-qr-bill": "^4.3",
|
||||||
"square/square": "30.0.0.*",
|
"square/square": "30.0.0.*",
|
||||||
"stripe/stripe-php": "^12",
|
"stripe/stripe-php": "^12",
|
||||||
@ -100,10 +104,7 @@
|
|||||||
"twig/twig": "^3",
|
"twig/twig": "^3",
|
||||||
"twilio/sdk": "^6.40",
|
"twilio/sdk": "^6.40",
|
||||||
"webpatser/laravel-countries": "dev-master#75992ad",
|
"webpatser/laravel-countries": "dev-master#75992ad",
|
||||||
"wildbit/postmark-php": "^4.0",
|
"wildbit/postmark-php": "^4.0"
|
||||||
"hyvor/php-json-exporter": "^0.0.3",
|
|
||||||
"invoiceninja/einvoice": "dev-main",
|
|
||||||
"horstoeko/orderx": "dev-master"
|
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"php": "^8.2",
|
"php": "^8.2",
|
||||||
|
1439
composer.lock
generated
1439
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -42,7 +42,7 @@ class FatturaPATest extends TestCase
|
|||||||
$this->makeTestData();
|
$this->makeTestData();
|
||||||
|
|
||||||
|
|
||||||
$this->markTestSkipped('prevent running in CI');
|
// $this->markTestSkipped('prevent running in CI');
|
||||||
|
|
||||||
$this->withoutMiddleware(
|
$this->withoutMiddleware(
|
||||||
ThrottleRequests::class
|
ThrottleRequests::class
|
||||||
@ -56,9 +56,9 @@ class FatturaPATest extends TestCase
|
|||||||
$settings->address1 = 'Via Silvio Spaventa 108';
|
$settings->address1 = 'Via Silvio Spaventa 108';
|
||||||
$settings->city = 'Calcinelli';
|
$settings->city = 'Calcinelli';
|
||||||
|
|
||||||
$settings->state = 'PA';
|
$settings->state = 'PA';
|
||||||
|
|
||||||
// $settings->state = 'Perugia';
|
// $settings->state = 'Perugia';
|
||||||
$settings->postal_code = '61030';
|
$settings->postal_code = '61030';
|
||||||
$settings->country_id = '380';
|
$settings->country_id = '380';
|
||||||
$settings->currency_id = '3';
|
$settings->currency_id = '3';
|
||||||
@ -129,6 +129,9 @@ $settings->state = 'PA';
|
|||||||
$encoder = new Encode($fe);
|
$encoder = new Encode($fe);
|
||||||
$xml = $encoder->toXml();
|
$xml = $encoder->toXml();
|
||||||
|
|
||||||
|
|
||||||
|
nlog($xml);
|
||||||
|
|
||||||
$this->assertNotNull($xml);
|
$this->assertNotNull($xml);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user