-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.27 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.27 KB
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
{
"name": "petecoop/odt",
"description": "Render .odt files with Blade, convert to pdf with Libre/OpenOffice",
"license": "MIT",
"authors": [
{
"name": "Pete Cooper",
"email": "pete@petecoop.co.uk"
}
],
"require": {
"illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0",
"nelexa/zip": "^4.0",
"symfony/css-selector": "^5.2|^6.0|^7.0",
"symfony/dom-crawler": "^5.2|^6.0|^7.0",
"symfony/http-foundation": "^7.3",
"symfony/process": "^5.2|^6.0|^7.0",
"gotenberg/gotenberg-php": "^2.14"
},
"require-dev": {
"pestphp/pest": "^4.1",
"petecoop/pest-plugin-watch": "^0.1",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"Petecoop\\ODT\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Petecoop\\ODT\\ServiceProvider"
],
"aliases": {
"ODT": "Petecoop\\ODT\\Facades\\ODT"
}
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
}
}