-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
80 lines (80 loc) · 2.27 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "t3g/symfony-template-bundle",
"type": "symfony-bundle",
"description": "TYPO3 Template Bundle",
"keywords": [
"TYPO3",
"Templates"
],
"homepage": "http://www.typo3.com",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Benjamin Kott",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"erusev/parsedown": "^1.7 || 2.*.*@dev",
"knplabs/knp-menu-bundle": "^2.2 || ^3.0",
"knplabs/knp-paginator-bundle": "^3.0 || ^4.0 || ^5.0",
"setasign/fpdi": "^2.3",
"symfony/asset": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/deprecation-contracts": "^2.5 || ^3.0",
"symfony/form": "^5.4 || ^6.4",
"symfony/framework-bundle": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/security-bundle": "^5.4 || ^6.4",
"symfony/translation": "^5.4 || ^6.4",
"symfony/twig-bundle": "^5.4 || ^6.4",
"tecnickcom/tcpdf": "^6.7",
"twig/twig": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"overtrue/phplint": "^3.0 || ^4.0",
"symfony/phpunit-bridge": "^5.4 || ^6.4",
"symfony/webpack-encore-bundle": "^1.13"
},
"suggest": {
"symfony/webpack-encore-bundle": "Needed to support encore entrypoints."
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"optimize-autoloader": true,
"vendor-dir": "vendor"
},
"scripts": {
"t3g:test:php:unit": [
"simple-phpunit -c phpunit.xml.dist --testsuite \"Unit Test Suite\""
],
"t3g:cgl": [
"php-cs-fixer fix -v --dry-run"
],
"t3g:cgl:fix": [
"php-cs-fixer fix"
],
"t3g:test:php:lint": [
"phplint"
],
"t3g:test": [
"@t3g:cgl",
"@t3g:test:php:lint",
"@t3g:test:php:unit"
]
},
"autoload": {
"psr-4": {
"T3G\\Bundle\\TemplateBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"T3G\\Bundle\\TemplateBundle\\Tests\\": "tests/"
}
}
}