-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (37 loc) · 1.1 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "mechastorm/google-spreadsheet-exporter",
"description": "Libraries to deal with extracting data from a Google Spreadsheet and exporting it to another file format ",
"version": "1.0.0",
"homepage": "https://github.com/mechastorm/google-spreadsheet-exporter",
"keywords": ["localization", "google", "spreadsheet", "php"],
"license": "Apache-2.0",
"authors": [
{
"name": "Shih Oon Liong",
"email": "[email protected]",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/asimlqt/php-google-spreadsheet-client"
}
],
"require": {
"php": ">=5.4.0",
"google/apiclient": "1.0.*@beta",
"asimlqt/php-google-spreadsheet-client": "2.1.*"
},
"require-dev": {
"google/apiclient": "1.0.*@beta",
"asimlqt/php-google-spreadsheet-client": "2.1.*",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-0": {
"Mechastorm\\Google": "src/"
}
}
}