forked from KnpLabs/KnpSnappyBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.36 KB
/
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
{
"name": "knplabs/knp-snappy-bundle",
"type": "symfony-bundle",
"description": "Easily create PDF and images in Symfony by converting Twig/HTML templates.",
"keywords": ["snappy", "pdf", "knplabs", "knp", "bundle"],
"homepage": "http://github.com/KnpLabs/KnpSnappyBundle",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "Symfony Community",
"homepage": "http://github.com/KnpLabs/KnpSnappyBundle/contributors"
}
],
"require": {
"php": ">=7.4",
"symfony/framework-bundle": "^4.4|^5.1|^6.0",
"knplabs/knp-snappy": "^1.2"
},
"autoload": {
"psr-4": {
"Knp\\Bundle\\SnappyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Knp\\Bundle\\SnappyBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"doctrine/annotations": "^1.11",
"symfony/asset": "^4.4|^5.1|^6.0",
"symfony/finder": "^4.4|^5.1|^6.0",
"symfony/phpunit-bridge": "^4.4|^5.1|^6.0",
"symfony/security-csrf": "^4.4|^5.1|^6.0",
"symfony/templating": "^4.4|^5.1|^6.0",
"symfony/validator": "^4.4|^5.1|^6.0",
"symfony/yaml": "^4.4|^5.1|^6.0"
}
}