yzen.dev / laravel-route-coverage
Laravel route coverage
Installs: 3 776
Dependents: 0
Suggesters: 0
Security: 0
Stars: 21
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: ^7.4 | ^8.0
- illuminate/config: ^7.0 || ^v8.0
- illuminate/console: ^7.0 || ^v8.0
- illuminate/routing: ^7.0 || ^v8.0
Requires (Dev)
- mockery/mockery: ^1.0
- phpstan/phpstan: ^0.12.82
- phpunit/phpunit: ^9.3
- squizlabs/php_codesniffer: *
README
Laravel route coverage report.
With this package you can see the percentage of test coverage of your routes. Unless of course you do it through Laravel or PHPUnit tests.
How it works?
The package will scan all your tests collecting all the http queries that are called in them. After that, it will compare the results with the routes of your application. Routes are taken only by the App
prefix to exclude vendor routes.
📜 Installation
The package can be installed via composer:
composer require yzen.dev/laravel-route-coverage --dev
📜 Usage
Generate report:
php artisan route:coverage
After executing the command, the result of the report will be displayed in the console in the following form:
Possible options:
php artisan route:coverage --group-by-controller
In this case, all the results will be grouped by controllers, displaying how many actions there are in the controller, and how many of them are covered by tests.
php artisan route:coverage --html
Due to the --html
option, you will also receive a generated report in the html page. The report will be located in the public directory public/route-coverage