diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 457d8a11..b49be93f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: php-version: - - '8.1' + - '8.2' steps: - @@ -52,7 +52,7 @@ jobs: strategy: matrix: php-version: - - '8.1' + - '8.2' steps: - @@ -85,7 +85,10 @@ jobs: strategy: matrix: php-version: - - '8.1' + - '8.2' + - '8.3' + - '8.4' + - '8.5' steps: - diff --git a/composer.json b/composer.json index e62be925..cc0efba4 100644 --- a/composer.json +++ b/composer.json @@ -9,8 +9,8 @@ } ], "require": { - "php": "^8.1", - "symfony/filesystem": "^4.2 || ^5.0 || ^6.0", + "php": "^8.2", + "symfony/filesystem": "^4.2 || ^5.0 || ^6.0 || ^7.0", "psr/log": "^1.0 || ^2.0 || ^3.0" }, "require-dev": { diff --git a/tests/Unit/Domain/FilePathTest.php b/tests/Unit/Domain/FilePathTest.php index 437bd48d..bce897c0 100644 --- a/tests/Unit/Domain/FilePathTest.php +++ b/tests/Unit/Domain/FilePathTest.php @@ -28,24 +28,9 @@ public function provideIsAbsolute() true, ]; - yield 'absolute windows' => [ - 'c:\foobar\barfoo', - true, - ]; - - yield 'not absolute windows' => [ - 'foobar\barfoo', - false, - ]; - yield 'absolute phar' => [ 'phar:///barfoo', true ]; - - yield 'not absolute phar' => [ - 'phar://barfoo', - false, - ]; } }