You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Composer: raise the minimum supported PHPCS version to 3.8.0
... to prevent end-users from running into trouble with the name change.
The files in the Composer `vendor/bin` will only be replaced when the `replace...` directive is found and that is only available in the 3.8.0 tag.
When the files in the Composer `vendor/bin` are not replaced, they will continue to point to the `vendor/squizlabs/php_codesniffer` directory which will no longer exist, leading to fatal "File not found" errors for end-users trying to run PHPCS/PHPCBF.
Includes updating references to the PHPCS version whenever relevant throughout the codebase.
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Whether you need to split an `array` into the individual items, are trying to de
46
46
47
47
Includes improved versions of the PHPCS native utility functions and plenty of new utility functions.
48
48
49
-
These functions are compatible with PHPCS 3.7.1 up to PHPCS `master`.
49
+
These functions are compatible with PHPCS 3.8.0 up to PHPCS `master`.
50
50
51
51
### A collection of static properties and methods for often-used token groups
52
52
@@ -66,7 +66,7 @@ Supports PHPUnit 4.x up to 9.x.
66
66
67
67
Normally to use the latest version of PHP_CodeSniffer native utility functions, you would have to raise the minimum requirements of your external PHPCS standard.
68
68
69
-
Now you won't have to anymore. This package allows you to use the latest version of those utility functions in all PHP_CodeSniffer versions from PHPCS 3.7.1 and up.
69
+
Now you won't have to anymore. This package allows you to use the latest version of those utility functions in all PHP_CodeSniffer versions from PHPCS 3.8.0 and up.
70
70
71
71
### Fully documented
72
72
@@ -78,7 +78,7 @@ To see detailed information about all the available abstract sniffs, utility fun
78
78
## Minimum Requirements
79
79
80
80
* PHP 5.4 or higher.
81
-
*[PHP_CodeSniffer] 3.7.1+.
81
+
*[PHP_CodeSniffer] 3.8.0+.
82
82
* Recommended PHP extensions for optimal functionality:
83
83
- PCRE with Unicode support (normally enabled by default)
0 commit comments