-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
50 lines (50 loc) · 1.41 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
{
"name": "pontedilana/php-weasyprint",
"description": "PHP library allowing PDF generation from an url or a html page. Wrapper for Kozea/WeasyPrint.",
"license": "MIT",
"type": "library",
"keywords": [
"weasyprint",
"pdf",
"php"
],
"authors": [
{
"name": "Pontedilana Dev Team",
"homepage": "https://www.pontedilana.it"
}
],
"require": {
"php": "7.4.* || 8.0.* || 8.1.* || 8.2.* || 8.3.* || 8.4.*",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"symfony/process": "^5.4 || ^6.2 || ^7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-phpunit": "^1.4",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Pontedilana\\PhpWeasyPrint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pontedilana\\PhpWeasyPrint\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": 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",
"unit-tests": "vendor/bin/phpunit"
}
}