OXIESEC PANEL
- Current Dir:
/
/
opt
/
.wp-cli
/
packages
/
vendor
/
wp-cli
/
doctor-command
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/20/2024 11:17:28 AM
rwxr-xr-x
📄
.actrc
129 bytes
03/20/2024 11:17:28 AM
rw-r--r--
📄
.distignore
85 bytes
03/20/2024 11:17:28 AM
rw-r--r--
📄
.editorconfig
591 bytes
03/20/2024 11:17:28 AM
rw-r--r--
📁
.git
-
09/06/2025 12:29:48 PM
rwxr-xr-x
📁
.github
-
03/20/2024 11:17:28 AM
rwxr-xr-x
📄
.gitignore
69 bytes
03/20/2024 11:17:28 AM
rw-r--r--
📄
LICENSE.md
1.03 KB
03/20/2024 11:17:28 AM
rw-r--r--
📄
README.md
10.08 KB
09/06/2025 12:29:48 PM
rw-r--r--
📄
behat.yml
126 bytes
09/06/2025 12:29:48 PM
rw-r--r--
📁
bin
-
03/20/2024 11:17:28 AM
rwxr-xr-x
📄
composer.json
2.25 KB
09/06/2025 12:29:48 PM
rw-r--r--
📄
doctor-command.php
267 bytes
09/06/2025 12:29:48 PM
rw-r--r--
📄
doctor.yml
934 bytes
03/20/2024 11:17:28 AM
rw-r--r--
📁
features
-
09/06/2025 12:29:48 PM
rwxr-xr-x
📄
phpcs.xml.dist
1.71 KB
09/06/2025 12:29:48 PM
rw-r--r--
📁
src
-
09/06/2025 12:29:48 PM
rwxr-xr-x
📄
wp-cli.yml
32 bytes
09/06/2025 12:29:48 PM
rw-r--r--
Editing: phpcs.xml.dist
Close
<?xml version="1.0"?> <ruleset name="WP-CLI-doctor"> <description>Custom ruleset for WP-CLI doctor-command</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"/> <!-- Strip the filepaths down to the relevant bit. --> <arg name="basepath" value="./"/> <!-- Check up to 8 files simultaneously. --> <arg name="parallel" value="8"/> <!-- ############################################################################# USE THE WP_CLI_CS RULESET ############################################################################# --> <rule ref="WP_CLI_CS"> <!-- Ignore namespace prefix for now, package should be ported to PSR-4. --> <exclude name="WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedNamespaceFound"/> <!-- Ignore underscore prefix for base class members. --> <exclude name="PSR2.Classes.PropertyDeclaration.Underscore"/> </rule> <!-- ############################################################################# 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="7.2-"/> </ruleset>