-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.52 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
{
"name": "demos-europe/document-bakery",
"description": "Compile Word documents from YAML descriptions.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Alexander Meyer-Schlichtmann",
"email": "meyer-schlichtmann@demos-deutschland.de"
},
{
"name": "Stefan Graupner",
"email": "graupner@demos-deutschland.de"
}
],
"autoload": {
"psr-4": {
"DemosEurope\\DocumentBakery\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DemosEurope\\DocumentBakery\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^8.1 || ^8.2",
"demos-europe/edt-dql": "^0.23.0",
"demos-europe/edt-extra": "^0.23.0",
"demos-europe/edt-paths": "^0.23.0",
"phpoffice/phpword": "~0.18",
"symfony/config": "^4.4 || ^5.3 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.3 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.3",
"symfony/yaml": "^4.4 || ^5.3 || ^6.0",
"twig/twig": "^2.0 || ^3.3",
"doctrine/annotations": "^2.0",
"symfony/translation": "^6.3"
},
"require-dev": {
"phpstan/phpstan": "^0.12.99",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"nyholm/symfony-bundle-test": "^1.8",
"doctrine/doctrine-bundle": "^2.5",
"dama/doctrine-test-bundle": "^6.7",
"doctrine/orm": "^2.11"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}