-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (41 loc) · 958 Bytes
/
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
{
"name": "lukasz-zaroda/twig-hints-bundle",
"type": "symfony-bundle",
"description": "description",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Łukasz Zaroda",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^6.1|^7",
"symfony/twig-bundle": "^5|^6|^7",
"lukasz-zaroda/twig-hints": "^1"
},
"require-dev": {
"phpunit/phpunit": "^10.5.30",
"phpstan/phpstan": "^1.11",
"symfony/yaml": "^6|^7",
"friendsofphp/php-cs-fixer": "^3.62",
"phpcompatibility/php-compatibility": "dev-develop"
},
"autoload": {
"psr-4": {
"LukaszZaroda\\TwigHintsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LukaszZaroda\\TwigHintsBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}