Initial composer file - let's hope I've got this thing right

This commit is contained in:
Mark Baker 2012-11-23 19:28:44 +00:00
parent fd4161dcaa
commit 153240759a
1 changed files with 36 additions and 0 deletions

36
composer.json Normal file
View File

@ -0,0 +1,36 @@
{
"name": "CodePlex/PHPExcel",
"description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
"keywords": ["PHP","Excel","OpenXML","spreadsheet"],
"homepage": "http://phpexcel.codeplex.com",
"type": "library",
"license": "LGPL",
"authors": [
{
"name": "Maarten Balliauw",
"homepage": "http://blog.maartenballiauw.be"
},
{
"name": "Mark Baker"
},
{
"name": "Franck Lefevre"
},
{
"name": "Erik Tilt"
}
],
"require": {
"php": ">=5.2.0",
"ext-xml": "*"
},
"recommend": {
"ext-zip": "*",
"ext-gd2": "*"
},
"autoload": {
"psr-0": {
"PHPExcel": ""
}
}
}