name: php-diagrams description: > Generate Mermaid diagrams from PHP codebases by researching actual project code. Use this skill whenever the user asks to create, generate, or update diagrams, flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, or any visual documentation for their PHP project. Also trigger when the user says things like "diagram the payment flow", "show me how registration works", "visualize the database schema", "map out the Stripe integration", "document the architecture", or any request to understand or document code visually. Trigger even if the user doesn't explicitly say "diagram" — phrases like "how does X flow work" or "show me the
This file contains hidden or 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
| # ============================================================================= | |
| # PHP Diagrams Skill Configuration | |
| # ============================================================================= | |
| # | |
| # Place this file in your project root as `.diagrams.yaml` or `.diagrams.yml`. | |
| # All fields are optional — defaults are shown below. | |
| # Delete or comment out anything you don't need to customize. | |
| # | |
| # ----------------------------------------------------------------------------- |
Learn how to send emails through Gmail SMTP with Cloudflare Email Routing in this comprehensive guide.
To proceed with this method, ensure that you have enabled two-factor authentication for your Google account. If you haven't done so already, you can follow the link to set it up → Enable 2FA in your Google account.
This file contains hidden or 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
| <?php | |
| namespace App\Builders; | |
| use Illuminate\Database\Eloquent\Builder; | |
| class ExempleBuilder extends Builder | |
| { | |
| /** | |
| * @param string name |