-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 922 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
37
38
{
"name": "jiaojie/yach-robot-laravel",
"description": "a yach robot message handle for send message",
"keywords": [],
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.5 || ^7.0",
"laravel/framework": "~7.0 || ~8.0"
},
"require-dev": {
"facade/ignition": "^2.0",
"laracasts/generators": "^1.1",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^4.1",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Tal\\Yach\\Robot\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tal\\Yach\\Robot\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Tal\\Yach\\Robot\\YachRobotServiceProvider"
]
}
},
"license": "MIT"
}