OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
email
/
vendor
/
guzzlehttp
/
promises
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/10/2024 05:20:01 AM
rwxr-xr-x
📄
.editorconfig
156 bytes
07/10/2024 05:20:00 AM
rw-r--r--
📁
.git
-
07/10/2024 05:28:09 AM
rwxr-xr-x
📄
.gitattributes
468 bytes
07/10/2024 05:20:00 AM
rw-r--r--
📁
.github
-
07/10/2024 05:25:02 AM
rwxr-xr-x
📄
.gitignore
112 bytes
07/10/2024 05:20:00 AM
rw-r--r--
📄
.php-cs-fixer.dist.php
734 bytes
07/10/2024 05:20:00 AM
rw-r--r--
📄
CHANGELOG.md
2.52 KB
07/10/2024 05:20:00 AM
rw-r--r--
📄
LICENSE
1.28 KB
07/10/2024 05:20:01 AM
rw-r--r--
📄
Makefile
202 bytes
07/10/2024 05:20:01 AM
rw-r--r--
📄
README.md
17.78 KB
07/10/2024 05:20:01 AM
rw-r--r--
📄
composer.json
1.51 KB
07/10/2024 05:20:00 AM
rw-r--r--
📄
phpstan-baseline.neon
187 bytes
07/10/2024 05:20:01 AM
rw-r--r--
📄
phpstan.neon.dist
96 bytes
07/10/2024 05:20:01 AM
rw-r--r--
📄
phpunit.xml.dist
604 bytes
07/10/2024 05:20:01 AM
rw-r--r--
📄
psalm.xml
459 bytes
07/10/2024 05:20:01 AM
rw-r--r--
📁
src
-
07/10/2024 05:22:33 AM
rwxr-xr-x
📁
tests
-
07/10/2024 05:22:36 AM
rwxr-xr-x
📁
vendor-bin
-
07/10/2024 05:25:03 AM
rwxr-xr-x
Editing: .php-cs-fixer.dist.php
Close
<?php $config = (new PhpCsFixer\Config()) ->setRiskyAllowed(true) ->setRules([ '@PHP71Migration:risky' => true, '@PHPUnit75Migration:risky' => true, '@Symfony' => true, 'global_namespace_import' => false, 'no_superfluous_phpdoc_tags' => [ 'allow_mixed' => true, ], 'phpdoc_annotation_without_dot' => false, 'phpdoc_summary' => false, 'phpdoc_to_comment' => false, 'single_line_throw' => false, 'yoda_style' => false, ]) ->setFinder( PhpCsFixer\Finder::create() ->in(__DIR__.'/src') ->in(__DIR__.'/tests') ->name('*.php') ) ; return $config;