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)",
|
2014-03-20 16:54:12 +04:00
|
|
|
"keywords": [
|
2016-06-28 21:37:36 +04:00
|
|
|
"PHP", "PHPOffice", "office", "PHPWord", "word", "template", "template processor", "reader", "writer",
|
2014-03-23 16:59:28 +01:00
|
|
|
"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"
|
2014-03-20 16:54:12 +04:00
|
|
|
],
|
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",
|
2014-03-02 12:42:58 -05:00
|
|
|
"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/"
|
2014-03-23 17:37:26 +07:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Ivan Lanin",
|
|
|
|
|
"homepage": "http://ivan.lanin.org"
|
2014-03-30 05:27:25 -07:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"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": {
|
2017-12-29 14:36:56 +01:00
|
|
|
"test": [
|
2018-03-07 20:04:19 +01:00
|
|
|
"phpunit --color=always"
|
2017-12-29 14:36:56 +01:00
|
|
|
],
|
|
|
|
|
"test-no-coverage": [
|
2018-03-07 20:04:19 +01:00
|
|
|
"phpunit --color=always --no-coverage"
|
2017-12-29 14:36:56 +01:00
|
|
|
],
|
2017-12-18 17:02:34 +01:00
|
|
|
"check": [
|
2018-03-07 20:04:19 +01:00
|
|
|
"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",
|
2018-12-09 01:21:59 +03:00
|
|
|
"@test-no-coverage"
|
2017-12-18 17:02:34 +01:00
|
|
|
],
|
|
|
|
|
"fix": [
|
2018-03-07 20:04:19 +01:00
|
|
|
"php-cs-fixer fix --ansi"
|
2017-12-18 17:02:34 +01:00
|
|
|
]
|
|
|
|
|
},
|
2017-12-29 14:36:56 +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": {
|
2020-10-17 12:56:06 +02:00
|
|
|
"php": "^5.3.3 || ^7.0 || ^8.0",
|
2015-11-14 15:31:50 +04:00
|
|
|
"ext-xml": "*",
|
2021-01-02 08:36:05 +01:00
|
|
|
"laminas/laminas-escaper": "^2.2"
|
2013-12-11 14:39:43 -05:00
|
|
|
},
|
2014-02-12 11:21:04 -05:00
|
|
|
"require-dev": {
|
2018-07-13 23:12:34 +01:00
|
|
|
"ext-zip": "*",
|
|
|
|
|
"ext-gd": "*",
|
2018-07-14 00:50:01 +02:00
|
|
|
"phpunit/phpunit": "^4.8.36 || ^7.0",
|
2020-10-17 12:56:06 +02:00
|
|
|
"squizlabs/php_codesniffer": "^2.9 || ^3.5",
|
2018-05-31 00:21:08 +02:00
|
|
|
"friendsofphp/php-cs-fixer": "^2.2",
|
2014-06-22 10:22:40 +07:00
|
|
|
"phpmd/phpmd": "2.*",
|
2020-10-17 12:56:06 +02:00
|
|
|
"phploc/phploc": "2.* || 3.* || 4.* || 5.* || 6.* || 7.*",
|
2021-01-02 09:37:43 +01:00
|
|
|
"dompdf/dompdf":"0.8.* || 1.0.*",
|
2016-01-23 19:16:34 +04:00
|
|
|
"tecnickcom/tcpdf": "6.*",
|
2020-10-17 12:56:06 +02:00
|
|
|
"mpdf/mpdf": "5.7.4 || 6.* || 7.* || 8.*",
|
2018-05-20 17:13:04 +02:00
|
|
|
"php-coveralls/php-coveralls": "1.1.0 || ^2.0"
|
2014-02-12 11:21:04 -05:00
|
|
|
},
|
2020-10-18 13:16:43 +02:00
|
|
|
"replace": {
|
|
|
|
|
"laminas/laminas-zendframework-bridge": "*"
|
|
|
|
|
},
|
2014-03-13 08:18:48 -06:00
|
|
|
"suggest": {
|
2016-06-28 21:37:36 +04:00
|
|
|
"ext-zip": "Allows writing OOXML and ODF",
|
2015-11-14 15:31:50 +04:00
|
|
|
"ext-gd2": "Allows adding images",
|
2016-06-28 21:37:36 +04:00
|
|
|
"ext-xmlwriter": "Allows writing OOXML and ODF",
|
2016-07-30 16:02:23 +04:00
|
|
|
"ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template",
|
2015-11-14 15:31:50 +04:00
|
|
|
"dompdf/dompdf": "Allows writing PDF"
|
2014-03-13 08:18:48 -06:00
|
|
|
},
|
2013-12-11 14:39:43 -05:00
|
|
|
"autoload": {
|
2014-03-22 10:06:08 +04:00
|
|
|
"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
|
|
|
},
|
|
|
|
|
"extra": {
|
|
|
|
|
"branch-alias": {
|
2019-10-01 22:43:33 +02:00
|
|
|
"dev-develop": "0.18-dev"
|
2017-12-29 03:01:36 +01:00
|
|
|
}
|
2013-12-11 14:39:43 -05:00
|
|
|
}
|
2014-03-27 10:04:34 +03:00
|
|
|
}
|