-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 900 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
{
"name": "gglnx/twig-component-handle-loader",
"description": "Load Twig templates using Fractal-style component handles",
"type": "library",
"keywords": ["twig", "twig-loader"],
"version": "2.0.1",
"license": "MIT",
"authors": [
{
"name": "Dennis Morhardt",
"email": "[email protected]",
"homepage": "https://dennismorhardt.de/"
}
],
"support": {
"issues": "https://github.com/gglnx/twig-component-handle-loader/issues?state=open",
"source": "https://github.com/gglnx/twig-component-handle-loader",
"docs": "https://github.com/gglnx/twig-component-handle-loader"
},
"require": {
"php": ">=7.2.5",
"twig/twig": "^3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Gglnx\\TwigComponentHandleLoader\\": "src/"
}
}
}