forked from PHPOffice/PHPPresentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.25 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
{
"name": "phpoffice/phppresentation",
"description": "PHPPresentation - Read, Create and Write Presentations documents in PHP",
"keywords": ["PHP","PowerPoint","LibreOffice","pptx","ppt","odp","presentations"],
"homepage": "http://phpoffice.github.io",
"type": "library",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Mark Baker"
},
{
"name": "Franck Lefevre",
"homepage": "http://rootslabs.net"
},
{
"name": "Ivan Lanin",
"homepage": "http://ivan.lanin.org"
}
],
"require": {
"php": "^7.1|^8.0",
"ext-xml": "*",
"ext-zip": "*",
"phpoffice/common": "^1",
"phpoffice/phpspreadsheet": "^1.9.0"
},
"require-dev": {
"phpunit/phpunit": ">=7.0",
"phpmd/phpmd": "2.*",
"phpstan/phpstan": "^0.12.88",
"sebastian/phpcpd": "^6.0",
"phploc/phploc": "2.*",
"squizlabs/php_codesniffer": "^3.5",
"codeclimate/php-test-reporter": "dev-master"
},
"suggest": {
"ext-gd": "Required to add images"
},
"autoload": {
"psr-4": {
"PhpOffice\\PhpPresentation\\": "src/PhpPresentation/"
}
}
}