-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.03 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.03 KB
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
{
"require": {
"google/cloud-dialogflow": "^2.0",
"symfony/console": "^7.0"
},
"autoload": {
"files": [
"src/detect_intent_audio.php",
"src/detect_intent_stream.php",
"src/detect_intent_texts.php",
"src/entity_create.php",
"src/entity_delete.php",
"src/entity_list.php",
"src/entity_type_delete.php",
"src/entity_type_create.php",
"src/entity_type_list.php",
"src/intent_create.php",
"src/intent_delete.php",
"src/intent_list.php",
"src/context_create.php",
"src/context_delete.php",
"src/context_list.php",
"src/session_entity_type_create.php",
"src/session_entity_type_delete.php",
"src/session_entity_type_list.php"
]
},
"require-dev": {
"google/cloud-core": "^1.20"
},
"autoload-dev": {
"psr-4": {"Google\\Cloud\\Samples\\Dialogflow\\": "test/"}
}
}