Skip to content

Commit 4d6360f

Browse files
authored
Merge pull request #990 from HiEventsDev/develop
2 parents 662190c + 3abc0d1 commit 4d6360f

5 files changed

Lines changed: 283 additions & 4 deletions

File tree

backend/app/Models/OrderPaymentPlatformFee.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ protected function getCastMap(): array
1717
'application_fee_gross_amount' => 'float',
1818
'application_fee_net_amount' => 'float',
1919
'application_fee_vat_amount' => 'float',
20+
'application_fee_vat_rate' => 'float',
2021
];
2122
}
2223

backend/composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"require": {
99
"php": "^8.2",
1010
"ext-intl": "*",
11+
"ext-xmlwriter": "*",
1112
"barryvdh/laravel-dompdf": "^3.0",
1213
"brick/money": "^0.10.1",
1314
"doctrine/dbal": "^3.6",
@@ -28,7 +29,8 @@
2829
"spatie/laravel-data": "^4.15",
2930
"spatie/laravel-webhook-server": "^3.8",
3031
"stripe/stripe-php": "^17.0",
31-
"ext-xmlwriter": "*"
32+
"symfony/http-client": "^7.4",
33+
"symfony/postmark-mailer": "^7.4"
3234
},
3335
"suggest": {
3436
"ext-imagick": "Required for image dimension extraction and LQIP generation"

backend/composer.lock

Lines changed: 256 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/config/mail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
'transport' => 'failover',
8383
'mailers' => [
8484
'smtp',
85-
'log',
85+
'postmark',
8686
],
8787
],
8888
],
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
return new class extends Migration
8+
{
9+
public function up(): void
10+
{
11+
Schema::table('order_audit_logs', function (Blueprint $table) {
12+
$table->text('user_agent')->nullable()->change();
13+
});
14+
}
15+
16+
public function down(): void
17+
{
18+
Schema::table('order_audit_logs', function (Blueprint $table) {
19+
$table->string('user_agent')->nullable()->change();
20+
});
21+
}
22+
};

0 commit comments

Comments
 (0)