-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
62 lines (62 loc) · 1.97 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "pontedilana/weasyprint-bundle",
"description": "Easily create PDF in Symfony by converting Twig/HTML templates.",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"weasyprint",
"pdf",
"bundle",
"symfony-bundle"
],
"authors": [
{
"name": "Pontedilana Dev Team",
"homepage": "https://www.pontedilana.it"
}
],
"require": {
"php": "7.4.* || 8.0.* || 8.1.* || 8.2.* || 8.3.* || 8.4.*",
"pontedilana/php-weasyprint": "^1.0",
"symfony/config": "^5.4 || ^6.3 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.3 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.3 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.3 || ^7.0"
},
"require-dev": {
"doctrine/annotations": "^1.11 || ^2.0",
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^9.6",
"symfony/framework-bundle": "^5.4 || ^6.3 || ^7.0",
"symfony/phpunit-bridge": "^5.4 || ^6.3 || ^7.0",
"symfony/validator": "^5.4 || ^6.3 || ^7.0",
"symfony/yaml": "^5.4 || ^6.3 || ^7.0"
},
"autoload": {
"psr-4": {
"Pontedilana\\WeasyprintBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pontedilana\\WeasyprintBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
}
},
"scripts": {
"check-cs": "vendor/bin/php-cs-fixer fix --diff --dry-run --verbose",
"fix-cs": "vendor/bin/php-cs-fixer fix --verbose",
"static-analysis": "vendor/bin/phpstan analyse --ansi",
"test": "vendor/bin/phpunit"
}
}