From f62245bbae583f09c630b4502e02956725d22738 Mon Sep 17 00:00:00 2001 From: Adrien Crivelli Date: Sat, 9 Dec 2023 16:56:55 +0100 Subject: [PATCH] phpcs on samples/ too --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index feec99134c..5a7e9164a8 100644 --- a/composer.json +++ b/composer.json @@ -46,22 +46,22 @@ "scripts": { "check": [ "./bin/check-phpdoc-types", - "phpcs src/ tests/ --report=checkstyle", - "phpcs --report-width=200 samples/ src/ tests/ --ignore=samples/Header.php --standard=PHPCompatibility --runtime-set testVersion 8.0- -n", + "phpcs samples/ src/ tests/ --report=checkstyle", + "phpcs samples/ src/ tests/ --standard=PHPCompatibility --runtime-set testVersion 8.0- -n", "php-cs-fixer fix --ansi --dry-run --diff", "phpunit --color=always", "phpstan analyse --ansi --memory-limit=2048M" ], "style": [ - "phpcs src/ tests/ --report=checkstyle", + "phpcs samples/ src/ tests/ --report=checkstyle", "php-cs-fixer fix --ansi --dry-run --diff" ], "fix": [ - "phpcbf src/ tests/ --report=checkstyle", + "phpcbf samples/ src/ tests/ --report=checkstyle", "php-cs-fixer fix" ], "versions": [ - "phpcs --report-width=200 samples/ src/ tests/ --ignore=samples/Header.php --standard=PHPCompatibility --runtime-set testVersion 8.0- -n" + "phpcs samples/ src/ tests/ --standard=PHPCompatibility --runtime-set testVersion 8.0- -n" ] }, "require": {