Add ext-xmlwriter as a Composer requirement

XMLWriter is surprisingly a different extension from xml; and so is not installed on some systems (such as Gentoo).  This commit enforces it to be installed, since it's necessary for the functionality of PHPExcel.
This commit is contained in:
Navarr Barnier 2014-01-03 16:59:32 -05:00
parent 992aee683a
commit dde17c4e1d
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@
],
"require": {
"php": ">=5.2.0",
"ext-xml": "*"
"ext-xml": "*",
"ext-xmlwriter": "*"
},
"recommend": {
"ext-zip": "*",