Skip to content

Commit

Permalink
Merge pull request thoroc#1 from Wilkins/patch-1
Browse files Browse the repository at this point in the history
Add a composer.json file to allow composer install
  • Loading branch information
thoroc committed Jan 23, 2015
2 parents cc5ea0b + 220e7be commit 9b7adaf
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "thoroc/php_writeexcel",
"type": "library",
"description": "Powerful library to write excel files",
"keywords": ["excel", "spreadsheet", "document", "xls", "writer"],
"homepage": "https://github.com/thoroc/php_writeexcel",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/thoroc/php_writeexcel.git"
}
],
"license": "LGPL v2.1",
"authors": [
{
"name": "Johann Hanne",
"email": "[email protected]",
"homepage": "https://github.com/thoroc/",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": {
"writeexcel_biffwriter": "./",
"writeexcel_format": "./",
"writeexcel_formula": "./",
"writeexcel_olewriter": "./",
"writeexcel_workbookbig": "./",
"writeexcel_workbook": "./",
"writeexcel_worksheet": "./"

}
}
}

0 comments on commit 9b7adaf

Please sign in to comment.