From f1aa8d32af2456952f6a224c232d9f1284644c5e Mon Sep 17 00:00:00 2001 From: Guillaume Sainthillier Date: Fri, 9 Feb 2024 11:41:26 +0100 Subject: [PATCH] fix linter jobs --- .laminas-ci.json.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .laminas-ci.json.json diff --git a/.laminas-ci.json.json b/.laminas-ci.json.json new file mode 100644 index 0000000..37f82a5 --- /dev/null +++ b/.laminas-ci.json.json @@ -0,0 +1,24 @@ +{ + "additional_checks": [ + { + "name": "PHP CS Fixer [8.2, latest]", + "operatingSystem": "ubuntu-latest", + "action": "laminas/laminas-continuous-integration-action@v1", + "job": { + "command": "./vendor/bin/php-cs-fixer fix -v --diff --dry-run", + "php": "8.2", + "dependencies": "latest" + } + } + ], + "ignore_php_platform_requirements": { + "7.2": true, + "7.3": true, + "7.4": true + }, + "exclude": [ + { + "name": "PHP CS Fixer [7.2, latest]" + } + ] +}