forked from sboden/odtphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·45 lines (45 loc) · 1.09 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.09 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
{
"name": "sboden/odtphp",
"description": "ODT document generator (plugin replacement for cybermonde/odtphp)",
"keywords": [
"odt",
"php"
],
"license": "GPL-3.0-only",
"type": "library",
"homepage": "https://github.com/sboden/odtphp",
"require": {
"php": ">=8.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"drupal/coder": "^8.3",
"phpunit/phpunit": "^10.4",
"scrutinizer/ocular": "^1.9",
"symfony/var-dumper": "^6.4"
},
"autoload": {
"psr-4": {
"Odtphp\\": "src"
},
"files": ["lib/pclzip.lib.php"]
},
"autoload-dev": {
"psr-4": {
"Odtphp\\Test\\": "tests"
},
"files": ["lib/pclzip.lib.php"]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}