This component is used in eureka/kernel-http component.
This is a simple implementation of the PSR-15 (Request Handler).
You can run tests on your side with following commands:
make php/tests # run tests with coverage
make php/test # run tests with coverage
make php/testdox # run tests without coverage reports but with prettified outputYou also can run code style check or code style fixes with following commands:
make php/check # run checks on check style
make php/fix # run check style auto fixTo perform a static analyze of your code (with phpstan, lvl 9 at default), you can use the following command:
make php/analyze # Same as phpstan but with CLI output as tableTo ensure you code still compatible with current supported version and futures versions of php, you need to run the following commands (both are required for full support):
make php/min-compatibility # run compatibility check on current minimal version of php we support
make php/max-compatibility # run compatibility check on last version of php we will support in futureAnd the last "helper" commands, you can run before commit and push is:
make ciThis command clean the previous reports, install component if needed and run tests (with coverage report), check the code style and check the php compatibility check, as it would be done in our CI.
See the CONTRIBUTING file.
This project is currently under The MIT License (MIT). See LICENCE file for more information.