huluti / doctrine-relations-analyser
A Symfony bundle that provides tools for analyzing Doctrine relationships
Fund package maintenance!
Liberapay
Installs: 1 222
Dependents: 0
Suggesters: 0
Security: 0
Stars: 12
Watchers: 1
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=8.1
- doctrine/doctrine-bundle: ^2.12
- doctrine/orm: ^2.0|^3.0
- graphp/graph: ^1@dev
- graphp/graphviz: ^1@dev
- symfony/console: ^6.4|^7.0
- symfony/dependency-injection: ^6.4|^7.0
- symfony/filesystem: ^6.4|^7.0
- symfony/framework-bundle: ^6.4|^7.0
- symfony/http-kernel: ^6.4|^7.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.59
- phpstan/phpstan: ^1.11
- phpunit/phpunit: ^9
- symfony/phpunit-bridge: ^6.4|^7.0
- symfony/yaml: ^6.4|^7.0
README
Overview
Doctrine Relations Analyzer is a tool designed to analyze and visualize cascade relationships within Doctrine ORM entities in Symfony projects. It helps developers understand how deletion operations propagate through related entities and assists in identifying potential issues or optimizations in data management strategies.
Note
Why is it important?
Managing cascade operations, especially deletions, is crucial to avoid unintentional data loss. This tool provides a human-readable summary to help developers review and understand these relationships, ensuring they are intentional and correctly implemented.
Warning
This project is a work in progress. Contributions and feedback are welcome.
Usage
Requirements
- PHP >= 8.1
- Symfony >= 6.4
- Doctrine 2|3
- Graphviz package:
- For Alpine Linux:
graphviz fontconfig ttf-freefont
- For Alpine Linux:
Installation
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
composer require --dev huluti/doctrine-relations-analyser
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:
composer require --dev huluti/doctrine-relations-analyser
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:
// config/bundles.php return [ // ... DoctrineRelationsAnalyserBundle\DoctrineRelationsAnalyserBundle::class => ['dev' => true, 'test' => true], ];
Usage
php bin/console doctrine-relations-analyser:analyse
Examples
To check deletion relations of two entities in a graph:
php bin/console doctrine-relations-analyser:analyse -o data/ -g --entities="App\\Entity\\User,App\\Entity\\Workspace" -m deletions
Command-line Arguments
- --entities: Optional. Comma-separated list of entities to analyze
- -m, --mode: Optional. Analysis mode (all, deletions) [default: "all"]
- -o, --output: Optional. Output path for reports generated
- -g, --graph: Optional. Generate Graphviz graph
- --graph-format: Optional. Graph image format (png, svg) [default: "png"]
- -V, --version: Optional. Display help for the given command. When no command is given display help for the list command
- -h, --help: Optional. Display this application version
Limitations
- Only work with first joinColumn for now.
Contributions
Contributions are welcome! If you have ideas for improvements, new features, or bug fixes, please open an issue or a pull request.
Interesting readings
Donations
Do you like the tool? Would you like to support its development? Feel free to donate 🤗
License
This project is licensed under the MIT License.