Merge pull request #247 from ivanlanin/master

PR 0.10.1
This commit is contained in:
Progi1984 2014-05-21 19:13:01 +02:00
commit 86369ad89b
2 changed files with 12 additions and 6 deletions

View File

@ -2,6 +2,12 @@
This is the changelog between releases of PHPWord. Releases are listed in reverse chronological order with the latest version listed on top, while additions/changes in each release are listed in chronological order. Changes in each release are divided into three parts: added or change features, bugfixes, and miscellaneous improvements. Each line contains short information about the change made, the person who made it, and the related issue number(s) in GitHub. This is the changelog between releases of PHPWord. Releases are listed in reverse chronological order with the latest version listed on top, while additions/changes in each release are listed in chronological order. Changes in each release are divided into three parts: added or change features, bugfixes, and miscellaneous improvements. Each line contains short information about the change made, the person who made it, and the related issue number(s) in GitHub.
## 0.10.1 - 21 May 2014
This is a bugfix release for `php-zip` requirement in Composer.
- Change Composer requirements for php-zip from `require` to `suggest` - @bskrtich GH-246
## 0.10.0 - 4 May 2014 ## 0.10.0 - 4 May 2014
This release marked heavy refactorings on internal code structure with the creation of some abstract classes to reduce code duplication. `Element` subnamespace is introduced in this release to replace `Section`. Word2007 reader capability is greatly enhanced. Endnote is introduced. List numbering is now customizable. Basic HTML and PDF writing support is enabled. Basic ODText reader is introduced. This release marked heavy refactorings on internal code structure with the creation of some abstract classes to reduce code duplication. `Element` subnamespace is introduced in this release to replace `Section`. Word2007 reader capability is greatly enhanced. Endnote is introduced. List numbering is now customizable. Basic HTML and PDF writing support is enabled. Basic ODText reader is introduced.

View File

@ -33,17 +33,17 @@
], ],
"require": { "require": {
"php": ">=5.3.3", "php": ">=5.3.3",
"ext-xml": "*", "ext-xml": "*"
"ext-zip": "*"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "3.7.*" "phpunit/phpunit": "3.7.*"
}, },
"suggest": { "suggest": {
"ext-gd2": "Required to add images", "ext-zip": "Used to write DOCX and ODT",
"ext-xmlwriter": "Required to write DOCX and ODT", "ext-gd2": "Used to add images",
"ext-xsl": "Required to apply XSL style sheet to template part", "ext-xmlwriter": "Used to write DOCX and ODT",
"dompdf/dompdf": "Required to write PDF" "ext-xsl": "Used to apply XSL style sheet to template part",
"dompdf/dompdf": "Used to write PDF"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {