PHPWord/composer.json

62 lines
1.9 KiB
JSON
Raw Normal View History

2013-12-11 14:39:43 -05:00
{
"name": "phpoffice/phpword",
2014-05-08 22:42:56 +07:00
"description": "PHPWord - A pure PHP library for reading and writing word processing documents (DOCX, ODT, RTF, HTML, PDF)",
"keywords": [
"PHP", "PhpOffice", "office", "PhpWord", "word", "template", "reader", "writer",
"docx", "OOXML", "OpenXML", "Office Open XML", "ISO IEC 29500", "WordprocessingML",
2014-05-08 22:42:56 +07:00
"RTF", "Rich Text Format", "doc", "odt", "OpenDocument", "PDF", "HTML"
],
2013-12-13 11:36:36 +01:00
"homepage": "http://phpoffice.github.io",
2013-12-11 14:39:43 -05:00
"type": "library",
2014-05-05 10:37:34 +04:00
"license": "LGPL-3.0",
2013-12-11 14:39:43 -05:00
"authors": [
2013-12-13 11:36:36 +01:00
{
"name": "Mark Baker"
},
2013-12-11 14:39:43 -05:00
{
"name": "Gabriel Bull",
"email": "me@gabrielbull.com",
"homepage": "http://gabrielbull.com/"
2013-12-13 11:38:22 +01:00
},
2013-12-13 11:36:36 +01:00
{
"name": "Franck Lefevre",
"homepage": "http://blog.rootslabs.net"
},
{
"name": "Ivan Lanin",
"homepage": "http://ivan.lanin.org"
},
{
"name": "Roman Syroeshko",
"homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
2013-12-11 14:39:43 -05:00
}
],
"require": {
"php": ">=5.3.3",
"ext-xml": "*"
2013-12-11 14:39:43 -05:00
},
2014-02-12 11:21:04 -05:00
"require-dev": {
2014-05-04 12:22:55 +02:00
"phpunit/phpunit": "3.7.*",
"phpdocumentor/phpdocumentor":"2.*",
2014-05-19 23:21:17 +07:00
"squizlabs/php_codesniffer": "1.*",
2014-06-22 09:27:10 +07:00
"phpmd/phpmd": "dev-master",
"sebastian/phpcpd": "*",
"phploc/phploc": "*",
2014-05-19 23:21:17 +07:00
"dompdf/dompdf":"0.6.*",
"tecnick.com/tcpdf": "6.*",
"mpdf/mpdf": "5.*"
2014-02-12 11:21:04 -05:00
},
2014-03-13 08:18:48 -06:00
"suggest": {
"ext-zip": "Used to write DOCX and ODT",
2014-05-22 00:05:12 +07:00
"ext-gd2": "Used to add images",
"ext-xmlwriter": "Used to write DOCX and ODT",
"ext-xsl": "Used to apply XSL style sheet to template part",
"dompdf/dompdf": "Used to write PDF"
2014-03-13 08:18:48 -06:00
},
2013-12-11 14:39:43 -05:00
"autoload": {
"psr-4": {
2014-03-27 10:04:34 +03:00
"PhpOffice\\PhpWord\\": "src/PhpWord"
2013-12-11 14:39:43 -05:00
}
}
2014-03-27 10:04:34 +03:00
}