-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 920 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
43
44
{
"name": "curler7/twig-base64-extension-bundle",
"description": "Convert images to base64 by twig filter",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Gunnar Suwe",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"symfony/serializer": ">=5.3",
"symfony/framework-bundle": ">=5.3",
"twig/twig": ">=3.3"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5.24"
},
"autoload": {
"psr-4": {
"Curler7\\TwigBase64ExtensionBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Curler7\\TwigBase64ExtensionBundle\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.3.*",
"docker": true
}
}
}