diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 08bf8b8..dbfdbcc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - php: [7.2, 7.3, 7.4, 8.0, 8.1] + php: [7.2, 7.3, 7.4, 8.0, 8.1, 8.2] name: PHP ${{ matrix.php }} diff --git a/composer.json b/composer.json index 22e07d5..affb982 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } }, "require": { - "php": "^7.2|^7.3|^7.4|^8.0|^8.1", + "php": "^7.2|^7.3|^7.4|^8.0|^8.1|^8.2", "cycle/annotated": "^2.0", "cycle/migrations": "^1.0", "cycle/orm": "^1.1", diff --git a/tests/src/Console/Command/Schema/MigrateCommandTest.php b/tests/src/Console/Command/Schema/MigrateCommandTest.php index d897f34..d3d20af 100644 --- a/tests/src/Console/Command/Schema/MigrateCommandTest.php +++ b/tests/src/Console/Command/Schema/MigrateCommandTest.php @@ -169,7 +169,7 @@ private function assertHasChangesInMigrationFiles(): void $this->assertContains($migrationFile, $files); } - $this->assertStringContainsString('default_create_tags', $files[count($files) - 1]); + $this->assertStringContainsString('create_tags', $files[count($files) - 1]); } private function createTestEntity(): void