Skip to content

Commit 43e95a3

Browse files
committed
[Toolkit] Remove tales-from-a-dev/twig-tailwind-extra dependency, to allow PHP 8.1 minimal support
1 parent b907659 commit 43e95a3

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/Toolkit/composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
}
2929
],
3030
"require": {
31-
"php": ">=8.2",
31+
"php": ">=8.1",
3232
"twig/twig": "^3.0",
3333
"symfony/console": "^6.4|^7.0",
3434
"symfony/filesystem": "^6.4|^7.0",
@@ -39,7 +39,6 @@
3939
},
4040
"require-dev": {
4141
"symfony/finder": "6.4|^7.0",
42-
"tales-from-a-dev/twig-tailwind-extra": "^0.3.0",
4342
"twig/extra-bundle": "^3.19|^4.0",
4443
"twig/html-extra": "^3.19",
4544
"zenstruck/console-test": "^1.7",

src/Toolkit/tests/Fixtures/Kernel.php

-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
1919
use Symfony\UX\Toolkit\UXToolkitBundle;
2020
use Symfony\UX\TwigComponent\TwigComponentBundle;
21-
use TalesFromADev\Twig\Extra\Tailwind\Bridge\Symfony\Bundle\TalesFromADevTwigExtraTailwindBundle;
2221

2322
final class Kernel extends BaseKernel
2423
{
@@ -31,7 +30,6 @@ public function registerBundles(): iterable
3130
new TwigBundle(),
3231
new TwigComponentBundle(),
3332
new UXToolkitBundle(),
34-
new TalesFromADevTwigExtraTailwindBundle(),
3533
];
3634
}
3735

0 commit comments

Comments
 (0)