-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
54 lines (54 loc) · 1.4 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
50
51
52
53
54
{
"name": "commune/chatbot",
"type": "library",
"keywords": [
"php",
"framework",
"chatbot",
"commune"
],
"description": "chatbot framework, to create complex multi-turn conversation chatbot on isomerism platforms",
"license": "MIT",
"authors": [
{
"name": "thirdgerb",
"email": "thirdgerb@gmail.com"
}
],
"autoload" : {
"psr-4" : {
"Commune\\" : "src/",
"Commune\\Demo\\" : "demo/src/",
"Commune\\Components\\" : "components/"
}
},
"autoload-dev" : {
"psr-4" : {
"Commune\\Test\\" : "tests/"
}
},
"require": {
"php":">=7.3",
"psr/container": "~1.0",
"commune/container": "~0.3.1",
"psr/log": "~1.0",
"ramsey/uuid": "~3.8",
"clue/stdio-react": "~2.2",
"nesbot/carbon": "^2.0",
"illuminate/support": "~6.8",
"symfony/console": "^5.0",
"symfony/translation": "^5.0",
"symfony/finder": "^5.0",
"symfony/yaml": "^5.0",
"monolog/monolog": "^2.0",
"guzzlehttp/guzzle": "^6.2",
"overtrue/pinyin": "~4.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"swoole/ide-helper": "^4.4",
"phpunit/phpunit": "^7.5",
"symfony/var-dumper": "~5.1",
"mockery/mockery": "^1.2"
}
}