Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.129.71.225
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
psy /
psysh /
Delete
Unzip
Name
Size
Permission
Date
Action
.github
[ DIR ]
drwxr-xr-x
2018-10-13 09:00
.phan
[ DIR ]
drwxr-xr-x
2018-10-13 09:00
bin
[ DIR ]
drwxr-xr-x
2018-10-13 09:00
src
[ DIR ]
drwxr-xr-x
2018-10-13 09:00
test
[ DIR ]
drwxr-xr-x
2018-10-13 09:00
vendor-bin
[ DIR ]
drwxr-xr-x
2018-10-13 09:00
.editorconfig
219
B
-rw-r--r--
2018-10-13 09:00
.gitignore
105
B
-rw-r--r--
2018-10-13 09:00
.php_cs
941
B
-rw-r--r--
2018-10-13 09:00
.styleci.yml
507
B
-rw-r--r--
2018-10-13 09:00
.travis.yml
1.04
KB
-rw-r--r--
2018-10-13 09:00
LICENSE
1.06
KB
-rw-r--r--
2018-10-13 09:00
Makefile
2.91
KB
-rw-r--r--
2018-10-13 09:00
README.md
2.11
KB
-rw-r--r--
2018-10-13 09:00
box.json.dist
201
B
-rw-r--r--
2018-10-13 09:00
composer.json
1.76
KB
-rw-r--r--
2018-10-13 09:00
phpunit.xml.dist
315
B
-rw-r--r--
2018-10-13 09:00
Save
Rename
<?php $finder = PhpCsFixer\Finder::create() ->in(__DIR__) ->name('.php_cs') ->name('build-manual') ->name('build-phar') ->exclude('build-vendor'); $header = <<<EOF This file is part of Psy Shell. (c) 2012-2018 Justin Hileman For the full copyright and license information, please view the LICENSE file that was distributed with this source code. EOF; return PhpCsFixer\Config::create() ->setRules(array( '@Symfony' => true, 'array_syntax' => array('syntax' => 'short'), 'binary_operator_spaces' => false, 'concat_space' => array('spacing' => 'one'), 'header_comment' => array('header' => $header), 'increment_style' => array('style' => 'post'), 'method_argument_space' => array('keep_multiple_spaces_after_comma' => true), 'ordered_imports' => true, 'pre_increment' => false, 'yoda_style' => false, )) ->setFinder($finder);