OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
auth
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:32:56 AM
rwxr-xr-x
📄
.editorconfig
390 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📁
.git
-
08/12/2024 10:34:51 AM
rwxr-xr-x
📄
.gitattributes
343 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📁
.github
-
08/12/2024 10:34:53 AM
rwxr-xr-x
📄
.gitignore
127 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
.php-cs-fixer.dist.php
780 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
CHANGELOG.md
15.94 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
CODE_OF_CONDUCT.md
1.98 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
COPYING
11.27 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
LICENSE
10.21 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
README.md
11.68 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
SECURITY.md
336 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
VERSION
8 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
autoload.php
1.12 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
composer.json
1.22 KB
08/12/2024 10:32:53 AM
rw-r--r--
📄
phpstan.neon.dist
200 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
phpunit.xml.dist
684 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📄
renovate.json
76 bytes
08/12/2024 10:32:53 AM
rw-r--r--
📁
src
-
08/12/2024 10:33:42 AM
rwxr-xr-x
📁
tests
-
08/12/2024 10:36:16 AM
rwxr-xr-x
Editing: .php-cs-fixer.dist.php
Close
<?php return (new PhpCsFixer\Config()) ->setRules([ '@PSR2' => true, 'array_syntax' => ['syntax' => 'short'], 'concat_space' => ['spacing' => 'one'], 'no_unused_imports' => true, 'ordered_imports' => true, 'new_with_braces' => true, 'whitespace_after_comma_in_array' => true, 'method_argument_space' => [ 'keep_multiple_spaces_after_comma' => true, // for wordpress constants 'on_multiline' => 'ignore', // consider removing this someday ], 'return_type_declaration' => [ 'space_before' => 'none' ], 'single_quote' => true, ]) ->setFinder( PhpCsFixer\Finder::create() ->in(__DIR__) ) ;