Skip to content

Commit 778650b

Browse files
authored
docs: update PHP_CodeSniffer repository link #7
Update PHP_CodeSniffer repository link
2 parents 6fb82cb + 797bec0 commit 778650b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lessons/03-continuous_Integration/03.1-Executing_tests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi
3636
3. Move to the project directory: `cd your-project-name`
3737
4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands:
3838
1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`.
39-
2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`.
39+
2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`.
4040
3. [PHP Unit](https://phpunit.de/): `composer phpunit`.
4141
5. Create your own repository:
4242
1. Initialize your own Git repository: `git init`
@@ -56,7 +56,7 @@ Just in case you prefer to avoid dealing with `composer create-project`, you can
5656
4. Install the project dependencies: `composer install`
5757
5. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands:
5858
1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`.
59-
2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`.
59+
2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`.
6060
3. [PHP Unit](https://phpunit.de/): `composer phpunit`.
6161
6. Create your own repository cleaning the bootstrap project history:
6262
1. Remove previous Git history in order to do not add the bootstrap repo noise in your project: `rm -rf .git`

lessons/03-continuous_Integration/03.3-Build_Matrix/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi
3636
3. Move to the project directory: `cd your-project-name`
3737
4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands:
3838
1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`.
39-
2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`.
39+
2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`.
4040
3. [PHP Unit](https://phpunit.de/): `composer phpunit`.
4141
5. Create your own repository:
4242
1. Initialize your own Git repository: `git init`
@@ -56,7 +56,7 @@ Just in case you prefer to avoid dealing with `composer create-project`, you can
5656
4. Install the project dependencies: `composer install`
5757
5. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands:
5858
1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`.
59-
2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`.
59+
2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`.
6060
3. [PHP Unit](https://phpunit.de/): `composer phpunit`.
6161
6. Create your own repository cleaning the bootstrap project history:
6262
1. Remove previous Git history in order to do not add the bootstrap repo noise in your project: `rm -rf .git`

0 commit comments

Comments
 (0)