diff --git a/CHANGELOG.md b/CHANGELOG.md index 12aba2a..efc8348 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -87,7 +87,7 @@ - Temporarily disable `ArrayDeclarationSniff.ValueNoNewline` because of [bug](https://github.com/squizlabs/PHP_CodeSniffer/issues/2937) in PHP_CodeSniffer 3.5.5. ## 2.0.0 - 2020-03-02 -- BC: change the way the standard is imported to your `easy-coding-standard.yaml` (change `%vendor_dir%` placeholder directly to name of the vendor directory like `vendor`). See example in [README](https://github.com/lmc-eu/php-coding-standard#usage). +- BC: change the way the standard is imported to your `easy-coding-standard.yaml` (change `%vendor_dir%` placeholder directly to name of the vendor directory like `vendor`). See example in [README](https://github.com/alma-oss/php-coding-standard#usage). - Drop PHP 7.1 support. - Require EasyCodingStandard 7+. - `VisibilityRequiredFixer` now check visibility is declared also on class constants. diff --git a/UPGRADE-4.0.md b/UPGRADE-4.0.md index 590c5cb..f97034f 100644 --- a/UPGRADE-4.0.md +++ b/UPGRADE-4.0.md @@ -35,7 +35,7 @@ Now change the way you set rules, skip tests and import sets: | `$parameters->set(Option::SKIP, ...)` | `ECSConfig::configure()->withSkip()` | | `$containerConfigurator->import()` | `ECSConfig::configure()->withSets()` | -See [examples in Usage section of our README](https://github.com/lmc-eu/php-coding-standard?tab=readme-ov-file#usage) +See [examples in Usage section of our README](https://github.com/alma-oss/php-coding-standard?tab=readme-ov-file#usage) or more configuration options in [ECS documentation](https://github.com/easy-coding-standard/easy-coding-standard/tree/main?tab=readme-ov-file#configure). Some more reasoning and examples of configurations can also be seen [in ECS author blogpost](https://tomasvotruba.com/blog/new-in-ecs-simpler-config). @@ -88,7 +88,7 @@ $ vendor/bin/ecs check --ansi # new ### 6. Add some optional rules On top of default rules included in ecs.php, there are some more opinionated ones you may want to add. -These suggested rules are listed in [README.md](https://github.com/lmc-eu/php-coding-standard?tab=readme-ov-file#add-custom-checks-or-override-default-settings). +These suggested rules are listed in [README.md](https://github.com/alma-oss/php-coding-standard?tab=readme-ov-file#add-custom-checks-or-override-default-settings). ### 5. BE CAREFUL WITH SUGGESTED CHANGES! ⚠️