forked from fondbot/fondbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 905 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
39
40
{
"name": "fondbot/fondbot",
"description": "FondBot framework.",
"license": "MIT",
"type": "project",
"require": {
"php": "^7.1",
"fondbot/framework": "^2.0"
},
"require-dev": {
"fzaninotto/faker": "^1.6",
"larapack/dd": "^1.1",
"mockery/mockery": "^0.9.9",
"phpunit/phpunit": "^6.1"
},
"autoload": {
"psr-4": {
"Bot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-install-cmd": "FondBot\\Application\\Composer::postInstall",
"post-update-cmd": "FondBot\\Application\\Composer::postUpdate"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}