-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from jakzal/php-8.2
Add PHP 8.2 support
- Loading branch information
Showing
8 changed files
with
114 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
parameters: | ||
paths: | ||
- ./src | ||
exclude_files: [] | ||
layers: | ||
- name: Symfony Compiler | ||
collectors: | ||
- type: className | ||
regex: ^Zalas\\Injector\\PHPUnit\\Symfony\\Compiler\\.* | ||
- name: Symfony TestCase | ||
collectors: | ||
- type: className | ||
regex: ^Zalas\\Injector\\PHPUnit\\Symfony\\TestCase\\.* | ||
- name: TestCase | ||
collectors: | ||
- type: className | ||
regex: ^Zalas\\Injector\\PHPUnit\\TestCase\\.* | ||
- name: TestListener | ||
collectors: | ||
- type: className | ||
regex: ^Zalas\\Injector\\PHPUnit\\TestListener\\.* | ||
- name: Injector Service | ||
collectors: | ||
- type: className | ||
regex: ^Zalas\\Injector\\Service\\.* | ||
- name: Injector Factory | ||
collectors: | ||
- type: className | ||
regex: ^Zalas\\Injector\\Factory\\.* | ||
- name: Psr Container | ||
collectors: | ||
- type: className | ||
regex: ^Psr\\Container\\.* | ||
- name: Symfony Config | ||
collectors: | ||
- type: className | ||
regex: ^Symfony\\Component\\Config\\.* | ||
- name: Symfony DependencyInjection | ||
collectors: | ||
- type: className | ||
regex: ^Symfony\\Component\\DependencyInjection\\.* | ||
- name: Symfony HttpKernel | ||
collectors: | ||
- type: className | ||
regex: ^Symfony\\Component\\HttpKernel\\.* | ||
- name: Symfony Service Contracts | ||
collectors: | ||
- type: className | ||
regex: ^Symfony\\Contracts\\Service\\.* | ||
- name: PHPUnit | ||
collectors: | ||
- type: className | ||
regex: ^PHPUnit\\Framework\\.* | ||
- name: Other Vendors | ||
collectors: | ||
- type: bool | ||
must: | ||
# must be outside of global namespace | ||
- type: className | ||
regex: '[\\]+' | ||
must_not: | ||
# must not be one of the known vendors | ||
- type: className | ||
regex: ^Zalas\\Injector\\PHPUnit\\.* | ||
- type: className | ||
regex: ^Zalas\\Injector\\Service\\.* | ||
- type: className | ||
regex: ^Zalas\\Injector\\Factory\\.* | ||
- type: className | ||
regex: ^Psr\\Container\\.* | ||
- type: className | ||
regex: ^PHPUnit\\Framework\\.* | ||
- type: className | ||
regex: ^Symfony\\Component\\Config\\.* | ||
- type: className | ||
regex: ^Symfony\\Component\\DependencyInjection\\.* | ||
- type: className | ||
regex: ^Symfony\\Component\\HttpKernel\\.* | ||
- type: className | ||
regex: ^Symfony\\Contracts\\Service\\.* | ||
ruleset: | ||
Symfony Compiler: | ||
- Injector Factory | ||
- Injector Service | ||
- PHPUnit | ||
- TestCase | ||
- Symfony Config | ||
- Symfony DependencyInjection | ||
Symfony TestCase: | ||
- Psr Container | ||
- Symfony DependencyInjection | ||
- Symfony HttpKernel | ||
- Symfony Service Contracts | ||
TestCase: | ||
- Psr Container | ||
TestListener: | ||
- TestCase | ||
- Injector Service | ||
- Injector Factory | ||
- Psr Container | ||
- PHPUnit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters