-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
62 lines (62 loc) · 1.13 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
{
"name": "fondbot/framework",
"description": "FondBot framework.",
"type": "library",
"keywords": [
"fondbot",
"bot",
"bots",
"chatbots",
"telegram",
"facebook messenger",
"vk"
],
"license": "MIT",
"homepage": "https://fondbot.io",
"authors": [
{
"name": "Vladimir Yuldashev",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3",
"laravel/framework": "5.6.*"
},
"require-dev": {
"fzaninotto/faker": "^1.7",
"league/flysystem-memory": "^1.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "^3.6",
"phpunit/phpunit": "^7.2"
},
"autoload": {
"psr-4": {
"FondBot\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"FondBot\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}