├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── codeception.yml ├── commands-config.yml ├── composer.json ├── composer.lock ├── src ├── ChangeKeyTransform.php ├── ChangeNameTransform.php ├── Comment.php ├── Field.php ├── FieldMigration.php ├── HasMetaData.php ├── MetaDataType.php ├── OptionPage.php ├── Post.php ├── Term.php ├── Transform.php └── User.php ├── tests ├── _bootstrap.php ├── _support │ ├── Helper │ │ ├── Integration.php │ │ └── Unit.php │ ├── IntegrationTester.php │ ├── UnitTester.php │ └── _generated │ │ ├── IntegrationTesterActions.php │ │ └── UnitTesterActions.php ├── integration.suite.yml ├── integration │ ├── FieldMigrationTest.php │ └── _bootstrap.php ├── unit.suite.yml └── unit │ ├── ChangeKeyTransformCest.php │ ├── ChangeNameTransformCest.php │ ├── FieldCest.php │ ├── FieldMigrationCest.php │ └── _bootstrap.php └── wp-install.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | vendor 4 | tmp 5 | tests/_output 6 | *.bak -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/README.md -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/codeception.yml -------------------------------------------------------------------------------- /commands-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/commands-config.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/composer.lock -------------------------------------------------------------------------------- /src/ChangeKeyTransform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/ChangeKeyTransform.php -------------------------------------------------------------------------------- /src/ChangeNameTransform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/ChangeNameTransform.php -------------------------------------------------------------------------------- /src/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/Comment.php -------------------------------------------------------------------------------- /src/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/Field.php -------------------------------------------------------------------------------- /src/FieldMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/FieldMigration.php -------------------------------------------------------------------------------- /src/HasMetaData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/HasMetaData.php -------------------------------------------------------------------------------- /src/MetaDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/MetaDataType.php -------------------------------------------------------------------------------- /src/OptionPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/OptionPage.php -------------------------------------------------------------------------------- /src/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/Post.php -------------------------------------------------------------------------------- /src/Term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/Term.php -------------------------------------------------------------------------------- /src/Transform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/Transform.php -------------------------------------------------------------------------------- /src/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoutLogic/acf-migrations/HEAD/src/User.php -------------------------------------------------------------------------------- /tests/_bootstrap.php: -------------------------------------------------------------------------------- 1 |