-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
34 lines (34 loc) · 1.13 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
{
"name": "massive/pdf-bundle",
"description": "The Massive Bundle for managing pdf documents",
"license": "MIT",
"keywords": ["massive", "pdf"],
"authors": [
{
"name": "MassiveArt Webservices GmbH",
"homepage": "https://github.com/massiveart/MassivePdfBundle/contributors"
}
],
"require": {
"php": ">=5.4",
"knplabs/knp-snappy-bundle": "^1.4",
"twig/twig": "^1.0 || ^2.0 || ^3.0",
"symfony/http-kernel": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/http-foundation": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/config": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^3.4 || ^4.0 || ^5.0 || ^6.0"
},
"autoload": {
"psr-4": {
"Massive\\Bundle\\PdfBundle\\": ""
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13"
},
"scripts": {
"php-cs": "vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"php-cs-fix": "vendor/bin/php-cs-fixer fix --verbose --diff"
}
}