From 6c92a27511d1274d38b00d020f7baa7bed7bad0b Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Mon, 23 Mar 2026 15:04:18 -0300 Subject: [PATCH] Docs: Update PHP_CodeSniffer repository link --- examples/php/php-divergent_change-01_base/README.md | 4 ++-- examples/php/php-repeat_purchase-01_base/README.md | 4 ++-- examples/php/php-step_strategy-01_base/README.md | 4 ++-- .../README.md | 4 ++-- examples/php/php-user_email-01_base/README.md | 4 ++-- examples/php/php-user_email-02_extract_method/README.md | 4 ++-- examples/php/php-user_email-03_move_method/README.md | 4 ++-- examples/php/php-user_email-04_email_address_vo/README.md | 4 ++-- examples/php/php-user_email-05_user_email_vo/README.md | 4 ++-- examples/php/php-user_modelling-01_base/README.md | 4 ++-- examples/php/php-user_modelling-02_value_objects/README.md | 4 ++-- 11 files changed, 22 insertions(+), 22 deletions(-) diff --git a/examples/php/php-divergent_change-01_base/README.md b/examples/php/php-divergent_change-01_base/README.md index 26da3047..df4c1289 100644 --- a/examples/php/php-divergent_change-01_base/README.md +++ b/examples/php/php-divergent_change-01_base/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. Install the project dependencies: `composer install` 5. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 6. Create your own repository cleaning the bootstrap project history: 1. Remove previous Git history in order to do not add the bootstrap repo noise in your project: `rm -rf .git` diff --git a/examples/php/php-repeat_purchase-01_base/README.md b/examples/php/php-repeat_purchase-01_base/README.md index 613cf34c..63514ea7 100644 --- a/examples/php/php-repeat_purchase-01_base/README.md +++ b/examples/php/php-repeat_purchase-01_base/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. If you don't have it already, [install Composer](https://getcomposer.org/download/). 5. Install the project dependencies: `composer install` 6. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: - 1. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 1. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 2. [PHP Unit](https://phpunit.de/): `composer phpunit`. 7. Start coding! diff --git a/examples/php/php-step_strategy-01_base/README.md b/examples/php/php-step_strategy-01_base/README.md index 62236363..a5ce9c6e 100644 --- a/examples/php/php-step_strategy-01_base/README.md +++ b/examples/php/php-step_strategy-01_base/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. Install the project dependencies: `composer install` 5. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 6. Create your own repository cleaning the bootstrap project history: 1. Remove previous Git history in order to do not add the bootstrap repo noise in your project: `rm -rf .git` diff --git a/examples/php/php-step_strategy-02_replace_type_code_with_strategy/README.md b/examples/php/php-step_strategy-02_replace_type_code_with_strategy/README.md index 62236363..a5ce9c6e 100644 --- a/examples/php/php-step_strategy-02_replace_type_code_with_strategy/README.md +++ b/examples/php/php-step_strategy-02_replace_type_code_with_strategy/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. Install the project dependencies: `composer install` 5. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 6. Create your own repository cleaning the bootstrap project history: 1. Remove previous Git history in order to do not add the bootstrap repo noise in your project: `rm -rf .git` diff --git a/examples/php/php-user_email-01_base/README.md b/examples/php/php-user_email-01_base/README.md index 613cf34c..63514ea7 100644 --- a/examples/php/php-user_email-01_base/README.md +++ b/examples/php/php-user_email-01_base/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. If you don't have it already, [install Composer](https://getcomposer.org/download/). 5. Install the project dependencies: `composer install` 6. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: - 1. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 1. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 2. [PHP Unit](https://phpunit.de/): `composer phpunit`. 7. Start coding! diff --git a/examples/php/php-user_email-02_extract_method/README.md b/examples/php/php-user_email-02_extract_method/README.md index 613cf34c..63514ea7 100644 --- a/examples/php/php-user_email-02_extract_method/README.md +++ b/examples/php/php-user_email-02_extract_method/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. If you don't have it already, [install Composer](https://getcomposer.org/download/). 5. Install the project dependencies: `composer install` 6. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: - 1. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 1. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 2. [PHP Unit](https://phpunit.de/): `composer phpunit`. 7. Start coding! diff --git a/examples/php/php-user_email-03_move_method/README.md b/examples/php/php-user_email-03_move_method/README.md index 613cf34c..63514ea7 100644 --- a/examples/php/php-user_email-03_move_method/README.md +++ b/examples/php/php-user_email-03_move_method/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. If you don't have it already, [install Composer](https://getcomposer.org/download/). 5. Install the project dependencies: `composer install` 6. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: - 1. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 1. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 2. [PHP Unit](https://phpunit.de/): `composer phpunit`. 7. Start coding! diff --git a/examples/php/php-user_email-04_email_address_vo/README.md b/examples/php/php-user_email-04_email_address_vo/README.md index 613cf34c..63514ea7 100644 --- a/examples/php/php-user_email-04_email_address_vo/README.md +++ b/examples/php/php-user_email-04_email_address_vo/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. If you don't have it already, [install Composer](https://getcomposer.org/download/). 5. Install the project dependencies: `composer install` 6. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: - 1. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 1. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 2. [PHP Unit](https://phpunit.de/): `composer phpunit`. 7. Start coding! diff --git a/examples/php/php-user_email-05_user_email_vo/README.md b/examples/php/php-user_email-05_user_email_vo/README.md index 613cf34c..63514ea7 100644 --- a/examples/php/php-user_email-05_user_email_vo/README.md +++ b/examples/php/php-user_email-05_user_email_vo/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. If you don't have it already, [install Composer](https://getcomposer.org/download/). 5. Install the project dependencies: `composer install` 6. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: - 1. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 1. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 2. [PHP Unit](https://phpunit.de/): `composer phpunit`. 7. Start coding! diff --git a/examples/php/php-user_modelling-01_base/README.md b/examples/php/php-user_modelling-01_base/README.md index 62236363..a5ce9c6e 100644 --- a/examples/php/php-user_modelling-01_base/README.md +++ b/examples/php/php-user_modelling-01_base/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. Install the project dependencies: `composer install` 5. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 6. Create your own repository cleaning the bootstrap project history: 1. Remove previous Git history in order to do not add the bootstrap repo noise in your project: `rm -rf .git` diff --git a/examples/php/php-user_modelling-02_value_objects/README.md b/examples/php/php-user_modelling-02_value_objects/README.md index 62236363..a5ce9c6e 100644 --- a/examples/php/php-user_modelling-02_value_objects/README.md +++ b/examples/php/php-user_modelling-02_value_objects/README.md @@ -36,7 +36,7 @@ Start completely from scratch without having to delete this bootstrap project Gi 3. Move to the project directory: `cd your-project-name` 4. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 5. Create your own repository: 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 4. Install the project dependencies: `composer install` 5. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands: 1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`. - 2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. + 2. [PHP Style Check](https://github.com/PHPCSStandards/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`. 3. [PHP Unit](https://phpunit.de/): `composer phpunit`. 6. Create your own repository cleaning the bootstrap project history: 1. Remove previous Git history in order to do not add the bootstrap repo noise in your project: `rm -rf .git`