-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 847 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
{
"name": "ed.sukharev/twig-picture-extension",
"description": "A Twig extension to generate picture tags",
"keywords": ["twig", "images", "pictures"],
"homepage": "https://github.com/eduard-sukharev/TwigPictureExtension",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eduard Sukharev",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"twig/twig": ">=1.0,<=1.36.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"phpdocumentor/reflection-docblock": "~2.0.5",
"doctrine/instantiator": "~1.0.5"
},
"suggest": {
"ext-fileinfo": "Allows for more precise MIME type generation"
},
"autoload": {
"psr-4": { "PictureExtension\\Twig\\Extension\\": "src" }
}
}