-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.15 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
{
"name": "dreadnip/chrome-pdf-bundle",
"type": "symfony-bundle",
"description": "A wrapper around chrome-php/chrome to generate PDFs in Symfony projects",
"keywords": ["Symfony", "PDF", "Chrome", "Chromium"],
"license": "MIT",
"authors": [
{
"name": "Sander De la Marche",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0",
"chrome-php/chrome": "^1.8",
"symfony/dependency-injection": "^3.4 || ^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/http-kernel": "^3.4 || ^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/config": "^3.4 || ^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/process": "^3.4 || ^4.4 || ^5.2 || ^6.0 || ^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^7.5.20 || ^8.5.13 || ^9.5.0",
"symfony/phpunit-bridge": "^4.3",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan-symfony": "^1.2"
},
"autoload": {
"psr-4": {
"Dreadnip\\ChromePdfBundle\\": "src/"
}
},
"autoload-dev":{
"psr-4" : {
"Dreadnip\\ChromePdfBundle\\Test\\": "tests/"
}
}
}