-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
32 lines (32 loc) · 966 Bytes
/
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
{
"name": "padam87/rasterize-bundle",
"type": "symfony-bundle",
"description": "HTML to PDF Symfony bundle. Works with Puppeteer, PhantomJS, and more.",
"license": "MIT",
"keywords": ["symfony", "rasterize", "pdf", "puppeteer", "phantomjs"],
"homepage": "https://github.com/Padam87/RasterizeBundle",
"authors": [
{
"name": "Adam Prager",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Padam87\\RasterizeBundle\\": "" }
},
"require": {
"php": "^8.0",
"symfony/config": "^5.4|^6.0|^7.0",
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
"symfony/http-kernel": "^5.4|^6.0|^7.0",
"symfony/process": "^5.4|^6.0|^7.0",
"symfony/stopwatch": "^5.4|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"mockery/mockery": "~1.4"
},
"scripts": {
"test": "phpunit"
}
}