-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.29 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
45
46
47
48
49
50
51
52
53
{
"name": "cyberspectrum/pdflatex-bundle",
"description": "pdflatex bundle",
"keywords": [
"pdflatex",
"symfony"
],
"type": "symfony-bundle",
"homepage": "http://www.cyberspectrum.de/",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "http://www.cyberspectrum.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/cyberspectrum/pdflatex-bundle/issues",
"source": "https://github.com/cyberspectrum/pdflatex-bundle"
},
"require": {
"php": "^7.2",
"symfony/config": "^4.4 | ^5.0",
"symfony/dependency-injection": "^4.4 | ^5.0",
"symfony/filesystem": "^4.4 | ^5.0",
"symfony/http-foundation": "^4.4 | ^5.0",
"symfony/http-kernel": "^4.4.13 | ^5.1.5",
"symfony/process": "^4.4 | ^5.0"
},
"require-dev": {
"phpcq/all-tasks": "^1.2.1",
"twig/twig": "^3.0",
"symfony/twig-bundle": "^4.0 | ^5.0"
},
"autoload": {
"psr-4": {
"CyberSpectrum\\PdfLatexBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CyberSpectrum\\PdfLatexBundle\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}