-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.12 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.12 KB
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": "sander@sumocoders.be"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0",
"chrome-php/chrome": "^1.8",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.4 || ^8.0",
"symfony/config": "^5.4 || ^6.4 || ^7.4 || ^8.0",
"symfony/process": "^5.4 || ^6.4 || ^7.4 || ^8.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/"
}
}
}