-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 909 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
{
"name": "lukasz-zaroda/twig-hints",
"description": "Adds helpful comments to rendered templates.",
"type": "library",
"require": {
"php": ">=8.1",
"twig/twig": "^v3.9"
},
"require-dev": {
"phpunit/phpunit": "^11.3.1",
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.62",
"phpcompatibility/php-compatibility": "dev-develop"
},
"autoload": {
"psr-4": {
"LukaszZaroda\\TwigHints\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LukaszZaroda\\TwigHints\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Łukasz Zaroda",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}