forked from eristemena/dialogflow-fulfillment-webhook-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 825 Bytes
/
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
{
"name": "eristemena/dialogflow-fulfillment-webhook-php",
"description": "Dialogflow Fulfillment Webhook v1 & v2",
"keywords": [
"Dialogflow",
"api.ai",
"webhook",
"client library",
"fulfillment"
],
"license": "MIT",
"require": {
"php": ">=5.4",
"nesbot/carbon": "1.* || 2.*"
},
"autoload": {
"psr-4": {
"Dialogflow\\": "src/"
}
},
"authors": [
{
"name": "Eris Ristemena",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^4.8",
"clean/phpdoc-md": "^0.10.0"
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"doc": "@php vendor/bin/phpdoc-md",
"cs": "php-cs-fixer fix"
}
}