Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orbeji/unused-routes
Symfony bundle to detect unused routes
https://github.com/orbeji/unused-routes
symfony symfony-bundle
Last synced: about 1 month ago
JSON representation
Symfony bundle to detect unused routes
- Host: GitHub
- URL: https://github.com/orbeji/unused-routes
- Owner: orbeji
- Created: 2023-12-31T09:00:15.000Z (11 months ago)
- Default Branch: develop
- Last Pushed: 2024-01-19T20:54:10.000Z (10 months ago)
- Last Synced: 2024-09-30T16:20:11.643Z (about 2 months ago)
- Topics: symfony, symfony-bundle
- Language: PHP
- Homepage:
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![Tests](https://github.com/orbeji/unused-routes/actions/workflows/tests.yml/badge.svg)
![Static analysis](https://github.com/orbeji/unused-routes/actions/workflows/static.yml/badge.svg)
![Symfony & php compatibility](https://github.com/orbeji/unused-routes/actions/workflows/compatibility.yml/badge.svg)## About The Project
This project is a Symfony bundle that gives you information about the (un)used routes in your application.
With this information you can safely delete the unused routes from your code.![](docs/screenshots/list.png)
## Getting Started
### Installation
Make sure Composer is installed globally, as explained in the
[installation chapter](https://getcomposer.org/doc/00-intro.md)
of the Composer documentation.### Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
```console
$ composer require orbeji/unused-routes
```### Applications that don't use Symfony Flex
#### Step 1: Download the Bundle
Open a command console, enter your project directory and execute the
following command to download the latest stable version of this bundle:```console
$ composer require orbeji/unused-routes
```#### Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the `config/bundles.php` file of your project:```php
// config/bundles.phpreturn [
// ...
Orbeji\UnusedRoutes\UnusedRoutesBundle::class => ['all' => true],
];
```## Usage
After the installation the bundle will start registering the users activity.
This activity will be stored by default in a file in `%kernel.logs_dir%/accessed_routes{Ymd}.log`To know which routes are unused execute the following command:
```bash
php bin/console unused-routes:list
```
This will show a table like this:
```bash
---------------------- ------- -------------
Route #Uses Last access
---------------------- ------- -------------
ux_live_component 0 -
admin_index 0 -
admin_post_index 0 -
admin_post_new 0 -
admin_post_show 0 -
admin_post_edit 0 -
admin_post_delete 0 -
blog_rss 0 -
blog_index_paginated 0 -
blog_post 0 -
comment_new 0 -
blog_search 0 -
security_login 0 -
user_edit 0 -
user_change_password 0 -
---------------------- ------- -------------
```Also you can pass the option `--show-all-routes` to add the info of the used routes
```bash
php bin/console unused-routes:list --show-all-routes
```
This will show a table like this:
```
---------------------- ------- -------------
Route #Uses Last access
---------------------- ------- -------------
ux_live_component 0 -
homepage 4 16/01/2024
admin_index 0 -
admin_post_index 0 -
admin_post_new 0 -
admin_post_show 0 -
admin_post_edit 0 -
admin_post_delete 0 -
blog_index 1 06/01/2024
blog_rss 0 -
blog_index_paginated 0 -
blog_post 0 -
comment_new 0 -
blog_search 0 -
security_login 0 -
user_edit 0 -
user_change_password 0 -
---------------------- ------- -------------
```
Now the routes that have been accessed also appear here with some info of the number of acceses and the date of the last one.### Configuration
There are only two parameters in this bundle. The path where the file is stores and the filename.
```yaml
unused_routes:
file_path: '%kernel.logs_dir%'
file_name: 'accessed_routes.log'
```
### Replacing how logs are stored/read
If you want to replace the way of storing logs like using a database or another storaging strategy you can create your own service implementing the following interface:
```php## Roadmap
- [x] Write a log file per day
- [x] Add tests
- [x] Add pipelines
- [x] Check style
- [x] Run Tests
- [x] Coverage check
- [x] Phpstan
- [x] Improve Readme with description and usage
- [ ] Multiple routes can be assigned to the same action, take this into account in the result table
- [ ] See if it's possible/worth it to autogenerate a bundle config file when installing
- [ ] Add more methods to store/read logs
- [ ] Add configuration to replace how we store/read logsSee the [open issues](https://github.com/orbeji/unused-routes/issues) for a full list of proposed features (and known issues).
## Contributing
Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.Please make sure to update tests as appropriate and that all the Github Actions are passing.
## License
Distributed under the [MIT](https://choosealicense.com/licenses/mit/) License.
## Contact
Project Link: [https://github.com/orbeji/unused-routes](https://github.com/orbeji/unused-routes)