Skip to content

Commit

Permalink
Merge branch 'v1.x-php-82' into v1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
wakebit committed Apr 24, 2023
2 parents 1f00777 + 7ae3204 commit a141d87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tests/src/Console/Command/Schema/MigrateCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a141d87

Please sign in to comment.