forked from PHPOffice/PHPPresentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.22 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
{
"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": ">=5.3.0",
"ext-xml": "*",
"ext-zip": "*",
"phpoffice/common": "0.2.*"
},
"require-dev": {
"phpunit/phpunit": "4.*|5.*|6.*|7.*",
"phpdocumentor/phpdocumentor":"2.*",
"phpmd/phpmd": "2.*",
"sebastian/phpcpd": "2.*",
"phploc/phploc": "2.*",
"squizlabs/php_codesniffer": "2.*",
"codeclimate/php-test-reporter": "dev-master"
},
"suggest": {
"ext-gd": "Required to add images"
},
"autoload": {
"psr-4": {
"PhpOffice\\PhpPresentation\\": "src/PhpPresentation/"
}
}
}