├── .distignore ├── .editorconfig ├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── command.php ├── composer.json ├── inc └── class-command.php └── wp-cli.yml /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/ext/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/ext/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/ext/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/ext/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/ext/HEAD/README.md -------------------------------------------------------------------------------- /command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/ext/HEAD/command.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/ext/HEAD/composer.json -------------------------------------------------------------------------------- /inc/class-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/ext/HEAD/inc/class-command.php -------------------------------------------------------------------------------- /wp-cli.yml: -------------------------------------------------------------------------------- 1 | require: 2 | - command.php --------------------------------------------------------------------------------