Skip to content

Commit fa5ffac

Browse files
committed
Fix for deprecated methods
1 parent 3985909 commit fa5ffac

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

composer.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,17 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^8.2",
15+
"php": "^8.3",
1616
"ext-json": "*",
17-
"ext-mbstring": "*",
18-
"nesbot/carbon": "^2.17",
19-
"illuminate/http": "^10.0",
20-
"illuminate/support": "^10.0",
21-
"cego/elastic-apm-wrapper": "^1.0"
17+
"ext-mbstring": "*",
18+
"nesbot/carbon": "^2.17|^3.0",
19+
"illuminate/http": "^11.0",
20+
"illuminate/support": "^11.0"
2221
},
2322
"require-dev": {
24-
"orchestra/testbench": "^8.0",
25-
"doctrine/dbal": "^3.3",
26-
"cego/php-cs-fixer": "^1.0"
23+
"orchestra/testbench": "^9.0",
24+
"doctrine/dbal": "^4.3",
25+
"cego/php-cs-fixer": "^2.0"
2726
},
2827
"autoload": {
2928
"psr-4": {

publishable/migrations/2020_08_13_000000_create_request_logs_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function up()
2828
$table->mediumText('response_headers');
2929
$table->mediumText('response_body');
3030
$table->mediumText('response_exception');
31-
$table->unsignedDecimal('execution_time', 20, 10);
31+
$table->decimal('execution_time', 20, 10)->unsigned();
3232
$table->timestamps();
3333
});
3434
}

publishable/migrations/2024_03_14_152733_drop_all_tables.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function down()
4343
$table->mediumText('response_headers');
4444
$table->mediumText('response_body');
4545
$table->mediumText('response_exception');
46-
$table->unsignedDecimal('execution_time', 20, 10);
46+
$table->decimal('execution_time', 20, 10)->unsigned();
4747
$table->timestamps();
4848
$table->index('created_at');
4949
$table->index('status');

0 commit comments

Comments
 (0)