scotteuser / twigcs-fractal
Checkstyle automation for Fractal Twig
Installs: 1 969
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.4 || ^8.0
- friendsoftwig/twigcs: ^5.1|dev-main
This package is auto-updated.
Last update: 2025-03-18 16:37:52 UTC
README
This extends the excellent Twigcs to provide a ruleset for the Fractal Render component.
Installation
This is available as a package on packagist: https://packagist.org/packages/scotteuser/twigcs-fractal
composer require scotteuser/twigcs-fractal
What does this do?
Consider the following Fractal code:
{% set card_label = 'Hello' %} {% render "@card" with { label: card_label } %}
Twigcs by default will consider card_label
as an unused
variable because it does not know of Fractal's render
tag.
How do you use it?
Add a file .twig_cs.dist
to your project root and change your
project to use this ruleset.
<?php return \FriendsOfTwig\Twigcs\Config\Config::create() ->setRuleSet(ScottEuser\FractalTwigcs\Ruleset\Fractal::class);