Skip to content

Commit 02052c7

Browse files
authored
Merge pull request #408 from PHPCSStandards/feature/composer-update-phpcs-dependencies
Composer: raise the minimum supported PHPCS + PHPCSUtils versions
2 parents 96c7948 + d21ae0d commit 02052c7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,25 +74,25 @@ jobs:
7474
#
7575
# The matrix is set up so as not to duplicate the builds which are run for code coverage.
7676
php: ['5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.5']
77-
phpcs_version: ['lowest', '^3.13', '4.0.0', 'stable']
77+
phpcs_version: ['lowest', '^3.13', '4.0.1', 'stable']
7878
phpcsutils_version: ['stable']
7979

8080
exclude:
8181
# Note, since the release of PHPCS 4.0, 'stable' == latest 4.x.
8282
- php: '5.5'
83-
phpcs_version: '4.0.0'
83+
phpcs_version: '4.0.1'
8484
- php: '5.5'
8585
phpcs_version: 'stable'
8686
- php: '5.6'
87-
phpcs_version: '4.0.0'
87+
phpcs_version: '4.0.1'
8888
- php: '5.6'
8989
phpcs_version: 'stable'
9090
- php: '7.0'
91-
phpcs_version: '4.0.0'
91+
phpcs_version: '4.0.1'
9292
- php: '7.0'
9393
phpcs_version: 'stable'
9494
- php: '7.1'
95-
phpcs_version: '4.0.0'
95+
phpcs_version: '4.0.1'
9696
- php: '7.1'
9797
phpcs_version: 'stable'
9898
# Also exclude the 7.2/stable build as that's already run in code coverage, no need to duplicate.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ PHPCSExtra is a collection of sniffs and standards for use with [PHP_CodeSniffer
4343
## Minimum Requirements
4444

4545
* PHP 5.4 or higher.
46-
* [PHP_CodeSniffer][phpcs-gh] version **3.13.4** or higher.
47-
* [PHPCSUtils][phpcsutils-gh] version **1.1.2** or higher.
46+
* [PHP_CodeSniffer][phpcs-gh] version **3.13.5**/**4.0.1** or higher.
47+
* [PHPCSUtils][phpcsutils-gh] version **1.2.0** or higher.
4848

4949

5050
## Installation

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
},
2323
"require" : {
2424
"php" : ">=5.4",
25-
"squizlabs/php_codesniffer" : "^3.13.4 || ^4.0",
26-
"phpcsstandards/phpcsutils" : "^1.1.2"
25+
"squizlabs/php_codesniffer" : "^3.13.5 || ^4.0.1",
26+
"phpcsstandards/phpcsutils" : "^1.2.0"
2727
},
2828
"require-dev" : {
2929
"php-parallel-lint/php-parallel-lint": "^1.4.0",

0 commit comments

Comments
 (0)