├── .distignore ├── .editorconfig ├── .github └── workflows │ ├── code-quality.yml │ └── release.yml ├── .gitignore ├── .release-please-manifest.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── command.php ├── composer.json ├── phpcs.xml.dist ├── phpstan.neon.dist ├── rector.php ├── release-please-config.json ├── src ├── Exception │ └── ProcessFailedException.php ├── Model │ ├── Alias.php │ └── ProcessResult.php └── MoveCommand.php └── wp-cli.yml /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/.github/workflows/code-quality.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/.gitignore -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.1.1" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/README.md -------------------------------------------------------------------------------- /command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/command.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/rector.php -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/release-please-config.json -------------------------------------------------------------------------------- /src/Exception/ProcessFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/src/Exception/ProcessFailedException.php -------------------------------------------------------------------------------- /src/Model/Alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/src/Model/Alias.php -------------------------------------------------------------------------------- /src/Model/ProcessResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/src/Model/ProcessResult.php -------------------------------------------------------------------------------- /src/MoveCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlemoine/wp-cli-move/HEAD/src/MoveCommand.php -------------------------------------------------------------------------------- /wp-cli.yml: -------------------------------------------------------------------------------- 1 | require: 2 | - command.php 3 | --------------------------------------------------------------------------------