PHPWord/composer.json

97 lines
3.1 KiB
JSON
Raw Permalink Normal View History

2013-12-11 14:39:43 -05:00
{
"name": "phpoffice/phpword",
2016-06-28 21:37:36 +04:00
"description": "PHPWord - A pure PHP library for reading and writing word processing documents (OOXML, ODF, RTF, HTML, PDF)",
"keywords": [
2016-06-28 21:37:36 +04:00
"PHP", "PHPOffice", "office", "PHPWord", "word", "template", "template processor", "reader", "writer",
"docx", "OOXML", "OpenXML", "Office Open XML", "ISO IEC 29500", "WordprocessingML",
2016-06-28 21:37:36 +04:00
"RTF", "Rich Text Format", "doc", "odt", "ODF", "OpenDocument", "PDF", "HTML"
],
"homepage": "https://phpword.readthedocs.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",
2017-09-13 22:10:04 +02:00
"homepage": "https://rootslabs.net/blog/"
},
{
"name": "Ivan Lanin",
"homepage": "http://ivan.lanin.org"
},
{
"name": "Roman Syroeshko",
"homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
2017-10-23 23:05:29 +02:00
},
{
"name": "Antoine de Troostembergh"
2013-12-11 14:39:43 -05:00
}
],
2017-12-18 17:02:34 +01:00
"scripts": {
"test": [
"phpunit --color=always"
],
"test-no-coverage": [
"phpunit --color=always --no-coverage"
],
2017-12-18 17:02:34 +01:00
"check": [
"php-cs-fixer fix --ansi --dry-run --diff",
"phpcs --report-width=200 --report-summary --report-full samples/ src/ tests/ --ignore=src/PhpWord/Shared/PCLZip --standard=PSR2 -n",
"phpmd src/,tests/ text ./phpmd.xml.dist --exclude pclzip.lib.php",
"@test-no-coverage"
2017-12-18 17:02:34 +01:00
],
"fix": [
"php-cs-fixer fix --ansi"
2017-12-18 17:02:34 +01:00
]
},
"scripts-descriptions": {
"test": "Runs all unit tests",
"test-no-coverage": "Runs all unit tests, without code coverage",
"check": "Runs PHP CheckStyle and PHP Mess detector",
"fix": "Fixes issues found by PHP-CS"
},
2013-12-11 14:39:43 -05:00
"require": {
2022-09-25 21:43:00 +02:00
"php": "^7.1|^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-xml": "*",
2022-09-25 21:43:00 +02:00
"laminas/laminas-escaper": ">=2.6"
2013-12-11 14:39:43 -05:00
},
2014-02-12 11:21:04 -05:00
"require-dev": {
"ext-zip": "*",
"ext-gd": "*",
2022-09-16 14:09:17 +02:00
"ext-libxml": "*",
"dompdf/dompdf": "^2.0",
"mpdf/mpdf": "^8.1",
"phpmd/phpmd": "^2.13",
2022-09-25 21:43:00 +02:00
"phpunit/phpunit": ">=7.0",
2022-09-16 14:11:55 +02:00
"tecnickcom/tcpdf": "^6.5",
"symfony/process": "^4.4",
"friendsofphp/php-cs-fixer": "^3.3"
2014-02-12 11:21:04 -05:00
},
2014-03-13 08:18:48 -06:00
"suggest": {
2016-06-28 21:37:36 +04:00
"ext-zip": "Allows writing OOXML and ODF",
"ext-gd2": "Allows adding images",
2016-06-28 21:37:36 +04:00
"ext-xmlwriter": "Allows writing OOXML and ODF",
"ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template",
"dompdf/dompdf": "Allows writing 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
}
2017-12-29 03:01:36 +01:00
},
2022-09-16 14:09:17 +02:00
"autoload-dev": {
"psr-4": {
"PhpOffice\\PhpWordTests\\": "tests/PhpWordTests"
}
2013-12-11 14:39:43 -05:00
}
2014-03-27 10:04:34 +03:00
}