OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
guzzlehttp
/
promises
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:32:57 AM
rwxr-xr-x
📄
.editorconfig
156 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📁
.git
-
08/12/2024 10:35:32 AM
rwxr-xr-x
📄
.gitattributes
468 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📁
.github
-
08/12/2024 10:34:09 AM
rwxr-xr-x
📄
.gitignore
112 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📄
.php-cs-fixer.dist.php
3.69 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
.travis.yml
452 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📄
CHANGELOG.md
2.09 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
LICENSE
1.28 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
Makefile
202 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📄
README.md
17.55 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
composer.json
1.42 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
phpstan-baseline.neon
903 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📄
phpstan.neon.dist
96 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📄
phpunit.xml.dist
604 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📄
psalm.xml
459 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📁
src
-
08/12/2024 10:33:19 AM
rwxr-xr-x
📁
tests
-
08/12/2024 10:33:20 AM
rwxr-xr-x
Editing: .php-cs-fixer.dist.php
Close
<?php $config = (new PhpCsFixer\Config()) ->setRiskyAllowed(true) ->setRules([ '@PSR2' => true, 'array_syntax' => ['syntax' => 'short'], 'binary_operator_spaces' => ['operators' => ['=>' => null]], 'blank_line_after_opening_tag' => true, 'class_attributes_separation' => ['elements' => ['method' => 'one']], 'compact_nullable_typehint' => true, 'concat_space' => ['spacing' => 'one'], 'declare_equal_normalize' => ['space' => 'none'], 'declare_strict_types' => false, 'dir_constant' => true, 'fully_qualified_strict_types' => true, 'function_to_constant' => true, 'function_typehint_space' => true, 'header_comment' => false, 'list_syntax' => ['syntax' => 'short'], 'lowercase_cast' => true, 'magic_method_casing' => true, 'modernize_types_casting' => true, 'multiline_comment_opening_closing' => true, //'native_constant_invocation' => true, 'no_alias_functions' => true, 'no_alternative_syntax' => true, 'no_blank_lines_after_phpdoc' => true, 'no_empty_comment' => true, 'no_empty_phpdoc' => true, 'no_extra_blank_lines' => true, 'no_leading_import_slash' => true, 'no_leading_namespace_whitespace' => true, 'no_spaces_around_offset' => true, 'no_superfluous_phpdoc_tags' => ['allow_mixed' => true], 'no_trailing_comma_in_singleline_array' => true, 'no_unneeded_control_parentheses' => true, 'no_unset_cast' => true, 'no_unused_imports' => true, 'no_useless_else' => true, 'no_useless_return' => true, 'no_whitespace_in_blank_line' => true, 'normalize_index_brace' => true, 'ordered_imports' => true, 'php_unit_construct' => true, 'php_unit_dedicate_assert' => ['target' => 'newest'], 'php_unit_dedicate_assert_internal_type' => ['target' => 'newest'], 'php_unit_expectation' => ['target' => 'newest'], 'php_unit_mock' => ['target' => 'newest'], 'php_unit_mock_short_will_return' => true, 'php_unit_no_expectation_annotation' => ['target' => 'newest'], 'php_unit_test_annotation' => ['style' => 'prefix'], //'php_unit_test_case_static_method_calls' => ['call_type' => 'self'], 'phpdoc_align' => ['align' => 'vertical'], //'phpdoc_line_span' => ['method' => 'multi', 'property' => 'multi'], 'phpdoc_no_package' => true, 'phpdoc_no_useless_inheritdoc' => true, 'phpdoc_scalar' => true, 'phpdoc_separation' => true, 'phpdoc_single_line_var_spacing' => true, 'phpdoc_trim' => true, 'phpdoc_trim_consecutive_blank_line_separation' => true, 'phpdoc_types' => true, 'phpdoc_types_order' => ['null_adjustment' => 'always_last', 'sort_algorithm' => 'none'], 'phpdoc_var_without_name' => true, 'return_assignment' => true, 'self_static_accessor' => true, 'short_scalar_cast' => true, 'single_trait_insert_per_statement' => true, 'standardize_not_equals' => true, //'static_lambda' => true, 'ternary_to_null_coalescing' => true, 'trim_array_spaces' => true, 'visibility_required' => ['elements' => ['property', 'method']], 'yoda_style' => false, // 'native_function_invocation' => true, 'braces' => ['allow_single_line_closure'=>true], ]) ->setFinder( PhpCsFixer\Finder::create() ->in(__DIR__.'/src') ->in(__DIR__.'/tests') ->name('*.php') ) ; return $config;