forked from psliwa/PdfBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.33 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
41
42
43
44
{
"name": "psliwa/pdf-bundle",
"description": "This bundle integrates Symfony 3.4/4 with PHPPdf library.",
"keywords": ["PDF", "PHPPdf"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Piotr Śliwa",
"homepage": "http://psliwa.org",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": "^7.1",
"doctrine/annotations": "^1.0",
"psliwa/php-pdf": "^1.1.5",
"sensio/framework-extra-bundle": "^2|^3|^4|^5",
"symfony/config": "^3.4|^4.0",
"symfony/dependency-injection": "^3.4|^4.0",
"symfony/event-dispatcher": "^3.4|^4.0",
"symfony/framework-bundle": "^3.4|^4.0",
"symfony/http-foundation": "^3.4|^4.0",
"symfony/http-kernel": "^3.4|^4.0",
"symfony/templating": "^3.4|^4.0",
"twig/twig": "^1.0|^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "^7.5.11|^8.0",
"symfony/phpunit-bridge": "^4.2"
},
"autoload": {
"psr-4": { "Ps\\PdfBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Ps\\PdfBundle\\Tests\\": "tests" }
}
}