-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
49 lines (49 loc) · 1.74 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
44
45
46
47
48
49
{
"name": "google/appengine-php-sdk",
"description": "Google App Engine PHP SDK",
"type": "library",
"keywords": ["google", "appengine", "sdk"],
"homepage": "https://cloud.google.com/appengine/docs/php/",
"license": "Apache-2.0",
"support": {
"issues": "https://code.google.com/p/googleappengine/wiki/FilingIssues?tm=3",
"forum": "https://groups.google.com/forum/#!forum/google-appengine"
},
"require": {
"php": ">=7.2.0",
"guzzlehttp/streams": "^3.0",
"guzzlehttp/guzzle": "^7.2",
"composer/semver": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^8",
"php-coveralls/php-coveralls": "dev-master",
"php-mock/php-mock-phpunit": "^2.6"
},
"autoload": {
"psr-4": {
"Google\\AppEngine\\": "src"
},
"files": [
"src/aliases.php"
],
"classmap": [
"src/Api/api_base_pb.php",
"src/Api/AppIdentity/app_identity_service_pb.php",
"src/Api/Mail/mail_service_pb.php",
"src/Api/Memcache/memcache_service_pb.php",
"src/Api/Modules/modules_service_pb.php",
"src/Api/TaskQueue/taskqueue_service_pb.php",
"src/Api/UrlFetch/urlfetch_service_pb.php",
"src/Api/Users/user_service_pb.php",
"src/Datastore/action_pb.php",
"src/Datastore/datastore_v3_pb.php",
"src/Ext/RemoteApi/remote_api_pb.php",
"src/Runtime/Proto/ProtocolMessage.php",
"src/Runtime/Proto/ProtocolBufferEncodeError.php",
"src/Runtime/Proto/ProtocolBufferDecodeError.php",
"src/Runtime/Proto/Encoder.php",
"src/Runtime/Proto/Decoder.php"
]
}
}