OXIESEC PANEL
- Current Dir:
/
/
opt
/
.wp-cli
/
packages
/
vendor
/
wp-cli
/
checksum-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
157 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
117 bytes
03/20/2024 11:17:28 AM
rw-r--r--
📄
CONTRIBUTING.md
538 bytes
03/20/2024 11:17:28 AM
rw-r--r--
📄
LICENSE
1.13 KB
03/20/2024 11:17:28 AM
rw-r--r--
📄
README.md
6.2 KB
02/24/2025 12:05:14 PM
rw-r--r--
📄
behat.yml
126 bytes
03/20/2024 11:17:28 AM
rw-r--r--
📄
checksum-command.php
483 bytes
03/20/2024 11:17:28 AM
rw-r--r--
📄
composer.json
1.76 KB
09/06/2025 12:29:48 PM
rw-r--r--
📁
features
-
09/06/2025 12:29:48 PM
rwxr-xr-x
📄
phpcs.xml.dist
2.48 KB
03/20/2024 11:17:28 AM
rw-r--r--
📁
src
-
09/06/2025 12:29:48 PM
rwxr-xr-x
📄
wp-cli.yml
34 bytes
03/20/2024 11:17:28 AM
rw-r--r--
Editing: checksum-command.php
Close
<?php if ( ! class_exists( 'WP_CLI' ) ) { return; } $wpcli_checksum_autoloader = __DIR__ . '/vendor/autoload.php'; if ( file_exists( $wpcli_checksum_autoloader ) ) { require_once $wpcli_checksum_autoloader; } WP_CLI::add_command( 'core', 'Core_Command_Namespace' ); WP_CLI::add_command( 'core verify-checksums', 'Checksum_Core_Command' ); WP_CLI::add_command( 'plugin', 'Plugin_Command_Namespace' ); WP_CLI::add_command( 'plugin verify-checksums', 'Checksum_Plugin_Command' );