├── .distignore ├── .editorconfig ├── .gitignore ├── .travis.yml ├── README.md ├── bin └── install-package-tests.sh ├── command.php ├── composer.json ├── features ├── bootstrap │ ├── FeatureContext.php │ ├── Process.php │ ├── ProcessRun.php │ ├── support.php │ └── utils.php ├── extra │ └── no-mail.php ├── hook.feature └── steps │ ├── given.php │ ├── then.php │ └── when.php ├── inc └── class-hook-command.php └── utils └── behat-tags.php /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | wp-cli.local.yml 3 | node_modules/ 4 | vendor/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/README.md -------------------------------------------------------------------------------- /bin/install-package-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/bin/install-package-tests.sh -------------------------------------------------------------------------------- /command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/command.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/composer.json -------------------------------------------------------------------------------- /features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /features/bootstrap/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/features/bootstrap/Process.php -------------------------------------------------------------------------------- /features/bootstrap/ProcessRun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/features/bootstrap/ProcessRun.php -------------------------------------------------------------------------------- /features/bootstrap/support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/features/bootstrap/support.php -------------------------------------------------------------------------------- /features/bootstrap/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/features/bootstrap/utils.php -------------------------------------------------------------------------------- /features/extra/no-mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/features/extra/no-mail.php -------------------------------------------------------------------------------- /features/hook.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/features/hook.feature -------------------------------------------------------------------------------- /features/steps/given.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/features/steps/given.php -------------------------------------------------------------------------------- /features/steps/then.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/features/steps/then.php -------------------------------------------------------------------------------- /features/steps/when.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/features/steps/when.php -------------------------------------------------------------------------------- /inc/class-hook-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/inc/class-hook-command.php -------------------------------------------------------------------------------- /utils/behat-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/hook/HEAD/utils/behat-tags.php --------------------------------------------------------------------------------