- Add videodb PHP/MySQL media collection manager (Blu-ray, DVD, CD) - Dockerfile: PHP 8.1 + Apache with GD/mysqli/exif extensions - docker-compose.yml: app on port 6761 + MySQL 8.0 with health checks - docker-entrypoint.sh: auto-generates config.inc.php from env vars, waits for MySQL, initializes DB schema idempotently - init-db.php: CLI schema installer using app's own prefix_query() logic - Persistent volumes for DB, cache, and cover images Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
645 B
PHP
24 lines
645 B
PHP
<?php
|
|
|
|
$config = PhpCsFixer\Config::create()
|
|
->setRiskyAllowed(true)
|
|
->setRules([
|
|
'@PSR2' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
'declare_strict_types' => false,
|
|
'concat_space' => ['spacing'=>'one'],
|
|
'php_unit_test_case_static_method_calls' => ['call_type' => 'self'],
|
|
'ordered_imports' => true,
|
|
// 'phpdoc_align' => ['align'=>'vertical'],
|
|
// 'native_function_invocation' => true,
|
|
])
|
|
->setFinder(
|
|
PhpCsFixer\Finder::create()
|
|
->in(__DIR__.'/src')
|
|
->in(__DIR__.'/tests')
|
|
->name('*.php')
|
|
)
|
|
;
|
|
|
|
return $config;
|