update project

This commit is contained in:
root
2026-05-30 01:11:35 -04:00
parent 3a0628ecc7
commit 2225f6bc72
9743 changed files with 1122482 additions and 59 deletions
@@ -0,0 +1,17 @@
<?php
if (PHP_VERSION_ID < 80500) {
exit(0);
}
$file = __DIR__.'/../vendor/laravel/framework/config/database.php';
if (! file_exists($file)) {
exit(0);
}
file_put_contents($file, str_replace(
'PDO::MYSQL_ATTR_SSL_CA',
'(PHP_VERSION_ID >= 80500 ? Pdo\\Mysql::ATTR_SSL_CA : PDO::MYSQL_ATTR_SSL_CA)',
file_get_contents($file),
));