add projet

This commit is contained in:
root
2026-03-05 12:29:37 -05:00
parent 8d1eef8ba8
commit 23b7db1107
9109 changed files with 1106501 additions and 73 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),
));