From 2976bca165ff20efa391028bb1a779c403bbbab8 Mon Sep 17 00:00:00 2001 From: Juliette <663378+jrfnl@users.noreply.github.com> Date: Fri, 14 Feb 2020 02:01:16 +0100 Subject: [PATCH] CircleCI Composer: move PHPCS dependency to `require` (#141) Follow up on 106 which did this for the "normal" `composer.json` file. --- composer.circleci.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.circleci.json b/composer.circleci.json index 95d3b80d..353233f8 100644 --- a/composer.circleci.json +++ b/composer.circleci.json @@ -32,10 +32,10 @@ "test": "./vendor/bin/phpunit --configuration phpunit.circleci.xml" }, "require" : { - "php" : ">=5.6.0" + "php" : ">=5.6.0", + "squizlabs/php_codesniffer": "^3.1" }, "require-dev": { - "phpunit/phpunit": "^5.0 || ^6.5 || ^7.0 || ^8.0", - "squizlabs/php_codesniffer": "^3.1" + "phpunit/phpunit": "^5.0 || ^6.5 || ^7.0 || ^8.0" } }