PHPWord/composer.json

55 lines
1.6 KiB
JSON
Raw Normal View History

2013-12-11 14:39:43 -05:00
{
"name": "phpoffice/phpword",
"description": "PHPWord - Read, Create, and Write DOCX, ODT, and RTF documents in PHP",
"keywords": [
"PHP", "PhpOffice", "office", "PhpWord", "word", "template", "reader", "writer",
"docx", "OOXML", "OpenXML", "Office Open XML", "ISO IEC 29500", "WordprocessingML",
"RTF", "Rich Text Format", "doc", "odt", "OpenDocument"
],
2013-12-13 11:36:36 +01:00
"homepage": "http://phpoffice.github.io",
2013-12-11 14:39:43 -05:00
"type": "library",
"license": "LGPL",
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",
2014-03-13 08:18:48 -06:00
"ext-xml": "*",
"ext-zip": "*"
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-02-12 11:21:04 -05:00
},
2014-03-13 08:18:48 -06:00
"suggest": {
"ext-gd2": "Required to add images",
"ext-xmlwriter": "Required to write DOCX and ODT",
"ext-xsl": "Required to apply XSL style sheet to template part",
"dompdf/dompdf": "Required 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
}