From 3e674dd97ca68cb8b572f19eb8dab84ad5065958 Mon Sep 17 00:00:00 2001 From: robertsaternus Date: Tue, 24 Feb 2026 14:30:14 +0100 Subject: [PATCH 1/2] INT-227 Add dry-run to php-cs-fixer command --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 202d8a9..3877141 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ }, "scripts": { "test": [ - "php-cs-fixer fix -v", + "php-cs-fixer fix --dry-run -v", "phpmd src text phpmd.xml.dist", "phpspec run --format=dot" ] From f06456078c150645315c882b17075800bd357cca Mon Sep 17 00:00:00 2001 From: robertsaternus Date: Tue, 24 Feb 2026 15:32:33 +0100 Subject: [PATCH 2/2] Fix CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b744b39..dbf896f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,8 +8,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['7.3', '8.1'] - deps: ['lowest', 'stable'] + php: ['8.1'] + deps: ['stable'] steps: - name: Checkout code uses: actions/checkout@v2