forked from tomwalder/php-gds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·35 lines (35 loc) · 1.03 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
{
"name": "a1comms/php-gds",
"type": "library",
"description": "Google Cloud Datastore Library for PHP",
"keywords": ["google", "datastore", "appengine", "gae", "cloud datastore", "nosql"],
"homepage": "https://github.com/tomwalder/php-gds",
"license": "Apache-2.0",
"authors": [
{
"name": "Tom Walder",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"ext-bcmath" : "*"
},
"require-dev": {
"google/auth": "v1.0.*",
"google/appengine-php-sdk": ">=1.9.22",
"phpunit/phpunit": "~4.8",
"satooshi/php-coveralls": "v2.0.*"
},
"suggest": {
"google/auth": "If you need to use the REST API (i.e. not on AppEngine Standard) Tested with v1.0.1",
"google/cloud-datastore": "If you need to use the gRPC API (for speed). Tested with v0.90.0"
},
"autoload": {
"classmap": [
"src/"
],
"psr-4": {"GDS\\": "src/GDS/"}
},
"include-path": ["src/"]
}