forked from botman/tinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.03 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
{
"name": "krdesigns/tinker",
"license": "MIT",
"description": "BotMan tinker command for your Laravel BotMan project",
"keywords": [
"Bot",
"BotMan",
"Laravel",
"Tinker"
],
"homepage": "http://github.com/botman/tinker",
"authors": [
{
"name": "Marcel Pociot",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"krdesigns/botman": "2.6.0",
"clue/stdio-react": "^2.0",
"illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0",
"illuminate/console": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0"
},
"require-dev": {
"orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0",
"phpunit/phpunit": "^7.0|^8.0"
},
"autoload": {
"psr-4": {
"BotMan\\Tinker\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"BotMan\\Tinker\\TinkerServiceProvider"
]
}
}
}