├── .editorconfig ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── behat-test.yml │ ├── integration-tests.yml │ └── unit-tests.yml ├── .gitignore ├── .phpcs.xml.dist ├── .travis.yml ├── .wp-env.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── behat.yml ├── bin └── install-wp-tests.sh ├── composer.json ├── features ├── find-domains.feature ├── insert-redirect.feature └── testing.feature ├── includes ├── class-capability.php ├── class-list-redirects.php ├── class-lookup.php ├── class-post-type.php ├── class-utils.php ├── class-wpcom-legacy-redirector-cli.php ├── class-wpcom-legacy-redirector-ui.php └── class-wpcom-legacy-redirector.php ├── js └── admin-add-redirects.js ├── phpunit-integration.xml.dist ├── phpunit.xml.dist ├── tests ├── Behat │ └── FeatureContext.php ├── Integration │ ├── CapabilityTest.php │ ├── LookupTest.php │ ├── PostTypeTest.php │ ├── RedirectsTest.php │ ├── TestCase.php │ └── bootstrap.php └── Unit │ ├── CapabilityTest.php │ ├── CliTest.php │ ├── MonkeyStubs.php │ ├── PreservableParamsTest.php │ ├── RedirectsTest.php │ ├── UtilsTest.php │ └── bootstrap.php ├── wpcom-helper.php └── wpcom-legacy-redirector.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/behat-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/.github/workflows/behat-test.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/.github/workflows/integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/.phpcs.xml.dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/.travis.yml -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/.wp-env.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/README.md -------------------------------------------------------------------------------- /behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/behat.yml -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/composer.json -------------------------------------------------------------------------------- /features/find-domains.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/features/find-domains.feature -------------------------------------------------------------------------------- /features/insert-redirect.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/features/insert-redirect.feature -------------------------------------------------------------------------------- /features/testing.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/features/testing.feature -------------------------------------------------------------------------------- /includes/class-capability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/includes/class-capability.php -------------------------------------------------------------------------------- /includes/class-list-redirects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/includes/class-list-redirects.php -------------------------------------------------------------------------------- /includes/class-lookup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/includes/class-lookup.php -------------------------------------------------------------------------------- /includes/class-post-type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/includes/class-post-type.php -------------------------------------------------------------------------------- /includes/class-utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/includes/class-utils.php -------------------------------------------------------------------------------- /includes/class-wpcom-legacy-redirector-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/includes/class-wpcom-legacy-redirector-cli.php -------------------------------------------------------------------------------- /includes/class-wpcom-legacy-redirector-ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/includes/class-wpcom-legacy-redirector-ui.php -------------------------------------------------------------------------------- /includes/class-wpcom-legacy-redirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/includes/class-wpcom-legacy-redirector.php -------------------------------------------------------------------------------- /js/admin-add-redirects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/js/admin-add-redirects.js -------------------------------------------------------------------------------- /phpunit-integration.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/phpunit-integration.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/Behat/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Behat/FeatureContext.php -------------------------------------------------------------------------------- /tests/Integration/CapabilityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Integration/CapabilityTest.php -------------------------------------------------------------------------------- /tests/Integration/LookupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Integration/LookupTest.php -------------------------------------------------------------------------------- /tests/Integration/PostTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Integration/PostTypeTest.php -------------------------------------------------------------------------------- /tests/Integration/RedirectsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Integration/RedirectsTest.php -------------------------------------------------------------------------------- /tests/Integration/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Integration/TestCase.php -------------------------------------------------------------------------------- /tests/Integration/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Integration/bootstrap.php -------------------------------------------------------------------------------- /tests/Unit/CapabilityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Unit/CapabilityTest.php -------------------------------------------------------------------------------- /tests/Unit/CliTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Unit/CliTest.php -------------------------------------------------------------------------------- /tests/Unit/MonkeyStubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Unit/MonkeyStubs.php -------------------------------------------------------------------------------- /tests/Unit/PreservableParamsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Unit/PreservableParamsTest.php -------------------------------------------------------------------------------- /tests/Unit/RedirectsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Unit/RedirectsTest.php -------------------------------------------------------------------------------- /tests/Unit/UtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Unit/UtilsTest.php -------------------------------------------------------------------------------- /tests/Unit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/tests/Unit/bootstrap.php -------------------------------------------------------------------------------- /wpcom-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/wpcom-helper.php -------------------------------------------------------------------------------- /wpcom-legacy-redirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/WPCOM-Legacy-Redirector/HEAD/wpcom-legacy-redirector.php --------------------------------------------------------------------------------