添加forwardPorts端口并完善工作流

This commit is contained in:
2025-12-09 15:54:56 +08:00
parent 2b129e67c6
commit 26d5ff6a2d
9 changed files with 291 additions and 15 deletions

34
.php-cs-fixer.php Normal file
View File

@@ -0,0 +1,34 @@
<?php
/*
* PHP CS Fixer configuration
* This file defines the coding standards for the project
*/
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('vendor')
->exclude('node_modules')
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true);
$config = new PhpCsFixer\Config();
return $config
->setRules([
'@PSR12' => true,
'array_syntax' => ['syntax' => 'short'],
'ordered_imports' => ['sort_algorithm' => 'alpha'],
'no_unused_imports' => true,
'not_operator_with_successor_space' => false,
'trailing_comma_in_multiline' => true,
'phpdoc_scalar' => true,
'unary_operator_spaces' => true,
'binary_operator_spaces' => true,
'blank_line_before_statement' => [
'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'],
],
'phpdoc_single_line_var_spacing' => true,
'phpdoc_var_without_name' => true,
'single_trait_insert_per_statement' => true,
])
->setFinder($finder);