Skip to content

Commit

Permalink
CircleCI Composer: move PHPCS dependency to require (#141)
Browse files Browse the repository at this point in the history
Follow up on 106 which did this for the "normal" `composer.json` file.
  • Loading branch information
jrfnl committed Feb 14, 2020
1 parent f6bdc3a commit 2976bca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer.circleci.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

0 comments on commit 2976bca

Please sign in to comment.