-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
38 lines (38 loc) · 876 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": "sdmg15/iambot",
"description": "Helps members to present themselves",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "Sonkeng Maldini",
"email": "sonkengmaldini@gmail.com"
}
],
"require": {
"vlucas/phpdotenv": "^2.4",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"IamBot\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-install-cmd": [
"composer dumpautoload -o"
],
"post-update-cmd": [
"composer dumpautoload -o"
]
},
"minimum-stability": "dev"
}