mirror of
https://github.com/Vateron-Media/XC_VM.git
synced 2026-09-26 12:01:57 +02:00
Introduce a committed Composer PSR-4 autoloader without changing class resolution behavior, as the foundation for the incremental PSR-4 migration. - src/composer.json: PSR-4 (XcVm\ -> ./, M3uParser\, Chrisyue\PhpM3u8\), platform php 8.1.33 (deploy runtime), optimize-autoloader/classmap-authoritative false (live path resolution, no class-map cache). autoload.files left empty: global functions are still loaded by existing require glue; moving them is deferred until that glue is removed. - src/vendor/ + src/composer.lock: committed (deploy path has no Composer); generated with 'composer update' from src/. Regenerate with dump-autoload. - src/bootstrap.php, tests/bootstrap.php: require vendor/autoload.php first, then the legacy autoload.php. - src/autoload.php: drop the igbinary disk cache (enableFileCache/saveCache/ shutdown handler/root-chown + bottom call); register at the END of the SPL queue (prepend=false) so Composer wins for XcVm\* and only still-global classes fall through to the in-memory scanner. - Makefile: add vendor to LB_DIRS so load-balancer archives ship the loader. - phpstan.dist.neon: exclude src/vendor/* from analysis. - .gitignore: document that src/vendor/ is intentionally tracked. - ci.yml: add composer-audit job (no-op until real require deps exist). Verified: php -l clean; Composer first / XC_Autoloader last in the SPL stack; tmp/cache/autoload_map no longer written; PHPUnit 292/292; PHPStan no errors.
79 lines
1.9 KiB
PHP
79 lines
1.9 KiB
PHP
<?php
|
|
|
|
$projectRoot = dirname(__DIR__);
|
|
$srcRoot = $projectRoot . '/src';
|
|
$flatRoot = $projectRoot;
|
|
|
|
if (file_exists($srcRoot . '/autoload.php')) {
|
|
$appRoot = $srcRoot;
|
|
} elseif (file_exists($flatRoot . '/autoload.php')) {
|
|
$appRoot = $flatRoot;
|
|
} else {
|
|
throw new RuntimeException('Unable to locate autoload.php in expected project paths.');
|
|
}
|
|
|
|
$tmpRoot = __DIR__ . '/.tmp';
|
|
$binRoot = $tmpRoot . '/bin';
|
|
|
|
if (!is_dir($tmpRoot)) {
|
|
mkdir($tmpRoot, 0775, true);
|
|
}
|
|
if (!is_dir($binRoot)) {
|
|
mkdir($binRoot, 0775, true);
|
|
}
|
|
|
|
$fakeBinary = $binRoot . '/fake_bin.sh';
|
|
if (!file_exists($fakeBinary)) {
|
|
file_put_contents($fakeBinary, "#!/bin/sh\nexit 0\n");
|
|
chmod($fakeBinary, 0755);
|
|
}
|
|
|
|
if (!defined('MAIN_HOME')) {
|
|
define('MAIN_HOME', $appRoot . '/');
|
|
}
|
|
|
|
if (!defined('PHP_BIN')) {
|
|
define('PHP_BIN', PHP_BINARY);
|
|
}
|
|
if (!defined('VOD_PATH')) {
|
|
define('VOD_PATH', $tmpRoot . '/vod/');
|
|
}
|
|
if (!is_dir(VOD_PATH)) {
|
|
mkdir(VOD_PATH, 0775, true);
|
|
}
|
|
|
|
foreach (array('40', '71', '80') as $version) {
|
|
$ffmpegConst = 'FFMPEG_BIN_' . $version;
|
|
$ffprobeConst = 'FFPROBE_BIN_' . $version;
|
|
if (!defined($ffmpegConst)) {
|
|
define($ffmpegConst, $fakeBinary);
|
|
}
|
|
if (!defined($ffprobeConst)) {
|
|
define($ffprobeConst, $fakeBinary);
|
|
}
|
|
}
|
|
|
|
if (!isset($_FILES)) {
|
|
$_FILES = array();
|
|
}
|
|
|
|
if (!function_exists('igbinary_serialize')) {
|
|
function igbinary_serialize($value) {
|
|
return serialize($value);
|
|
}
|
|
}
|
|
if (!function_exists('igbinary_unserialize')) {
|
|
function igbinary_unserialize($value) {
|
|
return unserialize($value);
|
|
}
|
|
}
|
|
|
|
require_once MAIN_HOME . 'vendor/autoload.php';
|
|
require_once MAIN_HOME . 'autoload.php';
|
|
require_once MAIN_HOME . 'core/Parsing/M3uParser/bootstrap.php';
|
|
require_once MAIN_HOME . 'core/Parsing/PhpM3u8/bootstrap.php';
|
|
require_once __DIR__ . '/Unit/M3uParser/ExtCustomTag.php';
|
|
|
|
// Test support: in-memory SQLite harness for DB-touching repositories/services.
|
|
require_once __DIR__ . '/Support/TestDb.php';
|