-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.47 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": "defstudio/template-processor",
"description": ".odt to .odt/.docx/.doc/.pdf template processor and exporter",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Fabio Ivona",
"email": "[email protected]",
"homepage": "https://defstudio.it",
"role": "Developer"
},
{
"name": "Daniele Romeo",
"email": "[email protected]",
"homepage": "https://defstudio.it",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-dom": "*",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"symfony/process": "^5.1 || ^6.0 || ^7.0",
"defstudio/phpword": "^0.17.0"
},
"autoload": {
"psr-4": {
"DefStudio\\TemplateProcessor\\": "src"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"DefStudio\\TemplateProcessor\\ServiceProvider"
],
"aliases": {
"Template": "DefStudio\\TemplateProcessor\\Facades\\TemplateFacade"
}
}
},
"repositories": [
{
"type": "vcs",
"url": "https://gitlab.com/defstudio/forks/phpword.git"
}
]
}