-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
49 lines (49 loc) · 1.13 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "tales-from-a-dev/twig-tailwind-extra",
"description": "A Twig extension for Tailwind",
"type": "twig",
"keywords": [
"twig",
"tailwind",
"symfony",
"extension"
],
"homepage": "https://github.com/tales-from-a-dev/twig-tailwind-extra",
"license": "MIT",
"authors": [
{
"name": "Romain Monteil",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"gehrisandro/tailwind-merge-php": "^1.0",
"symfony/cache": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"twig/twig": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.38",
"symfony/phpunit-bridge": "^6.4 || ^7.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"TalesFromADev\\Twig\\Extra\\Tailwind\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TalesFromADev\\Twig\\Extra\\Tailwind\\Tests\\": "tests/"
}
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix -v --dry-run",
"cs:fix": "vendor/bin/php-cs-fixer fix -v",
"test": "vendor/bin/simple-phpunit"
}
}