Skip to content

Commit

Permalink
Add ext-xmlwriter as a Composer requirement
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
navarr committed Jan 3, 2014
1 parent 992aee6 commit dde17c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
],
"require": {
"php": ">=5.2.0",
"ext-xml": "*"
"ext-xml": "*",
"ext-xmlwriter": "*"
},
"recommend": {
"ext-zip": "*",
Expand Down

0 comments on commit dde17c4

Please sign in to comment.