├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ └── tests.yml ├── .gitignore ├── README.md ├── bin └── php-cs-fixer.bat ├── composer.json ├── phpunit.bat ├── phpunit.xml ├── pint.json ├── resources └── blueprints │ └── default.yaml ├── src ├── AssetContainerMigrator.php ├── CollectionMigrator.php ├── Commands │ ├── Command.php │ ├── MigrateAssetContainer.php │ ├── MigrateCollection.php │ ├── MigrateFieldset.php │ ├── MigrateForm.php │ ├── MigrateGlobalSet.php │ ├── MigrateGroups.php │ ├── MigratePages.php │ ├── MigrateRoles.php │ ├── MigrateSettings.php │ ├── MigrateSite.php │ ├── MigrateTaxonomy.php │ ├── MigrateTheme.php │ └── MigrateUser.php ├── Concerns │ ├── GetsFieldsetHandles.php │ ├── GetsSettings.php │ ├── MigratesContent.php │ ├── MigratesFieldsetsToBlueprints.php │ ├── MigratesFile.php │ ├── MigratesFlattenedFieldsetSchema.php │ ├── MigratesLocalizedContent.php │ ├── MigratesRoles.php │ ├── MigratesRoute.php │ ├── PreparesPathFolder.php │ ├── PreparesPhpCsFixer.php │ ├── SubmitsStats.php │ └── ThrowsFinalWarnings.php ├── Configurator.php ├── ContentMigrator.php ├── Exceptions │ ├── AlreadyExistsException.php │ ├── EmptyValueException.php │ ├── FilesystemException.php │ ├── InvalidEmailException.php │ ├── MigratorErrorException.php │ ├── MigratorSkippedException.php │ ├── MigratorWarningsException.php │ └── NotFoundException.php ├── FieldsetMigrator.php ├── FormMigrator.php ├── GlobalSetMigrator.php ├── GroupsMigrator.php ├── Migrator.php ├── PagesMigrator.php ├── RolesMigrator.php ├── Router.php ├── ServiceProvider.php ├── SettingsMigrator.php ├── TaxonomyMigrator.php ├── ThemeMigrator.php ├── UUID.php ├── UserMigrator.php └── YAML.php └── tests ├── ConfiguratorTest.php ├── ContentMigratorTest.php ├── Fakes └── FakeUUID.php ├── Fixtures ├── assets │ ├── harry-potter-screenplay.txt │ └── img │ │ ├── coffee-mug.jpg │ │ └── stetson.jpg ├── config │ └── configurator-test.php ├── routes │ └── web.php ├── site-localized │ ├── content │ │ ├── assets │ │ │ └── main.yaml │ │ ├── collections │ │ │ ├── blog │ │ │ │ ├── 2017-07-31.english-fire.md │ │ │ │ ├── _2017-03-08.spring-wonderful-spring.md │ │ │ │ ├── folder.yaml │ │ │ │ └── fr │ │ │ │ │ └── 2017-07-31.english-fire.md │ │ │ └── things │ │ │ │ ├── _bear-spray.md │ │ │ │ ├── candle.md │ │ │ │ └── folder.yaml │ │ ├── globals │ │ │ ├── footer.yaml │ │ │ ├── fr │ │ │ │ └── global.yaml │ │ │ └── global.yaml │ │ ├── pages │ │ │ ├── 1.about │ │ │ │ ├── 1.about-sub-page │ │ │ │ │ ├── fr.index.md │ │ │ │ │ └── index.md │ │ │ │ ├── 2.about-sub-page │ │ │ │ │ └── index.md │ │ │ │ ├── 3.about-sub-page │ │ │ │ │ ├── fr.index.md │ │ │ │ │ └── index.md │ │ │ │ ├── fr.index.md │ │ │ │ └── index.md │ │ │ ├── 10.tenth-page-naturally-sorted │ │ │ │ └── index.md │ │ │ ├── 2.blog │ │ │ │ └── index.md │ │ │ ├── 3.gallery │ │ │ │ ├── 1.gallery-sub-page │ │ │ │ │ ├── 1.gallery-sub-sub-page │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── fr.index.md │ │ │ │ │ └── index.md │ │ │ │ ├── fr.index.md │ │ │ │ └── index.md │ │ │ ├── 4.things │ │ │ │ └── index.md │ │ │ ├── 5.contact │ │ │ │ └── index.md │ │ │ ├── 6.only-english │ │ │ │ ├── fr.index.md │ │ │ │ └── index.md │ │ │ ├── 8.published-in-both │ │ │ │ └── index.md │ │ │ ├── _7.only-french │ │ │ │ ├── fr.index.md │ │ │ │ └── index.md │ │ │ ├── _9.published-in-neither │ │ │ │ └── index.md │ │ │ ├── fr.index.md │ │ │ └── index.md │ │ └── taxonomies │ │ │ ├── tags.yaml │ │ │ └── tags │ │ │ ├── coffee.yaml │ │ │ ├── harry-potter.yaml │ │ │ ├── smells.yaml │ │ │ └── spring.yaml │ ├── settings │ │ ├── addons │ │ │ └── .gitkeep │ │ ├── assets.yaml │ │ ├── caching.yaml │ │ ├── cp.yaml │ │ ├── debug.yaml │ │ ├── email.yaml │ │ ├── fieldsets │ │ │ ├── about.yaml │ │ │ ├── content.yaml │ │ │ ├── footer.yaml │ │ │ ├── gallery.yaml │ │ │ ├── globals.yaml │ │ │ ├── tag.yaml │ │ │ └── things.yaml │ │ ├── formsets │ │ │ └── contact.yaml │ │ ├── routes.yaml │ │ ├── search.yaml │ │ ├── system.yaml │ │ ├── theming.yaml │ │ ├── users.yaml │ │ └── users │ │ │ ├── groups.yaml │ │ │ └── roles.yaml │ ├── storage │ │ └── .gitkeep │ ├── themes │ │ └── redwood │ │ │ ├── .gitignore │ │ │ ├── css │ │ │ ├── redwood.css │ │ │ └── redwood.css.map │ │ │ ├── gulpfile.js │ │ │ ├── js │ │ │ ├── jabbascripts.js │ │ │ ├── redwood.js │ │ │ └── redwood.js.map │ │ │ ├── layouts │ │ │ ├── default.html │ │ │ └── feed.html │ │ │ ├── meta.yaml │ │ │ ├── package.json │ │ │ ├── partials │ │ │ ├── article-footer.html │ │ │ ├── block.html │ │ │ ├── nav.html │ │ │ ├── pagination.html │ │ │ └── post-meta.html │ │ │ ├── sass │ │ │ ├── components │ │ │ │ ├── gallery.scss │ │ │ │ ├── nav.scss │ │ │ │ ├── tags.scss │ │ │ │ ├── tiles.scss │ │ │ │ └── zoom.scss │ │ │ ├── core │ │ │ │ ├── base.scss │ │ │ │ ├── fonts.scss │ │ │ │ ├── layout.scss │ │ │ │ └── settings.scss │ │ │ ├── elements │ │ │ │ ├── forms.scss │ │ │ │ └── typography.scss │ │ │ └── redwood.scss │ │ │ ├── settings │ │ │ └── macros.yaml │ │ │ └── templates │ │ │ ├── about.html │ │ │ ├── blog │ │ │ ├── hero-post.html │ │ │ ├── index.html │ │ │ ├── long_form.html │ │ │ ├── post.html │ │ │ ├── taxonomies.html │ │ │ └── taxonomy.html │ │ │ ├── contact.html │ │ │ ├── default.html │ │ │ ├── errors │ │ │ └── 404.html │ │ │ ├── feeds │ │ │ ├── blog.html │ │ │ └── things.html │ │ │ ├── gallery.html │ │ │ ├── home.html │ │ │ ├── page.html │ │ │ ├── search.html │ │ │ ├── thing.html │ │ │ └── things.html │ └── users │ │ ├── .gitkeep │ │ └── jlo.yaml └── site │ ├── content │ ├── assets │ │ └── main.yaml │ ├── collections │ │ ├── blog │ │ │ ├── 2017-01-18.my-first-day.md │ │ │ ├── 2017-03-08.spring-wonderful-spring.md │ │ │ ├── 2017-07-31.fire-fire-looking-forward-to-hearing-from-you.md │ │ │ ├── 2017-09-28.what-i-did-last-summer.md │ │ │ ├── _2017-01-19.paperwork-and-snowshoeing.md │ │ │ └── folder.yaml │ │ ├── favs │ │ │ ├── 1.red-shirt.md │ │ │ ├── 2.blue-shirt.md │ │ │ ├── folder.yaml │ │ │ └── purple-shirt.md │ │ └── things │ │ │ ├── bear-spray.md │ │ │ ├── candle.md │ │ │ ├── firestarter.md │ │ │ ├── flask.md │ │ │ ├── folder.yaml │ │ │ ├── mittens.md │ │ │ ├── sleeping-bag.md │ │ │ ├── survival-knife.md │ │ │ ├── tent.md │ │ │ └── wand.md │ ├── globals │ │ ├── global.yaml │ │ └── social.yaml │ ├── pages │ │ ├── 1.about │ │ │ ├── 1.about-sub-page │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── 2.blog │ │ │ └── index.md │ │ ├── 3.gallery │ │ │ ├── 1.gallery-sub-page │ │ │ │ ├── 1.gallery-sub-sub-page │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── 2.contact │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── 4.things │ │ │ ├── 1.contact │ │ │ │ └── index.md │ │ │ └── index.md │ │ ├── 5.contact │ │ │ └── index.md │ │ └── index.md │ └── taxonomies │ │ ├── colours.yaml │ │ ├── colours │ │ ├── blue.yaml │ │ └── red.yaml │ │ ├── tags.yaml │ │ └── tags │ │ ├── fall.yaml │ │ └── spring.yaml │ ├── settings │ ├── assets.yaml │ ├── cp.yaml │ ├── fieldsets │ │ ├── about.yaml │ │ ├── address.yaml │ │ ├── asset_fields.yaml │ │ ├── diary_entry.yaml │ │ ├── gallery.yaml │ │ ├── globals.yaml │ │ ├── home.yaml │ │ ├── kitchen.yaml │ │ ├── long_form.yaml │ │ ├── post.yaml │ │ ├── social_media.yaml │ │ ├── tag.yaml │ │ ├── things.yaml │ │ └── user.yaml │ ├── formsets │ │ └── contact.yaml │ ├── routes.yaml │ ├── system.yaml │ ├── theming.yaml │ ├── users.yaml │ └── users │ │ ├── groups.yaml │ │ └── roles.yaml │ ├── storage │ └── forms │ │ └── contact │ │ ├── 1576159501.8263.yaml │ │ └── 1576246600.8053.yaml │ ├── themes │ └── redwood │ │ ├── .gitignore │ │ ├── css │ │ ├── redwood.css │ │ └── redwood.css.map │ │ ├── gulpfile.js │ │ ├── js │ │ ├── jabbascripts.js │ │ ├── redwood.js │ │ └── redwood.js.map │ │ ├── layouts │ │ ├── default.html │ │ └── feed.html │ │ ├── meta.yaml │ │ ├── package.json │ │ ├── partials │ │ ├── articles │ │ │ └── article-footer.html │ │ ├── block.html │ │ ├── nav.html │ │ ├── pagination.html │ │ └── post-meta.html │ │ ├── sass │ │ ├── components │ │ │ ├── gallery.scss │ │ │ ├── nav.scss │ │ │ ├── tags.scss │ │ │ ├── tiles.scss │ │ │ └── zoom.scss │ │ ├── core │ │ │ ├── base.scss │ │ │ ├── fonts.scss │ │ │ ├── layout.scss │ │ │ └── settings.scss │ │ ├── elements │ │ │ ├── forms.scss │ │ │ └── typography.scss │ │ └── redwood.scss │ │ ├── settings │ │ └── macros.yaml │ │ └── templates │ │ ├── about.html │ │ ├── auth │ │ ├── login.html │ │ ├── password-forgot.html │ │ ├── password-reset.html │ │ └── register.html │ │ ├── blog │ │ ├── hero-post.html │ │ ├── index.html │ │ ├── long_form.html │ │ ├── post.html │ │ ├── taxonomies.html │ │ └── taxonomy.html │ │ ├── contact.html │ │ ├── default.html │ │ ├── errors │ │ └── 404.html │ │ ├── feeds │ │ ├── blog.html │ │ └── things.html │ │ ├── gallery.html │ │ ├── home.html │ │ ├── not-antlers.blade.php │ │ ├── page.html │ │ ├── search.html │ │ ├── thing.html │ │ ├── things.html │ │ └── user │ │ ├── account.html │ │ ├── index.html │ │ └── profile.html │ └── users │ ├── davey.yaml │ ├── jack.yaml │ └── not-migratable.yaml ├── MigrateAssetContainerTest.php ├── MigrateCollectionTest.php ├── MigrateFieldsetTest.php ├── MigrateFormTest.php ├── MigrateGlobalSetTest.php ├── MigrateGroupsTest.php ├── MigrateLocalizedCollectionTest.php ├── MigrateLocalizedGlobalSetTest.php ├── MigrateLocalizedPagesTest.php ├── MigrateLocalizedTaxonomyTest.php ├── MigratePagesTest.php ├── MigrateRolesTest.php ├── MigrateSettingsTest.php ├── MigrateSiteTest.php ├── MigrateTaxonomyTest.php ├── MigrateThemeTest.php ├── MigrateUserTest.php ├── RouterTest.php ├── TestCase.php └── YamlTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: statamic 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/README.md -------------------------------------------------------------------------------- /bin/php-cs-fixer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/bin/php-cs-fixer.bat -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/phpunit.bat -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/pint.json -------------------------------------------------------------------------------- /resources/blueprints/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/resources/blueprints/default.yaml -------------------------------------------------------------------------------- /src/AssetContainerMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/AssetContainerMigrator.php -------------------------------------------------------------------------------- /src/CollectionMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/CollectionMigrator.php -------------------------------------------------------------------------------- /src/Commands/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/Command.php -------------------------------------------------------------------------------- /src/Commands/MigrateAssetContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateAssetContainer.php -------------------------------------------------------------------------------- /src/Commands/MigrateCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateCollection.php -------------------------------------------------------------------------------- /src/Commands/MigrateFieldset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateFieldset.php -------------------------------------------------------------------------------- /src/Commands/MigrateForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateForm.php -------------------------------------------------------------------------------- /src/Commands/MigrateGlobalSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateGlobalSet.php -------------------------------------------------------------------------------- /src/Commands/MigrateGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateGroups.php -------------------------------------------------------------------------------- /src/Commands/MigratePages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigratePages.php -------------------------------------------------------------------------------- /src/Commands/MigrateRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateRoles.php -------------------------------------------------------------------------------- /src/Commands/MigrateSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateSettings.php -------------------------------------------------------------------------------- /src/Commands/MigrateSite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateSite.php -------------------------------------------------------------------------------- /src/Commands/MigrateTaxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateTaxonomy.php -------------------------------------------------------------------------------- /src/Commands/MigrateTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateTheme.php -------------------------------------------------------------------------------- /src/Commands/MigrateUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Commands/MigrateUser.php -------------------------------------------------------------------------------- /src/Concerns/GetsFieldsetHandles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/GetsFieldsetHandles.php -------------------------------------------------------------------------------- /src/Concerns/GetsSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/GetsSettings.php -------------------------------------------------------------------------------- /src/Concerns/MigratesContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/MigratesContent.php -------------------------------------------------------------------------------- /src/Concerns/MigratesFieldsetsToBlueprints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/MigratesFieldsetsToBlueprints.php -------------------------------------------------------------------------------- /src/Concerns/MigratesFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/MigratesFile.php -------------------------------------------------------------------------------- /src/Concerns/MigratesFlattenedFieldsetSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/MigratesFlattenedFieldsetSchema.php -------------------------------------------------------------------------------- /src/Concerns/MigratesLocalizedContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/MigratesLocalizedContent.php -------------------------------------------------------------------------------- /src/Concerns/MigratesRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/MigratesRoles.php -------------------------------------------------------------------------------- /src/Concerns/MigratesRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/MigratesRoute.php -------------------------------------------------------------------------------- /src/Concerns/PreparesPathFolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/PreparesPathFolder.php -------------------------------------------------------------------------------- /src/Concerns/PreparesPhpCsFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/PreparesPhpCsFixer.php -------------------------------------------------------------------------------- /src/Concerns/SubmitsStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/SubmitsStats.php -------------------------------------------------------------------------------- /src/Concerns/ThrowsFinalWarnings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Concerns/ThrowsFinalWarnings.php -------------------------------------------------------------------------------- /src/Configurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Configurator.php -------------------------------------------------------------------------------- /src/ContentMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/ContentMigrator.php -------------------------------------------------------------------------------- /src/Exceptions/AlreadyExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Exceptions/AlreadyExistsException.php -------------------------------------------------------------------------------- /src/Exceptions/EmptyValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Exceptions/EmptyValueException.php -------------------------------------------------------------------------------- /src/Exceptions/FilesystemException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Exceptions/FilesystemException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidEmailException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Exceptions/InvalidEmailException.php -------------------------------------------------------------------------------- /src/Exceptions/MigratorErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Exceptions/MigratorErrorException.php -------------------------------------------------------------------------------- /src/Exceptions/MigratorSkippedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Exceptions/MigratorSkippedException.php -------------------------------------------------------------------------------- /src/Exceptions/MigratorWarningsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Exceptions/MigratorWarningsException.php -------------------------------------------------------------------------------- /src/Exceptions/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Exceptions/NotFoundException.php -------------------------------------------------------------------------------- /src/FieldsetMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/FieldsetMigrator.php -------------------------------------------------------------------------------- /src/FormMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/FormMigrator.php -------------------------------------------------------------------------------- /src/GlobalSetMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/GlobalSetMigrator.php -------------------------------------------------------------------------------- /src/GroupsMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/GroupsMigrator.php -------------------------------------------------------------------------------- /src/Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Migrator.php -------------------------------------------------------------------------------- /src/PagesMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/PagesMigrator.php -------------------------------------------------------------------------------- /src/RolesMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/RolesMigrator.php -------------------------------------------------------------------------------- /src/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/Router.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/SettingsMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/SettingsMigrator.php -------------------------------------------------------------------------------- /src/TaxonomyMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/TaxonomyMigrator.php -------------------------------------------------------------------------------- /src/ThemeMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/ThemeMigrator.php -------------------------------------------------------------------------------- /src/UUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/UUID.php -------------------------------------------------------------------------------- /src/UserMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/UserMigrator.php -------------------------------------------------------------------------------- /src/YAML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/src/YAML.php -------------------------------------------------------------------------------- /tests/ConfiguratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/ConfiguratorTest.php -------------------------------------------------------------------------------- /tests/ContentMigratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/ContentMigratorTest.php -------------------------------------------------------------------------------- /tests/Fakes/FakeUUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fakes/FakeUUID.php -------------------------------------------------------------------------------- /tests/Fixtures/assets/harry-potter-screenplay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/assets/harry-potter-screenplay.txt -------------------------------------------------------------------------------- /tests/Fixtures/assets/img/coffee-mug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/assets/img/coffee-mug.jpg -------------------------------------------------------------------------------- /tests/Fixtures/assets/img/stetson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/assets/img/stetson.jpg -------------------------------------------------------------------------------- /tests/Fixtures/config/configurator-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/config/configurator-test.php -------------------------------------------------------------------------------- /tests/Fixtures/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/routes/web.php -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/assets/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/assets/main.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/collections/blog/2017-07-31.english-fire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/collections/blog/2017-07-31.english-fire.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/collections/blog/_2017-03-08.spring-wonderful-spring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/collections/blog/_2017-03-08.spring-wonderful-spring.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/collections/blog/folder.yaml: -------------------------------------------------------------------------------- 1 | order: date 2 | fieldset: content 3 | template: blog/post 4 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/collections/blog/fr/2017-07-31.english-fire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/collections/blog/fr/2017-07-31.english-fire.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/collections/things/_bear-spray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/collections/things/_bear-spray.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/collections/things/candle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/collections/things/candle.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/collections/things/folder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/collections/things/folder.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/globals/footer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/globals/footer.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/globals/fr/global.yaml: -------------------------------------------------------------------------------- 1 | site_name: 'La Redwoody' 2 | id: d9bfc09a-3a90-41d3-8acc-3f551f8432af 3 | fav_tag: tags/spring 4 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/globals/global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/globals/global.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/1.about/1.about-sub-page/fr.index.md: -------------------------------------------------------------------------------- 1 | title: 'About Sub Page' 2 | id: 7f48ceb3-97c5-45be-acd4-f88ff0284ed6 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/1.about/1.about-sub-page/index.md: -------------------------------------------------------------------------------- 1 | title: 'About Sub Page' 2 | id: 7f48ceb3-97c5-45be-acd4-f88ff0284ed6 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/1.about/2.about-sub-page/index.md: -------------------------------------------------------------------------------- 1 | title: 'Another About Sub Page' 2 | id: f748ceb3-97c5-45be-acd4-f88ff0249e71 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/1.about/3.about-sub-page/fr.index.md: -------------------------------------------------------------------------------- 1 | title: 'Another About Sub Page' 2 | id: 4ef748b3-97c5-acd4-be45-f8849e71ff02 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/1.about/3.about-sub-page/index.md: -------------------------------------------------------------------------------- 1 | title: 'Another About Sub Page' 2 | id: 4ef748b3-97c5-acd4-be45-f8849e71ff02 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/1.about/fr.index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/1.about/fr.index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/1.about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/1.about/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/10.tenth-page-naturally-sorted/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/10.tenth-page-naturally-sorted/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/2.blog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/2.blog/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/3.gallery/1.gallery-sub-page/1.gallery-sub-sub-page/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/3.gallery/1.gallery-sub-page/1.gallery-sub-sub-page/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/3.gallery/1.gallery-sub-page/fr.index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/3.gallery/1.gallery-sub-page/fr.index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/3.gallery/1.gallery-sub-page/index.md: -------------------------------------------------------------------------------- 1 | title: 'Gallery Sub Page' 2 | id: 1a45dfed-9d06-4493-83b1-dffe2522cbe7 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/3.gallery/fr.index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/3.gallery/fr.index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/3.gallery/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/3.gallery/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/4.things/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/4.things/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/5.contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/5.contact/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/6.only-english/fr.index.md: -------------------------------------------------------------------------------- 1 | id: 72c016c6-cc0a-4928-b53b-3275f3f6da0a 2 | published: false 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/6.only-english/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/6.only-english/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/8.published-in-both/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/8.published-in-both/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/_7.only-french/fr.index.md: -------------------------------------------------------------------------------- 1 | id: 3cd2d431-699c-417c-8d57-9183cd17a6fc 2 | published: true 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/_7.only-french/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/_7.only-french/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/_9.published-in-neither/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/_9.published-in-neither/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/fr.index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/fr.index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/pages/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/taxonomies/tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/taxonomies/tags.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/taxonomies/tags/coffee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/taxonomies/tags/coffee.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/taxonomies/tags/harry-potter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/content/taxonomies/tags/harry-potter.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/taxonomies/tags/smells.yaml: -------------------------------------------------------------------------------- 1 | fr: 2 | title: 'la smells' 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/content/taxonomies/tags/spring.yaml: -------------------------------------------------------------------------------- 1 | title: spring 2 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/addons/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/assets.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/caching.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/cp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/cp.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/debug.yaml: -------------------------------------------------------------------------------- 1 | debug: true -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/email.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/fieldsets/about.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/fieldsets/about.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/fieldsets/content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/fieldsets/content.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/fieldsets/footer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/fieldsets/footer.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/fieldsets/gallery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/fieldsets/gallery.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/fieldsets/globals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/fieldsets/globals.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/fieldsets/tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/fieldsets/tag.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/fieldsets/things.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/fieldsets/things.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/formsets/contact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/formsets/contact.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/routes.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/search.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/system.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/theming.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/theming.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/users.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/users/groups.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/settings/users/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/settings/users/roles.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/storage/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/css/redwood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/css/redwood.css -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/css/redwood.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/css/redwood.css.map -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/gulpfile.js -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/js/jabbascripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/js/jabbascripts.js -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/js/redwood.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/js/redwood.js -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/js/redwood.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/js/redwood.js.map -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/layouts/default.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/layouts/feed.html: -------------------------------------------------------------------------------- 1 | {{ xml_header }} 2 | {{ template_content }} -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/meta.yaml: -------------------------------------------------------------------------------- 1 | name: Redwood 2 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/package.json -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/partials/article-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/partials/article-footer.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/partials/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/partials/block.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/partials/nav.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/partials/pagination.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/partials/post-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/partials/post-meta.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/components/gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/components/gallery.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/components/nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/components/nav.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/components/tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/components/tags.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/components/tiles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/components/tiles.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/components/zoom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/components/zoom.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/core/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/core/base.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/core/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/core/fonts.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/core/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/core/layout.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/core/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/core/settings.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/elements/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/elements/forms.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/elements/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/elements/typography.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/sass/redwood.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/sass/redwood.scss -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/settings/macros.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/settings/macros.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/about.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/blog/hero-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/blog/hero-post.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/blog/index.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/blog/long_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/blog/long_form.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/blog/post.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/blog/taxonomies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/blog/taxonomies.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/blog/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/blog/taxonomy.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/contact.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/default.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/errors/404.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/feeds/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/feeds/blog.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/feeds/things.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/feeds/things.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/gallery.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/home.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/page.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/search.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/thing.html: -------------------------------------------------------------------------------- 1 | {{ redirect to="http://amzn.com/{amazon_id}" }} 2 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/themes/redwood/templates/things.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/themes/redwood/templates/things.html -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/users/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixtures/site-localized/users/jlo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site-localized/users/jlo.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/content/assets/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/assets/main.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/blog/2017-01-18.my-first-day.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/blog/2017-01-18.my-first-day.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/blog/2017-03-08.spring-wonderful-spring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/blog/2017-03-08.spring-wonderful-spring.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/blog/2017-07-31.fire-fire-looking-forward-to-hearing-from-you.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/blog/2017-07-31.fire-fire-looking-forward-to-hearing-from-you.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/blog/2017-09-28.what-i-did-last-summer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/blog/2017-09-28.what-i-did-last-summer.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/blog/_2017-01-19.paperwork-and-snowshoeing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/blog/_2017-01-19.paperwork-and-snowshoeing.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/blog/folder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/blog/folder.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/favs/1.red-shirt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/favs/1.red-shirt.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/favs/2.blue-shirt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/favs/2.blue-shirt.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/favs/folder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/favs/folder.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/favs/purple-shirt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/favs/purple-shirt.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/things/bear-spray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/things/bear-spray.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/things/candle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/things/candle.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/things/firestarter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/things/firestarter.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/things/flask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/things/flask.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/things/folder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/things/folder.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/things/mittens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/things/mittens.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/things/sleeping-bag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/things/sleeping-bag.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/things/survival-knife.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/things/survival-knife.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/things/tent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/things/tent.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/collections/things/wand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/collections/things/wand.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/globals/global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/globals/global.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/content/globals/social.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/globals/social.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/1.about/1.about-sub-page/index.md: -------------------------------------------------------------------------------- 1 | title: 'About Sub Page' 2 | id: 7f48ceb3-97c5-45be-acd4-f88ff0284ed6 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/1.about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/pages/1.about/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/2.blog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/pages/2.blog/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/3.gallery/1.gallery-sub-page/1.gallery-sub-sub-page/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/pages/3.gallery/1.gallery-sub-page/1.gallery-sub-sub-page/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/3.gallery/1.gallery-sub-page/index.md: -------------------------------------------------------------------------------- 1 | title: 'Gallery Sub Page' 2 | id: 1a45dfed-9d06-4493-83b1-dffe2522cbe7 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/3.gallery/2.contact/index.md: -------------------------------------------------------------------------------- 1 | title: Contact Gallery 2 | id: 4313cd2d-9c69-7c41-78d5-17a6fc9183cd 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/3.gallery/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/pages/3.gallery/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/4.things/1.contact/index.md: -------------------------------------------------------------------------------- 1 | title: Contact Favorite Things 2 | id: ce226a41-8d76-40d4-b806-8df391e00e21 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/4.things/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/pages/4.things/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/5.contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/pages/5.contact/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/pages/index.md -------------------------------------------------------------------------------- /tests/Fixtures/site/content/taxonomies/colours.yaml: -------------------------------------------------------------------------------- 1 | title: Colours 2 | fieldset: tag 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site/content/taxonomies/colours/blue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/taxonomies/colours/blue.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/content/taxonomies/colours/red.yaml: -------------------------------------------------------------------------------- 1 | title: red 2 | -------------------------------------------------------------------------------- /tests/Fixtures/site/content/taxonomies/tags.yaml: -------------------------------------------------------------------------------- 1 | title: Tags 2 | fieldset: tag 3 | -------------------------------------------------------------------------------- /tests/Fixtures/site/content/taxonomies/tags/fall.yaml: -------------------------------------------------------------------------------- 1 | title: fall 2 | -------------------------------------------------------------------------------- /tests/Fixtures/site/content/taxonomies/tags/spring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/content/taxonomies/tags/spring.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/assets.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/cp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/cp.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/about.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/about.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/address.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/asset_fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/asset_fields.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/diary_entry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/diary_entry.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/gallery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/gallery.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/globals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/globals.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/home.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/kitchen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/kitchen.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/long_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/long_form.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/post.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/social_media.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/social_media.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/tag.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/things.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/things.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/fieldsets/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/fieldsets/user.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/formsets/contact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/formsets/contact.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/routes.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/system.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/theming.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/theming.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/users.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/users/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/users/groups.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/settings/users/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/settings/users/roles.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/storage/forms/contact/1576159501.8263.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/storage/forms/contact/1576159501.8263.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/storage/forms/contact/1576246600.8053.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/storage/forms/contact/1576246600.8053.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/css/redwood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/css/redwood.css -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/css/redwood.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/css/redwood.css.map -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/gulpfile.js -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/js/jabbascripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/js/jabbascripts.js -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/js/redwood.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/js/redwood.js -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/js/redwood.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/js/redwood.js.map -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/layouts/default.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/layouts/feed.html: -------------------------------------------------------------------------------- 1 | {{ xml_header }} 2 | {{ template_content }} -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/meta.yaml: -------------------------------------------------------------------------------- 1 | name: Redwood 2 | -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/package.json -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/partials/articles/article-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/partials/articles/article-footer.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/partials/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/partials/block.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/partials/nav.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/partials/pagination.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/partials/post-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/partials/post-meta.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/components/gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/components/gallery.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/components/nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/components/nav.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/components/tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/components/tags.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/components/tiles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/components/tiles.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/components/zoom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/components/zoom.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/core/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/core/base.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/core/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/core/fonts.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/core/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/core/layout.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/core/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/core/settings.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/elements/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/elements/forms.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/elements/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/elements/typography.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/sass/redwood.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/sass/redwood.scss -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/settings/macros.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/settings/macros.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/about.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/auth/login.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/auth/password-forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/auth/password-forgot.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/auth/password-reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/auth/password-reset.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/auth/register.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/blog/hero-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/blog/hero-post.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/blog/index.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/blog/long_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/blog/long_form.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/blog/post.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/blog/taxonomies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/blog/taxonomies.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/blog/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/blog/taxonomy.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/contact.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/default.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/errors/404.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/feeds/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/feeds/blog.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/feeds/things.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/feeds/things.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/gallery.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/home.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/not-antlers.blade.php: -------------------------------------------------------------------------------- 1 | @extends('home') 2 | 3 | {{ modify($content)->striptags() }} 4 | -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/page.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/search.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/thing.html: -------------------------------------------------------------------------------- 1 | {{ redirect to="http://amzn.com/{amazon_id}" }} 2 | -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/things.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/things.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/user/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/user/account.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/user/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/user/index.html -------------------------------------------------------------------------------- /tests/Fixtures/site/themes/redwood/templates/user/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/themes/redwood/templates/user/profile.html -------------------------------------------------------------------------------- /tests/Fixtures/site/users/davey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/users/davey.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/users/jack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/users/jack.yaml -------------------------------------------------------------------------------- /tests/Fixtures/site/users/not-migratable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/Fixtures/site/users/not-migratable.yaml -------------------------------------------------------------------------------- /tests/MigrateAssetContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateAssetContainerTest.php -------------------------------------------------------------------------------- /tests/MigrateCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateCollectionTest.php -------------------------------------------------------------------------------- /tests/MigrateFieldsetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateFieldsetTest.php -------------------------------------------------------------------------------- /tests/MigrateFormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateFormTest.php -------------------------------------------------------------------------------- /tests/MigrateGlobalSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateGlobalSetTest.php -------------------------------------------------------------------------------- /tests/MigrateGroupsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateGroupsTest.php -------------------------------------------------------------------------------- /tests/MigrateLocalizedCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateLocalizedCollectionTest.php -------------------------------------------------------------------------------- /tests/MigrateLocalizedGlobalSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateLocalizedGlobalSetTest.php -------------------------------------------------------------------------------- /tests/MigrateLocalizedPagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateLocalizedPagesTest.php -------------------------------------------------------------------------------- /tests/MigrateLocalizedTaxonomyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateLocalizedTaxonomyTest.php -------------------------------------------------------------------------------- /tests/MigratePagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigratePagesTest.php -------------------------------------------------------------------------------- /tests/MigrateRolesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateRolesTest.php -------------------------------------------------------------------------------- /tests/MigrateSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateSettingsTest.php -------------------------------------------------------------------------------- /tests/MigrateSiteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateSiteTest.php -------------------------------------------------------------------------------- /tests/MigrateTaxonomyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateTaxonomyTest.php -------------------------------------------------------------------------------- /tests/MigrateThemeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateThemeTest.php -------------------------------------------------------------------------------- /tests/MigrateUserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/MigrateUserTest.php -------------------------------------------------------------------------------- /tests/RouterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/RouterTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/YamlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statamic/migrator/HEAD/tests/YamlTest.php --------------------------------------------------------------------------------