-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (37 loc) · 911 Bytes
/
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
{
"name": "open-administration/php-latex-renderer",
"description": "Renders LaTeX Templates in PHP",
"type": "libary",
"license": "MIT",
"version": "1.1.8",
"authors": [
{
"name": "Lukas Staab",
"email": "l.staab@posteo.de"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"symfony/process": "^5.3|^6.0",
"twig/twig": "^3.3",
"psr/log": "^1|^2|^3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.2",
"monolog/monolog": "^2.3"
},
"autoload": {
"psr-4": {
"PhpLatexRenderer\\": "src/"
}
},
"scripts": {
"check": [
"@cs"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff"
}
}