-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
48 lines (48 loc) · 1.85 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
{
"name": "bobv/latex-bundle",
"description": "Latex and pdf generator for Symfony 2",
"keywords": ["latex", "pdf", "generator", "symfony"],
"type": "symfony-bundle",
"homepage": "https://github.com/bobvandevijver/latex-bundle",
"license": "MIT",
"authors": [
{
"name": "Bob van de Vijver",
"email": "bobvandevijver@hotmail.com"
}
],
"require": {
"php": ">=8.1",
"symfony/config": "^5.4 || ^6.2 || ^7.1",
"symfony/console": "^5.4 || ^6.2 || ^7.1",
"symfony/dependency-injection": "^5.4 || ^6.2 || ^7.1",
"symfony/filesystem": "^5.4 || ^6.2 || ^7.1",
"symfony/finder": "^5.4 || ^6.2 || ^7.1",
"symfony/form": "^5.4 || ^6.2 || ^7.1",
"symfony/framework-bundle": "^5.4 || ^6.2 || ^7.1",
"symfony/http-foundation": "^5.4 || ^6.2 || ^7.1",
"symfony/http-kernel": "^5.4 || ^6.2 || ^7.1",
"symfony/options-resolver": "^5.4 || ^6.2 || ^7.1",
"symfony/process": "^5.4 || ^6.2 || ^7.1",
"twig/twig": "^2.15 || ^3.0"
},
"require-dev": {
"symfony/string": "^5.4 || ^6.2 || ^7.1",
"symfony/lock": "^5.4 || ^6.2 || ^7.1",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"friendsofsymfony/ckeditor-bundle": "Allows the usage of the bobv_latex form type, and easily integrates ckeditor into your Symfony application",
"spatie/pdf-to-image": "Allows you to convert PDF output into a image.",
"symfony/lock": "Allows you to generate the pdf file under lock with the LockedLatexGeneratorInterface",
"symfony/string": "Allows for extended unicode character escaping, available from Symfony 5.4.x-dev and above"
},
"autoload": {
"psr-4": {
"Bobv\\LatexBundle\\": "src/"
}
},
"scripts": {
"test": "phpunit"
}
}