forked from botman/botman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.75 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.0",
"symfony/http-foundation": "2.8.*|3.0.*|3.1.*|3.2.*|3.3.*|3.4.*",
"tightenco/collect": "~5.0",
"opis/closure": "^2.3",
"mpociot/pipeline": "^1.0",
"react/socket": "~0.4",
"spatie/macroable": "^1.0"
},
"require-dev": {
"codeigniter/framework": "~3.0",
"illuminate/support": "^5.4",
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "~6.4",
"mockery/mockery": "dev-master",
"sllh/php-cs-fixer-styleci-bridge": "^2.1",
"doctrine/cache": "^1.6",
"symfony/cache": "^3.1",
"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",
"cs": "php-cs-fixer fix"
}
}