forked from botman/botman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "botman/botman",
"license": "MIT",
"description": "Create messaging bots in PHP with ease.",
"keywords": [
"Bot",
"BotMan",
"Chatbot"
],
"homepage": "http://github.com/botman/botman",
"authors": [
{
"name": "Marcel Pociot",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"symfony/http-foundation": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"tightenco/collect": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"opis/closure": "^2.3 || ^3.0",
"mpociot/pipeline": "^1.0.2",
"react/socket": "~1.0",
"spatie/macroable": "^1.0",
"psr/container": "^1.0"
},
"require-dev": {
"codeigniter/framework": "~3.0",
"orchestra/testbench": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"phpunit/phpunit": "^6.0 || ^7.0 || ^8.0",
"mockery/mockery": "^1.1",
"doctrine/cache": "^1.6",
"symfony/cache": "^3.4.35 || ^4.3.7 || ^5.0",
"ext-curl": "*"
},
"suggest": {
"doctrine/cache": "Use any Doctrine cache driver for cache",
"symfony/cache": "Use any Symfony cache driver for cache"
},
"autoload": {
"psr-4": {
"BotMan\\BotMan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BotMan\\BotMan\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
},
"laravel": {
"providers": [
"BotMan\\BotMan\\BotManServiceProvider"
],
"aliases": {
"BotMan": "BotMan\\BotMan\\Facades\\BotMan"
}
}
},
"scripts": {
"test": "phpunit"
},
"prefer-stable": true,
"minimum-stability": "dev"
}