Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
fail-fast: true
matrix:
php:
- "8.2"
- "8.3"
- "8.4"
symfony:
Expand Down
2 changes: 1 addition & 1 deletion .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
),
));

$config = new FidryConfig($header, 83_000);
$config = new FidryConfig($header, 82_000);
$config->addRules([
// TODO: see if this rule can be removed once bumping to Symfony 7+
'no_superfluous_phpdoc_tags' => false,
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
}
],
"require": {
"php": "^8.3",
"php": "^8.2",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/finder": "^6.4 || ^7.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"ergebnis/composer-normalize": "^2.28",
"infection/infection": ">=0.26",
"phpunit/phpunit": "^12"
"phpunit/phpunit": "^11 || ^12"
},
"prefer-stable": true,
"autoload": {
Expand Down
4 changes: 2 additions & 2 deletions tests/FSImplementationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
#[CoversNothing]
final class FSImplementationTest extends TestCase
{
private const array NON_SYNCHRONIZED_FILESYSTEM_METHOD_NAMES = [
private const NON_SYNCHRONIZED_FILESYSTEM_METHOD_NAMES = [
'createFinder',
];

private const array NON_SYNCHRONIZED_FS_METHOD_NAMES = [
private const NON_SYNCHRONIZED_FS_METHOD_NAMES = [
'getInstance',
'setInstance',
];
Expand Down
2 changes: 1 addition & 1 deletion tests/Finder/SplFileInfoFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#[CoversClass(SplFileInfoFactory::class)]
final class SplFileInfoFactoryTest extends TestCase
{
public const string FIXTURE_DIR = __DIR__.'/Fixtures';
public const FIXTURE_DIR = __DIR__.'/Fixtures';

#[DataProvider('fromPathProvider')]
public function test_it_can_create_a_file_info_from_a_path(
Expand Down