mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Merge branch 'v5-develop' into fixes-for-storing-designs
This commit is contained in:
commit
64803dac14
@ -1 +1 @@
|
|||||||
5.5.101
|
5.5.102
|
@ -556,4 +556,29 @@ class RecurringInvoiceController extends BaseController
|
|||||||
|
|
||||||
return $this->itemResponse($recurring_invoice->fresh());
|
return $this->itemResponse($recurring_invoice->fresh());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function downloadPdf(string $invitation_key)
|
||||||
|
{
|
||||||
|
$invitation = $this->recurring_invoice_repo->getInvitationByKey($invitation_key);
|
||||||
|
|
||||||
|
if (! $invitation) {
|
||||||
|
return response()->json(['message' => 'no record found'], 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
$contact = $invitation->contact;
|
||||||
|
$invoice = $invitation->recurring_invoice;
|
||||||
|
|
||||||
|
$file = $invoice->service()->getInvoicePdf($contact);
|
||||||
|
|
||||||
|
$headers = ['Content-Type' => 'application/pdf'];
|
||||||
|
|
||||||
|
if (request()->input('inline') == 'true') {
|
||||||
|
$headers = array_merge($headers, ['Content-Disposition' => 'inline']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return response()->streamDownload(function () use ($file) {
|
||||||
|
echo Storage::get($file);
|
||||||
|
}, basename($file), $headers);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ class StoreDesignRequest extends Request
|
|||||||
return [
|
return [
|
||||||
//'name' => 'required',
|
//'name' => 'required',
|
||||||
'name' => 'required|unique:designs,name,null,null,company_id,'.auth()->user()->companyId(),
|
'name' => 'required|unique:designs,name,null,null,company_id,'.auth()->user()->companyId(),
|
||||||
'design' => 'required',
|
'design' => 'required|array',
|
||||||
'design.header' => 'required|min:1',
|
'design.header' => 'required|min:1',
|
||||||
'design.body' => 'required|min:1',
|
'design.body' => 'required|min:1',
|
||||||
'design.footer' => 'required|min:1',
|
'design.footer' => 'required|min:1',
|
||||||
|
@ -50,10 +50,10 @@ class InvoiceEmailActivity implements ShouldQueue
|
|||||||
$fields->user_id = $user_id;
|
$fields->user_id = $user_id;
|
||||||
$fields->invoice_id = $event->invitation->invoice->id;
|
$fields->invoice_id = $event->invitation->invoice->id;
|
||||||
$fields->company_id = $event->invitation->invoice->company_id;
|
$fields->company_id = $event->invitation->invoice->company_id;
|
||||||
$fields->client_contact_id = $event->invitation->invoice->client_contact_id;
|
$fields->client_contact_id = $event->invitation->client_contact_id;
|
||||||
$fields->client_id = $event->invitation->invoice->client_id;
|
$fields->client_id = $event->invitation->invoice->client_id;
|
||||||
$fields->activity_type_id = Activity::EMAIL_INVOICE;
|
$fields->activity_type_id = Activity::EMAIL_INVOICE;
|
||||||
|
|
||||||
$this->activity_repo->save($fields, $event->invitation->invoice, $event->event_vars);
|
$this->activity_repo->save($fields, $event->invitation, $event->event_vars);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,11 +47,12 @@ class InvoiceReminderEmailActivity implements ShouldQueue
|
|||||||
$user_id = array_key_exists('user_id', $event->event_vars) ? $event->event_vars['user_id'] : $event->invitation->invoice->user_id;
|
$user_id = array_key_exists('user_id', $event->event_vars) ? $event->event_vars['user_id'] : $event->invitation->invoice->user_id;
|
||||||
|
|
||||||
$fields->user_id = $user_id;
|
$fields->user_id = $user_id;
|
||||||
$fields->invoice_id = $event->invitation->invoice->id;
|
$fields->invoice_id = $event->invitation->invoice_id;
|
||||||
$fields->company_id = $event->invitation->invoice->company_id;
|
$fields->company_id = $event->invitation->company_id;
|
||||||
$fields->client_contact_id = $event->invitation->invoice->client_contact_id;
|
$fields->client_contact_id = $event->invitation->client_contact_id;
|
||||||
|
$fields->client_id = $event->invitation->invoice->client_id;
|
||||||
$fields->activity_type_id = $event->reminder;
|
$fields->activity_type_id = $event->reminder;
|
||||||
|
|
||||||
$this->activity_repo->save($fields, $event->invitation->invoice, $event->event_vars);
|
$this->activity_repo->save($fields, $event->invitation, $event->event_vars);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -49,11 +49,11 @@ class PurchaseOrderEmailActivity implements ShouldQueue
|
|||||||
|
|
||||||
$fields->user_id = $user_id;
|
$fields->user_id = $user_id;
|
||||||
$fields->purchase_order_id = $event->invitation->purchase_order->id;
|
$fields->purchase_order_id = $event->invitation->purchase_order->id;
|
||||||
$fields->company_id = $event->invitation->purchase_order->company_id;
|
$fields->company_id = $event->invitation->company_id;
|
||||||
$fields->vendor_contact_id = $event->invitation->purchase_order->vendor_contact_id;
|
$fields->vendor_contact_id = $event->invitation->vendor_contact_id;
|
||||||
$fields->vendor_id = $event->invitation->purchase_order->vendor_id;
|
$fields->vendor_id = $event->invitation->purchase_order->vendor_id;
|
||||||
$fields->activity_type_id = Activity::EMAIL_PURCHASE_ORDER;
|
$fields->activity_type_id = Activity::EMAIL_PURCHASE_ORDER;
|
||||||
|
|
||||||
$this->activity_repo->save($fields, $event->invitation->purchase_order, $event->event_vars);
|
$this->activity_repo->save($fields, $event->invitation, $event->event_vars);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -56,6 +56,6 @@ class QuoteEmailActivity implements ShouldQueue
|
|||||||
$fields->client_id = $event->invitation->quote->client_id;
|
$fields->client_id = $event->invitation->quote->client_id;
|
||||||
$fields->activity_type_id = Activity::EMAIL_QUOTE;
|
$fields->activity_type_id = Activity::EMAIL_QUOTE;
|
||||||
|
|
||||||
$this->activity_repo->save($fields, $event->invitation->quote, $event->event_vars);
|
$this->activity_repo->save($fields, $event->invitation, $event->event_vars);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,6 +28,6 @@ class RecurringInvoiceRepository extends BaseRepository
|
|||||||
|
|
||||||
public function getInvitationByKey($key) :?RecurringInvoiceInvitation
|
public function getInvitationByKey($key) :?RecurringInvoiceInvitation
|
||||||
{
|
{
|
||||||
return RecurringInvoiceInvitation::where('key', $key)->first();
|
return RecurringInvoiceInvitation::withTrashed()->where('key', $key)->first();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,11 +11,9 @@
|
|||||||
|
|
||||||
namespace App\Services\Payment;
|
namespace App\Services\Payment;
|
||||||
|
|
||||||
use App\Events\Payment\PaymentWasEmailed;
|
|
||||||
use App\Jobs\Payment\EmailPayment;
|
use App\Jobs\Payment\EmailPayment;
|
||||||
use App\Models\ClientContact;
|
use App\Models\ClientContact;
|
||||||
use App\Models\Payment;
|
use App\Models\Payment;
|
||||||
use App\Utils\Ninja;
|
|
||||||
|
|
||||||
class SendEmail
|
class SendEmail
|
||||||
{
|
{
|
||||||
@ -40,7 +38,7 @@ class SendEmail
|
|||||||
// if (!$invitation->contact->trashed() && $invitation->contact->email) {
|
// if (!$invitation->contact->trashed() && $invitation->contact->email) {
|
||||||
EmailPayment::dispatch($this->payment, $this->payment->company, $this->contact);
|
EmailPayment::dispatch($this->payment, $this->payment->company, $this->contact);
|
||||||
|
|
||||||
event(new PaymentWasEmailed($this->payment, $this->payment->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
|
// event(new PaymentWasEmailed($this->payment, $this->payment->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
|
||||||
// }
|
// }
|
||||||
// });
|
// });
|
||||||
// });
|
// });
|
||||||
|
@ -159,7 +159,10 @@
|
|||||||
"config": {
|
"config": {
|
||||||
"preferred-install": "dist",
|
"preferred-install": "dist",
|
||||||
"sort-packages": true,
|
"sort-packages": true,
|
||||||
"optimize-autoloader": true
|
"optimize-autoloader": true,
|
||||||
|
"allow-plugins": {
|
||||||
|
"php-http/discovery": true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true
|
"prefer-stable": true
|
||||||
|
333
composer.lock
generated
333
composer.lock
generated
@ -330,23 +330,27 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "aws/aws-crt-php",
|
"name": "aws/aws-crt-php",
|
||||||
"version": "v1.0.4",
|
"version": "v1.2.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/awslabs/aws-crt-php.git",
|
"url": "https://github.com/awslabs/aws-crt-php.git",
|
||||||
"reference": "f5c64ee7c5fce196e2519b3d9b7138649efe032d"
|
"reference": "1926277fc71d253dfa820271ac5987bdb193ccf5"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/f5c64ee7c5fce196e2519b3d9b7138649efe032d",
|
"url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/1926277fc71d253dfa820271ac5987bdb193ccf5",
|
||||||
"reference": "f5c64ee7c5fce196e2519b3d9b7138649efe032d",
|
"reference": "1926277fc71d253dfa820271ac5987bdb193ccf5",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.5"
|
"php": ">=5.5"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "^4.8.35|^5.6.3"
|
"phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
|
||||||
|
"yoast/phpunit-polyfills": "^1.0"
|
||||||
|
},
|
||||||
|
"suggest": {
|
||||||
|
"ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
@ -365,7 +369,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "AWS Common Runtime for PHP",
|
"description": "AWS Common Runtime for PHP",
|
||||||
"homepage": "http://aws.amazon.com/sdkforphp",
|
"homepage": "https://github.com/awslabs/aws-crt-php",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"amazon",
|
"amazon",
|
||||||
"aws",
|
"aws",
|
||||||
@ -374,22 +378,22 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/awslabs/aws-crt-php/issues",
|
"issues": "https://github.com/awslabs/aws-crt-php/issues",
|
||||||
"source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.4"
|
"source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.1"
|
||||||
},
|
},
|
||||||
"time": "2023-01-31T23:08:25+00:00"
|
"time": "2023-03-24T20:22:19+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "aws/aws-sdk-php",
|
"name": "aws/aws-sdk-php",
|
||||||
"version": "3.261.9",
|
"version": "3.263.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": "d91e6f89a6c41e8df859b0d313150386cfee6f6a"
|
"reference": "a0a528cb8e22dd0113f97ad0df527a6db32fe061"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/d91e6f89a6c41e8df859b0d313150386cfee6f6a",
|
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/a0a528cb8e22dd0113f97ad0df527a6db32fe061",
|
||||||
"reference": "d91e6f89a6c41e8df859b0d313150386cfee6f6a",
|
"reference": "a0a528cb8e22dd0113f97ad0df527a6db32fe061",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -468,9 +472,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.261.9"
|
"source": "https://github.com/aws/aws-sdk-php/tree/3.263.0"
|
||||||
},
|
},
|
||||||
"time": "2023-03-10T19:25:08+00:00"
|
"time": "2023-03-30T18:22:31+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "bacon/bacon-qr-code",
|
"name": "bacon/bacon-qr-code",
|
||||||
@ -2101,16 +2105,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "google/apiclient",
|
"name": "google/apiclient",
|
||||||
"version": "v2.13.0",
|
"version": "v2.13.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/googleapis/google-api-php-client.git",
|
"url": "https://github.com/googleapis/google-api-php-client.git",
|
||||||
"reference": "b653a338c5a658adf6df4bb2f44c2cc02fe7eb1d"
|
"reference": "895749dd4f14c349ca0b4aad020ff973f961e519"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/b653a338c5a658adf6df4bb2f44c2cc02fe7eb1d",
|
"url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/895749dd4f14c349ca0b4aad020ff973f961e519",
|
||||||
"reference": "b653a338c5a658adf6df4bb2f44c2cc02fe7eb1d",
|
"reference": "895749dd4f14c349ca0b4aad020ff973f961e519",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -2165,22 +2169,22 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/googleapis/google-api-php-client/issues",
|
"issues": "https://github.com/googleapis/google-api-php-client/issues",
|
||||||
"source": "https://github.com/googleapis/google-api-php-client/tree/v2.13.0"
|
"source": "https://github.com/googleapis/google-api-php-client/tree/v2.13.1"
|
||||||
},
|
},
|
||||||
"time": "2022-12-19T22:17:11+00:00"
|
"time": "2023-03-13T20:38:21+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "google/apiclient-services",
|
"name": "google/apiclient-services",
|
||||||
"version": "v0.290.0",
|
"version": "v0.292.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": "df7e6cbab08f60509b3f360d8286c194ad2930e2"
|
"reference": "6f79073f022686461af2d1a95b4fe91caaf947ec"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/df7e6cbab08f60509b3f360d8286c194ad2930e2",
|
"url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/6f79073f022686461af2d1a95b4fe91caaf947ec",
|
||||||
"reference": "df7e6cbab08f60509b3f360d8286c194ad2930e2",
|
"reference": "6f79073f022686461af2d1a95b4fe91caaf947ec",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -2209,9 +2213,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.290.0"
|
"source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.292.0"
|
||||||
},
|
},
|
||||||
"time": "2023-03-01T17:20:18+00:00"
|
"time": "2023-03-13T21:05:11+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "google/auth",
|
"name": "google/auth",
|
||||||
@ -3099,32 +3103,32 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "imdhemy/google-play-billing",
|
"name": "imdhemy/google-play-billing",
|
||||||
"version": "1.3.1",
|
"version": "1.3.2",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/imdhemy/google-play-billing.git",
|
"url": "https://github.com/imdhemy/google-play-billing.git",
|
||||||
"reference": "803b3357dfa31f89d062dbe757e10a482e262a35"
|
"reference": "ee302cdca72d9cde0aa27f855d76f638eb28b104"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/imdhemy/google-play-billing/zipball/803b3357dfa31f89d062dbe757e10a482e262a35",
|
"url": "https://api.github.com/repos/imdhemy/google-play-billing/zipball/ee302cdca72d9cde0aa27f855d76f638eb28b104",
|
||||||
"reference": "803b3357dfa31f89d062dbe757e10a482e262a35",
|
"reference": "ee302cdca72d9cde0aa27f855d76f638eb28b104",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"google/auth": "^1.15",
|
"google/auth": "^1.21",
|
||||||
"guzzlehttp/guzzle": "^6.5|^7.4",
|
"guzzlehttp/guzzle": "^6.5|^7.4",
|
||||||
"nesbot/carbon": "^2.41",
|
"nesbot/carbon": "^2.61",
|
||||||
"php": ">=7.4"
|
"php": ">=7.4"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"fakerphp/faker": "^1.16",
|
"fakerphp/faker": "^1.20",
|
||||||
"friendsofphp/php-cs-fixer": "^3.2",
|
"friendsofphp/php-cs-fixer": "^3.10",
|
||||||
"phpunit/phpunit": "^9.5",
|
"phpunit/phpunit": "^9.5",
|
||||||
"roave/security-advisories": "dev-latest",
|
"roave/security-advisories": "dev-latest",
|
||||||
"symfony/var-dumper": "^5.3",
|
"symfony/var-dumper": "^5.4",
|
||||||
"vimeo/psalm": "^4.12"
|
"vimeo/psalm": "^4.26"
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
@ -3145,9 +3149,9 @@
|
|||||||
"description": "Google Play Billing",
|
"description": "Google Play Billing",
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/imdhemy/google-play-billing/issues",
|
"issues": "https://github.com/imdhemy/google-play-billing/issues",
|
||||||
"source": "https://github.com/imdhemy/google-play-billing/tree/1.3.1"
|
"source": "https://github.com/imdhemy/google-play-billing/tree/1.3.2"
|
||||||
},
|
},
|
||||||
"time": "2022-12-09T09:08:03+00:00"
|
"time": "2023-03-28T05:40:14+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "imdhemy/laravel-purchases",
|
"name": "imdhemy/laravel-purchases",
|
||||||
@ -3589,16 +3593,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/framework",
|
"name": "laravel/framework",
|
||||||
"version": "v9.52.4",
|
"version": "v9.52.5",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laravel/framework.git",
|
"url": "https://github.com/laravel/framework.git",
|
||||||
"reference": "9239128cfb4d22afefb64060dfecf53e82987267"
|
"reference": "e14d28c0f9403630d13f308bb43f3d3cb73d6d67"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laravel/framework/zipball/9239128cfb4d22afefb64060dfecf53e82987267",
|
"url": "https://api.github.com/repos/laravel/framework/zipball/e14d28c0f9403630d13f308bb43f3d3cb73d6d67",
|
||||||
"reference": "9239128cfb4d22afefb64060dfecf53e82987267",
|
"reference": "e14d28c0f9403630d13f308bb43f3d3cb73d6d67",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -3783,7 +3787,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-02-22T14:38:06+00:00"
|
"time": "2023-03-28T18:03:54+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/serializable-closure",
|
"name": "laravel/serializable-closure",
|
||||||
@ -4244,16 +4248,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/commonmark",
|
"name": "league/commonmark",
|
||||||
"version": "2.3.9",
|
"version": "2.4.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/thephpleague/commonmark.git",
|
"url": "https://github.com/thephpleague/commonmark.git",
|
||||||
"reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5"
|
"reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c1e114f74e518daca2729ea8c4bf1167038fa4b5",
|
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
|
||||||
"reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5",
|
"reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -4289,7 +4293,7 @@
|
|||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-main": "2.4-dev"
|
"dev-main": "2.5-dev"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
@ -4346,7 +4350,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-02-15T14:07:24+00:00"
|
"time": "2023-03-24T15:16:10+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/config",
|
"name": "league/config",
|
||||||
@ -5016,16 +5020,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "microsoft/microsoft-graph",
|
"name": "microsoft/microsoft-graph",
|
||||||
"version": "1.89.0",
|
"version": "1.92.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/microsoftgraph/msgraph-sdk-php.git",
|
"url": "https://github.com/microsoftgraph/msgraph-sdk-php.git",
|
||||||
"reference": "b263ffdefdb83e8ec5e0d3cac0e56e0f7f30ea2f"
|
"reference": "11bdfe4692002ccd40a36faca844916109f1939e"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/microsoftgraph/msgraph-sdk-php/zipball/b263ffdefdb83e8ec5e0d3cac0e56e0f7f30ea2f",
|
"url": "https://api.github.com/repos/microsoftgraph/msgraph-sdk-php/zipball/11bdfe4692002ccd40a36faca844916109f1939e",
|
||||||
"reference": "b263ffdefdb83e8ec5e0d3cac0e56e0f7f30ea2f",
|
"reference": "11bdfe4692002ccd40a36faca844916109f1939e",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -5061,22 +5065,22 @@
|
|||||||
"homepage": "https://developer.microsoft.com/en-us/graph",
|
"homepage": "https://developer.microsoft.com/en-us/graph",
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/microsoftgraph/msgraph-sdk-php/issues",
|
"issues": "https://github.com/microsoftgraph/msgraph-sdk-php/issues",
|
||||||
"source": "https://github.com/microsoftgraph/msgraph-sdk-php/tree/1.89.0"
|
"source": "https://github.com/microsoftgraph/msgraph-sdk-php/tree/1.92.0"
|
||||||
},
|
},
|
||||||
"time": "2023-03-02T07:33:45+00:00"
|
"time": "2023-03-21T14:11:26+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "mollie/mollie-api-php",
|
"name": "mollie/mollie-api-php",
|
||||||
"version": "v2.50.1",
|
"version": "v2.52.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/mollie/mollie-api-php.git",
|
"url": "https://github.com/mollie/mollie-api-php.git",
|
||||||
"reference": "b2739c31a8a037d6fa1bf204e071c9dd4f465f38"
|
"reference": "f2f694ce26ef37362bdffe7b230b4d89f1c74e2d"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/mollie/mollie-api-php/zipball/b2739c31a8a037d6fa1bf204e071c9dd4f465f38",
|
"url": "https://api.github.com/repos/mollie/mollie-api-php/zipball/f2f694ce26ef37362bdffe7b230b4d89f1c74e2d",
|
||||||
"reference": "b2739c31a8a037d6fa1bf204e071c9dd4f465f38",
|
"reference": "f2f694ce26ef37362bdffe7b230b4d89f1c74e2d",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -5153,9 +5157,9 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/mollie/mollie-api-php/issues",
|
"issues": "https://github.com/mollie/mollie-api-php/issues",
|
||||||
"source": "https://github.com/mollie/mollie-api-php/tree/v2.50.1"
|
"source": "https://github.com/mollie/mollie-api-php/tree/v2.52.0"
|
||||||
},
|
},
|
||||||
"time": "2023-03-10T12:15:10+00:00"
|
"time": "2023-03-20T13:47:44+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "moneyphp/money",
|
"name": "moneyphp/money",
|
||||||
@ -6583,38 +6587,44 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "php-http/discovery",
|
"name": "php-http/discovery",
|
||||||
"version": "1.14.3",
|
"version": "1.15.2",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/php-http/discovery.git",
|
"url": "https://github.com/php-http/discovery.git",
|
||||||
"reference": "31d8ee46d0215108df16a8527c7438e96a4d7735"
|
"reference": "5cc428320191ac1d0b6520034c2dc0698628ced5"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/php-http/discovery/zipball/31d8ee46d0215108df16a8527c7438e96a4d7735",
|
"url": "https://api.github.com/repos/php-http/discovery/zipball/5cc428320191ac1d0b6520034c2dc0698628ced5",
|
||||||
"reference": "31d8ee46d0215108df16a8527c7438e96a4d7735",
|
"reference": "5cc428320191ac1d0b6520034c2dc0698628ced5",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
"composer-plugin-api": "^1.0|^2.0",
|
||||||
"php": "^7.1 || ^8.0"
|
"php": "^7.1 || ^8.0"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"nyholm/psr7": "<1.0"
|
"nyholm/psr7": "<1.0"
|
||||||
},
|
},
|
||||||
|
"provide": {
|
||||||
|
"php-http/async-client-implementation": "*",
|
||||||
|
"php-http/client-implementation": "*",
|
||||||
|
"psr/http-client-implementation": "*",
|
||||||
|
"psr/http-factory-implementation": "*",
|
||||||
|
"psr/http-message-implementation": "*"
|
||||||
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
"composer/composer": "^1.0.2|^2.0",
|
||||||
"graham-campbell/phpspec-skip-example-extension": "^5.0",
|
"graham-campbell/phpspec-skip-example-extension": "^5.0",
|
||||||
"php-http/httplug": "^1.0 || ^2.0",
|
"php-http/httplug": "^1.0 || ^2.0",
|
||||||
"php-http/message-factory": "^1.0",
|
"php-http/message-factory": "^1.0",
|
||||||
"phpspec/phpspec": "^5.1 || ^6.1"
|
"phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
|
||||||
|
"symfony/phpunit-bridge": "^6.2"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"type": "composer-plugin",
|
||||||
"php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"class": "Http\\Discovery\\Composer\\Plugin",
|
||||||
"dev-master": "1.9-dev"
|
"plugin-optional": true
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
@ -6631,7 +6641,7 @@
|
|||||||
"email": "mark.sagikazar@gmail.com"
|
"email": "mark.sagikazar@gmail.com"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "Finds installed HTTPlug implementations and PSR-7 message factories",
|
"description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
|
||||||
"homepage": "http://php-http.org",
|
"homepage": "http://php-http.org",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"adapter",
|
"adapter",
|
||||||
@ -6640,13 +6650,14 @@
|
|||||||
"factory",
|
"factory",
|
||||||
"http",
|
"http",
|
||||||
"message",
|
"message",
|
||||||
|
"psr17",
|
||||||
"psr7"
|
"psr7"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/php-http/discovery/issues",
|
"issues": "https://github.com/php-http/discovery/issues",
|
||||||
"source": "https://github.com/php-http/discovery/tree/1.14.3"
|
"source": "https://github.com/php-http/discovery/tree/1.15.2"
|
||||||
},
|
},
|
||||||
"time": "2022-07-11T14:04:40+00:00"
|
"time": "2023-02-11T08:28:41+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "php-http/guzzle7-adapter",
|
"name": "php-http/guzzle7-adapter",
|
||||||
@ -7657,16 +7668,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "psy/psysh",
|
"name": "psy/psysh",
|
||||||
"version": "v0.11.12",
|
"version": "v0.11.14",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/bobthecow/psysh.git",
|
"url": "https://github.com/bobthecow/psysh.git",
|
||||||
"reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7"
|
"reference": "8c2e264def7a8263a68ef6f0b55ce90b77d41e17"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
|
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/8c2e264def7a8263a68ef6f0b55ce90b77d41e17",
|
||||||
"reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
|
"reference": "8c2e264def7a8263a68ef6f0b55ce90b77d41e17",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -7727,9 +7738,9 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/bobthecow/psysh/issues",
|
"issues": "https://github.com/bobthecow/psysh/issues",
|
||||||
"source": "https://github.com/bobthecow/psysh/tree/v0.11.12"
|
"source": "https://github.com/bobthecow/psysh/tree/v0.11.14"
|
||||||
},
|
},
|
||||||
"time": "2023-01-29T21:24:40+00:00"
|
"time": "2023-03-28T03:41:01+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "pusher/pusher-php-server",
|
"name": "pusher/pusher-php-server",
|
||||||
@ -7931,12 +7942,12 @@
|
|||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/ramsey/uuid.git",
|
"url": "https://github.com/ramsey/uuid.git",
|
||||||
"reference": "bf2bee216a4379eaf62162307d62bb7850405fec"
|
"reference": "8e955307d32dc9b6992440ff81321d3cb09db75a"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/ramsey/uuid/zipball/bf2bee216a4379eaf62162307d62bb7850405fec",
|
"url": "https://api.github.com/repos/ramsey/uuid/zipball/8e955307d32dc9b6992440ff81321d3cb09db75a",
|
||||||
"reference": "bf2bee216a4379eaf62162307d62bb7850405fec",
|
"reference": "8e955307d32dc9b6992440ff81321d3cb09db75a",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -8016,7 +8027,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-02-07T16:14:23+00:00"
|
"time": "2023-03-27T22:05:11+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "razorpay/razorpay",
|
"name": "razorpay/razorpay",
|
||||||
@ -8348,32 +8359,31 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sentry/sentry",
|
"name": "sentry/sentry",
|
||||||
"version": "3.14.0",
|
"version": "3.17.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/getsentry/sentry-php.git",
|
"url": "https://github.com/getsentry/sentry-php.git",
|
||||||
"reference": "60dd3f74ab21cc2bf53f39bf7c342798bc185c23"
|
"reference": "95d2e932383cf684f77acff0d2a5aef5ad2f1933"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/getsentry/sentry-php/zipball/60dd3f74ab21cc2bf53f39bf7c342798bc185c23",
|
"url": "https://api.github.com/repos/getsentry/sentry-php/zipball/95d2e932383cf684f77acff0d2a5aef5ad2f1933",
|
||||||
"reference": "60dd3f74ab21cc2bf53f39bf7c342798bc185c23",
|
"reference": "95d2e932383cf684f77acff0d2a5aef5ad2f1933",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"ext-mbstring": "*",
|
"ext-mbstring": "*",
|
||||||
"guzzlehttp/promises": "^1.4",
|
"guzzlehttp/promises": "^1.4",
|
||||||
"guzzlehttp/psr7": "^1.8.4|^2.1.1",
|
|
||||||
"jean85/pretty-package-versions": "^1.5|^2.0.4",
|
"jean85/pretty-package-versions": "^1.5|^2.0.4",
|
||||||
"php": "^7.2|^8.0",
|
"php": "^7.2|^8.0",
|
||||||
"php-http/async-client-implementation": "^1.0",
|
"php-http/async-client-implementation": "^1.0",
|
||||||
"php-http/client-common": "^1.5|^2.0",
|
"php-http/client-common": "^1.5|^2.0",
|
||||||
"php-http/discovery": "^1.11, <1.15",
|
"php-http/discovery": "^1.15",
|
||||||
"php-http/httplug": "^1.1|^2.0",
|
"php-http/httplug": "^1.1|^2.0",
|
||||||
"php-http/message": "^1.5",
|
"php-http/message": "^1.5",
|
||||||
"psr/http-factory": "^1.0",
|
"psr/http-factory": "^1.0",
|
||||||
"psr/http-message-implementation": "^1.0",
|
"psr/http-factory-implementation": "^1.0",
|
||||||
"psr/log": "^1.0|^2.0|^3.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",
|
||||||
"symfony/polyfill-php80": "^1.17"
|
"symfony/polyfill-php80": "^1.17"
|
||||||
@ -8384,6 +8394,7 @@
|
|||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"friendsofphp/php-cs-fixer": "^2.19|3.4.*",
|
"friendsofphp/php-cs-fixer": "^2.19|3.4.*",
|
||||||
|
"guzzlehttp/psr7": "^1.8.4|^2.1.1",
|
||||||
"http-interop/http-factory-guzzle": "^1.0",
|
"http-interop/http-factory-guzzle": "^1.0",
|
||||||
"monolog/monolog": "^1.6|^2.0|^3.0",
|
"monolog/monolog": "^1.6|^2.0|^3.0",
|
||||||
"nikic/php-parser": "^4.10.3",
|
"nikic/php-parser": "^4.10.3",
|
||||||
@ -8436,7 +8447,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/getsentry/sentry-php/issues",
|
"issues": "https://github.com/getsentry/sentry-php/issues",
|
||||||
"source": "https://github.com/getsentry/sentry-php/tree/3.14.0"
|
"source": "https://github.com/getsentry/sentry-php/tree/3.17.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -8448,20 +8459,20 @@
|
|||||||
"type": "custom"
|
"type": "custom"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-03-05T21:31:25+00:00"
|
"time": "2023-03-26T21:54:06+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sentry/sentry-laravel",
|
"name": "sentry/sentry-laravel",
|
||||||
"version": "3.2.0",
|
"version": "3.3.2",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/getsentry/sentry-laravel.git",
|
"url": "https://github.com/getsentry/sentry-laravel.git",
|
||||||
"reference": "55ad9bd47766cec2d8978b8487c40e81a5a87d76"
|
"reference": "c502e8b9005990d03f5ec5cc852e98a27c26056d"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/55ad9bd47766cec2d8978b8487c40e81a5a87d76",
|
"url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/c502e8b9005990d03f5ec5cc852e98a27c26056d",
|
||||||
"reference": "55ad9bd47766cec2d8978b8487c40e81a5a87d76",
|
"reference": "c502e8b9005990d03f5ec5cc852e98a27c26056d",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -8469,7 +8480,7 @@
|
|||||||
"nyholm/psr7": "^1.0",
|
"nyholm/psr7": "^1.0",
|
||||||
"php": "^7.2 | ^8.0",
|
"php": "^7.2 | ^8.0",
|
||||||
"sentry/sdk": "^3.3",
|
"sentry/sdk": "^3.3",
|
||||||
"sentry/sentry": "^3.12",
|
"sentry/sentry": "^3.16",
|
||||||
"symfony/psr-http-message-bridge": "^1.0 | ^2.0"
|
"symfony/psr-http-message-bridge": "^1.0 | ^2.0"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
@ -8507,7 +8518,7 @@
|
|||||||
},
|
},
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
"license": [
|
"license": [
|
||||||
"Apache-2.0"
|
"MIT"
|
||||||
],
|
],
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
@ -8529,7 +8540,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/getsentry/sentry-laravel/issues",
|
"issues": "https://github.com/getsentry/sentry-laravel/issues",
|
||||||
"source": "https://github.com/getsentry/sentry-laravel/tree/3.2.0"
|
"source": "https://github.com/getsentry/sentry-laravel/tree/3.3.2"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -8541,7 +8552,7 @@
|
|||||||
"type": "custom"
|
"type": "custom"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-02-01T10:56:52+00:00"
|
"time": "2023-03-22T10:51:03+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "setasign/fpdf",
|
"name": "setasign/fpdf",
|
||||||
@ -8663,16 +8674,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "socialiteproviders/apple",
|
"name": "socialiteproviders/apple",
|
||||||
"version": "5.3.1",
|
"version": "5.4.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/SocialiteProviders/Apple.git",
|
"url": "https://github.com/SocialiteProviders/Apple.git",
|
||||||
"reference": "f3b9a435e302b1a3d9a50285e934a6be66b2754a"
|
"reference": "34ea564e4e409ad0ff74f5c97cfd3209499842ca"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/SocialiteProviders/Apple/zipball/f3b9a435e302b1a3d9a50285e934a6be66b2754a",
|
"url": "https://api.github.com/repos/SocialiteProviders/Apple/zipball/34ea564e4e409ad0ff74f5c97cfd3209499842ca",
|
||||||
"reference": "f3b9a435e302b1a3d9a50285e934a6be66b2754a",
|
"reference": "34ea564e4e409ad0ff74f5c97cfd3209499842ca",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -8730,7 +8741,7 @@
|
|||||||
"issues": "https://github.com/socialiteproviders/providers/issues",
|
"issues": "https://github.com/socialiteproviders/providers/issues",
|
||||||
"source": "https://github.com/socialiteproviders/providers"
|
"source": "https://github.com/socialiteproviders/providers"
|
||||||
},
|
},
|
||||||
"time": "2023-02-11T04:00:50+00:00"
|
"time": "2023-03-21T08:51:14+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "socialiteproviders/manager",
|
"name": "socialiteproviders/manager",
|
||||||
@ -14166,16 +14177,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "friendsofphp/php-cs-fixer",
|
"name": "friendsofphp/php-cs-fixer",
|
||||||
"version": "v3.15.0",
|
"version": "v3.15.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
|
"url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
|
||||||
"reference": "7306744c63e9cc1337894252b4eec4920c38b053"
|
"reference": "d48755372a113bddb99f749e34805d83f3acfe04"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/7306744c63e9cc1337894252b4eec4920c38b053",
|
"url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/d48755372a113bddb99f749e34805d83f3acfe04",
|
||||||
"reference": "7306744c63e9cc1337894252b4eec4920c38b053",
|
"reference": "d48755372a113bddb99f749e34805d83f3acfe04",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -14250,7 +14261,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
|
"issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
|
||||||
"source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.15.0"
|
"source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.15.1"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -14258,7 +14269,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-03-12T22:44:55+00:00"
|
"time": "2023-03-13T23:26:30+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "hamcrest/hamcrest-php",
|
"name": "hamcrest/hamcrest-php",
|
||||||
@ -15121,24 +15132,27 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpdocumentor/type-resolver",
|
"name": "phpdocumentor/type-resolver",
|
||||||
"version": "1.6.2",
|
"version": "1.7.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/phpDocumentor/TypeResolver.git",
|
"url": "https://github.com/phpDocumentor/TypeResolver.git",
|
||||||
"reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d"
|
"reference": "dfc078e8af9c99210337325ff5aa152872c98714"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
|
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
|
||||||
"reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
|
"reference": "dfc078e8af9c99210337325ff5aa152872c98714",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
"doctrine/deprecations": "^1.0",
|
||||||
"php": "^7.4 || ^8.0",
|
"php": "^7.4 || ^8.0",
|
||||||
"phpdocumentor/reflection-common": "^2.0"
|
"phpdocumentor/reflection-common": "^2.0",
|
||||||
|
"phpstan/phpdoc-parser": "^1.13"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"ext-tokenizer": "*",
|
"ext-tokenizer": "*",
|
||||||
|
"phpbench/phpbench": "^1.2",
|
||||||
"phpstan/extension-installer": "^1.1",
|
"phpstan/extension-installer": "^1.1",
|
||||||
"phpstan/phpstan": "^1.8",
|
"phpstan/phpstan": "^1.8",
|
||||||
"phpstan/phpstan-phpunit": "^1.1",
|
"phpstan/phpstan-phpunit": "^1.1",
|
||||||
@ -15170,22 +15184,67 @@
|
|||||||
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
|
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
|
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
|
||||||
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.2"
|
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
|
||||||
},
|
},
|
||||||
"time": "2022-10-14T12:47:21+00:00"
|
"time": "2023-03-27T19:02:04+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpstan/phpstan",
|
"name": "phpstan/phpdoc-parser",
|
||||||
"version": "1.10.6",
|
"version": "1.16.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/phpstan/phpstan.git",
|
"url": "https://github.com/phpstan/phpdoc-parser.git",
|
||||||
"reference": "50d089a3e0904b0fe7e2cf2d4fd37d427d64235a"
|
"reference": "e27e92d939e2e3636f0a1f0afaba59692c0bf571"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/50d089a3e0904b0fe7e2cf2d4fd37d427d64235a",
|
"url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/e27e92d939e2e3636f0a1f0afaba59692c0bf571",
|
||||||
"reference": "50d089a3e0904b0fe7e2cf2d4fd37d427d64235a",
|
"reference": "e27e92d939e2e3636f0a1f0afaba59692c0bf571",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": "^7.2 || ^8.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"php-parallel-lint/php-parallel-lint": "^1.2",
|
||||||
|
"phpstan/extension-installer": "^1.0",
|
||||||
|
"phpstan/phpstan": "^1.5",
|
||||||
|
"phpstan/phpstan-phpunit": "^1.1",
|
||||||
|
"phpstan/phpstan-strict-rules": "^1.0",
|
||||||
|
"phpunit/phpunit": "^9.5",
|
||||||
|
"symfony/process": "^5.2"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"PHPStan\\PhpDocParser\\": [
|
||||||
|
"src/"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"description": "PHPDoc parser with support for nullable, intersection and generic types",
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
|
||||||
|
"source": "https://github.com/phpstan/phpdoc-parser/tree/1.16.1"
|
||||||
|
},
|
||||||
|
"time": "2023-02-07T18:11:17+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "phpstan/phpstan",
|
||||||
|
"version": "1.10.9",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/phpstan/phpstan.git",
|
||||||
|
"reference": "9b13dafe3d66693d20fe5729c3dde1d31bb64703"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/9b13dafe3d66693d20fe5729c3dde1d31bb64703",
|
||||||
|
"reference": "9b13dafe3d66693d20fe5729c3dde1d31bb64703",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -15214,8 +15273,11 @@
|
|||||||
"static analysis"
|
"static analysis"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
|
"docs": "https://phpstan.org/user-guide/getting-started",
|
||||||
|
"forum": "https://github.com/phpstan/phpstan/discussions",
|
||||||
"issues": "https://github.com/phpstan/phpstan/issues",
|
"issues": "https://github.com/phpstan/phpstan/issues",
|
||||||
"source": "https://github.com/phpstan/phpstan/tree/1.10.6"
|
"security": "https://github.com/phpstan/phpstan/security/policy",
|
||||||
|
"source": "https://github.com/phpstan/phpstan-src"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -15231,7 +15293,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-03-09T16:55:12+00:00"
|
"time": "2023-03-30T08:58:01+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpunit/php-code-coverage",
|
"name": "phpunit/php-code-coverage",
|
||||||
@ -15553,16 +15615,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpunit/phpunit",
|
"name": "phpunit/phpunit",
|
||||||
"version": "9.6.5",
|
"version": "9.6.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
||||||
"reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5"
|
"reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/86e761949019ae83f49240b2f2123fb5ab3b2fc5",
|
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b65d59a059d3004a040c16a82e07bbdf6cfdd115",
|
||||||
"reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5",
|
"reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -15635,7 +15697,8 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
||||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.5"
|
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
|
||||||
|
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -15651,7 +15714,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2023-03-09T06:34:10+00:00"
|
"time": "2023-03-27T11:43:46+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sebastian/cli-parser",
|
"name": "sebastian/cli-parser",
|
||||||
|
@ -14,8 +14,8 @@ return [
|
|||||||
'require_https' => env('REQUIRE_HTTPS', true),
|
'require_https' => env('REQUIRE_HTTPS', true),
|
||||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||||
'app_version' => '5.5.101',
|
'app_version' => '5.5.102',
|
||||||
'app_tag' => '5.5.101',
|
'app_tag' => '5.5.102',
|
||||||
'minimum_client_version' => '5.0.16',
|
'minimum_client_version' => '5.0.16',
|
||||||
'terms_version' => '1.0.1',
|
'terms_version' => '1.0.1',
|
||||||
'api_secret' => env('API_SECRET', ''),
|
'api_secret' => env('API_SECRET', ''),
|
||||||
|
4
public/flutter_service_worker.js
vendored
4
public/flutter_service_worker.js
vendored
@ -4,7 +4,7 @@ const TEMP = 'flutter-temp-cache';
|
|||||||
const CACHE_NAME = 'flutter-app-cache';
|
const CACHE_NAME = 'flutter-app-cache';
|
||||||
const RESOURCES = {
|
const RESOURCES = {
|
||||||
"flutter.js": "a85fcf6324d3c4d3ae3be1ae4931e9c5",
|
"flutter.js": "a85fcf6324d3c4d3ae3be1ae4931e9c5",
|
||||||
"main.dart.js": "84bd3e1404df21c4fdd7fb53dbaf601d",
|
"main.dart.js": "c5661e06ae85e9793e071a7ba09b6169",
|
||||||
"canvaskit/profiling/canvaskit.js": "c21852696bc1cc82e8894d851c01921a",
|
"canvaskit/profiling/canvaskit.js": "c21852696bc1cc82e8894d851c01921a",
|
||||||
"canvaskit/profiling/canvaskit.wasm": "371bc4e204443b0d5e774d64a046eb99",
|
"canvaskit/profiling/canvaskit.wasm": "371bc4e204443b0d5e774d64a046eb99",
|
||||||
"canvaskit/canvaskit.js": "97937cb4c2c2073c968525a3e08c86a3",
|
"canvaskit/canvaskit.js": "97937cb4c2c2073c968525a3e08c86a3",
|
||||||
@ -298,7 +298,7 @@ const RESOURCES = {
|
|||||||
"assets/packages/material_design_icons_flutter/lib/fonts/materialdesignicons-webfont.ttf": "dd74f11e425603c7adb66100f161b2a5",
|
"assets/packages/material_design_icons_flutter/lib/fonts/materialdesignicons-webfont.ttf": "dd74f11e425603c7adb66100f161b2a5",
|
||||||
"assets/FontManifest.json": "087fb858dc3cbfbf6baf6a30004922f1",
|
"assets/FontManifest.json": "087fb858dc3cbfbf6baf6a30004922f1",
|
||||||
"assets/NOTICES": "3dad07993c5dfb9208eba18d3e2bda8e",
|
"assets/NOTICES": "3dad07993c5dfb9208eba18d3e2bda8e",
|
||||||
"/": "0e7706c33388e65ba4b2730374090043",
|
"/": "77eebcb0548da9bca45f30c251fb7777",
|
||||||
"icons/Icon-512.png": "0f9aff01367f0a0c69773d25ca16ef35",
|
"icons/Icon-512.png": "0f9aff01367f0a0c69773d25ca16ef35",
|
||||||
"icons/Icon-192.png": "bb1cf5f6982006952211c7c8404ffbed"
|
"icons/Icon-192.png": "bb1cf5f6982006952211c7c8404ffbed"
|
||||||
};
|
};
|
||||||
|
2
public/main.dart.js
vendored
2
public/main.dart.js
vendored
@ -185236,7 +185236,7 @@ A.mP.prototype={
|
|||||||
gaP(){var s=t.i,r=this.c
|
gaP(){var s=t.i,r=this.c
|
||||||
if(B.a.B(A.a(["1","61","2","3","26"],s),r))return B.T
|
if(B.a.B(A.a(["1","61","2","3","26"],s),r))return B.T
|
||||||
else if(B.a.B(A.a(["4","5","6","7","8","9","25","53","58","59","63","64","65","66","57"],s),r))return B.z
|
else if(B.a.B(A.a(["4","5","6","7","8","9","25","53","58","59","63","64","65","66","57"],s),r))return B.z
|
||||||
else if(B.a.B(A.a(["10","11","12","13","27","41","54"],s),r))return B.ag
|
else if(B.a.B(A.a(["10","11","12","13","27","41","54","138"],s),r))return B.ag
|
||||||
else if(B.a.B(A.a(["14","15","16","17","28","39","40","60"],s),r))return B.N
|
else if(B.a.B(A.a(["14","15","16","17","28","39","40","60"],s),r))return B.N
|
||||||
else if(B.a.B(A.a(["18","19","20","21","22","23","24","29"],s),r))return B.L
|
else if(B.a.B(A.a(["18","19","20","21","22","23","24","29"],s),r))return B.L
|
||||||
else if(B.a.B(A.a(["30","31","62","32","33"],s),r))return B.a9
|
else if(B.a.B(A.a(["30","31","62","32","33"],s),r))return B.a9
|
||||||
|
File diff suppressed because one or more lines are too long
2
public/main.foss.dart.js
vendored
2
public/main.foss.dart.js
vendored
@ -182914,7 +182914,7 @@ A.mN.prototype={
|
|||||||
gaP(){var s=t.i,r=this.c
|
gaP(){var s=t.i,r=this.c
|
||||||
if(B.a.B(A.a(["1","61","2","3","26"],s),r))return B.T
|
if(B.a.B(A.a(["1","61","2","3","26"],s),r))return B.T
|
||||||
else if(B.a.B(A.a(["4","5","6","7","8","9","25","53","58","59","63","64","65","66","57"],s),r))return B.z
|
else if(B.a.B(A.a(["4","5","6","7","8","9","25","53","58","59","63","64","65","66","57"],s),r))return B.z
|
||||||
else if(B.a.B(A.a(["10","11","12","13","27","41","54"],s),r))return B.af
|
else if(B.a.B(A.a(["10","11","12","13","27","41","54","138"],s),r))return B.af
|
||||||
else if(B.a.B(A.a(["14","15","16","17","28","39","40","60"],s),r))return B.N
|
else if(B.a.B(A.a(["14","15","16","17","28","39","40","60"],s),r))return B.N
|
||||||
else if(B.a.B(A.a(["18","19","20","21","22","23","24","29"],s),r))return B.L
|
else if(B.a.B(A.a(["18","19","20","21","22","23","24","29"],s),r))return B.L
|
||||||
else if(B.a.B(A.a(["30","31","62","32","33"],s),r))return B.a6
|
else if(B.a.B(A.a(["30","31","62","32","33"],s),r))return B.a6
|
||||||
|
File diff suppressed because one or more lines are too long
2
public/main.profile.dart.js
vendored
2
public/main.profile.dart.js
vendored
@ -349252,7 +349252,7 @@
|
|||||||
return B.EntityType_client;
|
return B.EntityType_client;
|
||||||
else if (B.JSArray_methods.contains$1(A._setArrayType(["4", "5", "6", "7", "8", "9", "25", "53", "58", "59", "63", "64", "65", "66", "57"], t1), t2))
|
else if (B.JSArray_methods.contains$1(A._setArrayType(["4", "5", "6", "7", "8", "9", "25", "53", "58", "59", "63", "64", "65", "66", "57"], t1), t2))
|
||||||
return B.EntityType_invoice;
|
return B.EntityType_invoice;
|
||||||
else if (B.JSArray_methods.contains$1(A._setArrayType(["10", "11", "12", "13", "27", "41", "54"], t1), t2))
|
else if (B.JSArray_methods.contains$1(A._setArrayType(["10", "11", "12", "13", "27", "41", "54", "138"], t1), t2))
|
||||||
return B.EntityType_payment;
|
return B.EntityType_payment;
|
||||||
else if (B.JSArray_methods.contains$1(A._setArrayType(["14", "15", "16", "17", "28", "39", "40", "60"], t1), t2))
|
else if (B.JSArray_methods.contains$1(A._setArrayType(["14", "15", "16", "17", "28", "39", "40", "60"], t1), t2))
|
||||||
return B.EntityType_credit;
|
return B.EntityType_credit;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user