├── .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 ├── reset-password.feature └── steps │ ├── given.php │ ├── then.php │ └── when.php ├── utils ├── behat-tags.php └── get-package-require-from-composer.php └── wp-cli.yml /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | wp-cli.local.yml 3 | node_modules/ 4 | vendor/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/README.md -------------------------------------------------------------------------------- /bin/install-package-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/bin/install-package-tests.sh -------------------------------------------------------------------------------- /command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/command.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/composer.json -------------------------------------------------------------------------------- /features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /features/bootstrap/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/features/bootstrap/Process.php -------------------------------------------------------------------------------- /features/bootstrap/ProcessRun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/features/bootstrap/ProcessRun.php -------------------------------------------------------------------------------- /features/bootstrap/support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/features/bootstrap/support.php -------------------------------------------------------------------------------- /features/bootstrap/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/features/bootstrap/utils.php -------------------------------------------------------------------------------- /features/extra/no-mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/features/extra/no-mail.php -------------------------------------------------------------------------------- /features/reset-password.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/features/reset-password.feature -------------------------------------------------------------------------------- /features/steps/given.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/features/steps/given.php -------------------------------------------------------------------------------- /features/steps/then.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/features/steps/then.php -------------------------------------------------------------------------------- /features/steps/when.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/features/steps/when.php -------------------------------------------------------------------------------- /utils/behat-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/utils/behat-tags.php -------------------------------------------------------------------------------- /utils/get-package-require-from-composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/user-reset-password/HEAD/utils/get-package-require-from-composer.php -------------------------------------------------------------------------------- /wp-cli.yml: -------------------------------------------------------------------------------- 1 | require: 2 | - command.php 3 | --------------------------------------------------------------------------------