-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
53 lines (53 loc) · 1.25 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
50
51
52
53
{
"name": "tales-from-a-dev/flowbite-bundle",
"description": "A Symfony form theme for Flowbite",
"type": "symfony-bundle",
"keywords": [
"symfony",
"form",
"theme",
"bundle",
"flowbite"
],
"homepage": "https://github.com/tales-from-a-dev/flowbite-bundle",
"license": "MIT",
"authors": [
{
"name": "Romain Monteil",
"email": "monteil.romain@gmail.com"
}
],
"require": {
"php": ">=8.2",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/twig-bridge": "^6.4 || ^7.0",
"tales-from-a-dev/twig-tailwind-extra": "^0.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.15",
"phpunit/phpunit": "^10.0",
"symfony/form": "^6.4 || ^7.0",
"symfony/intl": "^6.4 || ^7.0",
"symfony/security-csrf": "^6.4 || ^7.0",
"symfony/translation": "^6.4 || ^7.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"TalesFromADev\\FlowbiteBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TalesFromADev\\FlowbiteBundle\\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/phpunit"
}
}