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:
parent
992aee683a
commit
dde17c4e1d
|
@ -23,7 +23,8 @@
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.2.0",
|
"php": ">=5.2.0",
|
||||||
"ext-xml": "*"
|
"ext-xml": "*",
|
||||||
|
"ext-xmlwriter": "*"
|
||||||
},
|
},
|
||||||
"recommend": {
|
"recommend": {
|
||||||
"ext-zip": "*",
|
"ext-zip": "*",
|
||||||
|
|
Loading…
Reference in New Issue