-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 962 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 962 Bytes
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
{
"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": "prager.adam87@gmail.com"
}
],
"autoload": {
"psr-4": { "Padam87\\RasterizeBundle\\": "" }
},
"require": {
"php": "^8.4",
"symfony/config": "^6.0 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^6.0 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.0 || ^7.0 || ^8.0",
"symfony/process": "^6.0 || ^7.0 || ^8.0",
"symfony/stopwatch": "^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^12.0"
},
"scripts": {
"test": "phpunit"
}
}