- Remove sidebar and toggle functionality - Add Bootstrap navbar with dropdown menus - Move navigation to top between header and content - Update menu rendering for Bootstrap dropdowns - Clean up unused files (header.mustache, sidebar.mustache, sidebar.js) - Add guide link with book icon in footer - Simplify layout structure - Remove duplicate code and fix syntax errors - Add .gitignore for node_modules and other temp files
21 lines
363 B
PHP
21 lines
363 B
PHP
<?php
|
|
|
|
use PhpCsFixer\Config;
|
|
|
|
$config = new Config();
|
|
|
|
$config->setRules([
|
|
'@Symfony' => true,
|
|
'binary_operator_spaces' => false,
|
|
'concat_space' => ['spacing' => 'one'],
|
|
'increment_style' => false,
|
|
'single_line_throw' => false,
|
|
'yoda_style' => false,
|
|
]);
|
|
|
|
$finder = $config->getFinder()
|
|
->in('src')
|
|
->in('test');
|
|
|
|
return $config;
|