-
Notifications
You must be signed in to change notification settings - Fork 143
/
composer.json
37 lines (37 loc) · 1.08 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
{
"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": ">=8.1",
"symfony/framework-bundle": "^5.1|^6.0|^7.0",
"knplabs/knp-snappy": "^1.4.3"
},
"autoload": {
"psr-4": {
"Knp\\Bundle\\SnappyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Knp\\Bundle\\SnappyBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"symfony/yaml": "^5.1|^6.0|^7.0"
}
}