Skip to content

Commit 86369ad

Browse files
committed
Merge pull request #247 from ivanlanin/master
PR 0.10.1
2 parents 232a30a + 3e0d37e commit 86369ad

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
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.
44

5+
## 0.10.1 - 21 May 2014
6+
7+
This is a bugfix release for `php-zip` requirement in Composer.
8+
9+
- Change Composer requirements for php-zip from `require` to `suggest` - @bskrtich GH-246
10+
511
## 0.10.0 - 4 May 2014
612

713
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.

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@
3333
],
3434
"require": {
3535
"php": ">=5.3.3",
36-
"ext-xml": "*",
37-
"ext-zip": "*"
36+
"ext-xml": "*"
3837
},
3938
"require-dev": {
4039
"phpunit/phpunit": "3.7.*"
4140
},
4241
"suggest": {
43-
"ext-gd2": "Required to add images",
44-
"ext-xmlwriter": "Required to write DOCX and ODT",
45-
"ext-xsl": "Required to apply XSL style sheet to template part",
46-
"dompdf/dompdf": "Required to write PDF"
42+
"ext-zip": "Used to write DOCX and ODT",
43+
"ext-gd2": "Used to add images",
44+
"ext-xmlwriter": "Used to write DOCX and ODT",
45+
"ext-xsl": "Used to apply XSL style sheet to template part",
46+
"dompdf/dompdf": "Used to write PDF"
4747
},
4848
"autoload": {
4949
"psr-4": {

0 commit comments

Comments
 (0)