-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (42 loc) · 1.06 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
38
39
40
41
42
43
{
"name": "mijohansen/php-gae-util",
"description": "Utility belt for common tasks in Google App Engine for PHP.",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Michael Johansen",
"email": "[email protected]"
}
],
"require": {
"google/apiclient": "v2.*",
"google/appengine-php-sdk": "v1.*",
"google/cloud-storage": "v1.*",
"hassankhan/config": "v1.*",
"monolog/monolog": "v1.*",
"doctrine/instantiator": "1.0.5",
"php": ">=5.5",
"tomwalder/php-gds": "v4.*",
"ext-openssl":"*",
"ext-json": "*",
"fig/link-util": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"symfony/process": "v3.*"
},
"autoload": {
"psr-4": {
"GaeUtil\\": "src"
}
},
"scripts": {
"post-update-cmd": "GaeUtil\\PostInstall::cleanGoogleApiClasses",
"post-install-cmd": "GaeUtil\\PostInstall::cleanGoogleApiClasses",
"test": "./tests/bin/setup.sh; phpunit",
"test55": "php55 ./vendor/bin/phpunit"
}
}