Skip to content
This repository was archived by the owner on Dec 15, 2024. It is now read-only.

Commit d66d632

Browse files
committed
feat(phpcs): replace squizlabs/php_codesniffer with phpcsstandards/php_codesniffer (closes #2)
1 parent a5fdec6 commit d66d632

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11-
## [1.3.0] - 20231-03-14
11+
## [1.3.2] - 2023-12-02
12+
13+
- replace `squizlabs/php_codesniffer` with `phpcsstandards/php_codesniffer` (#2)
14+
15+
## [1.3.0] - 2023-03-14
1216

1317
### Added
1418

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPIP Standard Coding Rules for PHP_CodeSniffer
22

3-
This is a set of rules for [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) that checks for SPIP Coding Standard and PHP Compatibility for SPIP v4.0+.
3+
This is a set of rules for [PHP CodeSniffer](https://github.com/phpcsstandards/PHP_CodeSniffer) that checks for SPIP Coding Standard and PHP Compatibility for SPIP v4.0+.
44

55
## Installation
66

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"require": {
1414
"php": ">=7.0",
1515
"ext-mbstring": "*",
16-
"squizlabs/php_codesniffer": "^3.7",
16+
"phpcsstandards/php_codesniffer": "^3.7",
1717
"phpcompatibility/php-compatibility": "dev-develop"
1818
},
1919
"require-dev": {

tests/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?php
22

33
require __DIR__ . '/../vendor/autoload.php';
4-
require __DIR__ . '/../vendor/squizlabs/php_codesniffer/autoload.php';
4+
require __DIR__ . '/../vendor/phpcsstandards/php_codesniffer/autoload.php';

0 commit comments

Comments
 (0)