-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 902 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 902 Bytes
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": "nopolabs/yabot-template",
"description": "Template for yabot projects.",
"license": "MIT",
"version": "0.0.1",
"type": "package",
"prefer-stable": true,
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/nopolabs/slack-client"
},
{
"type": "vcs",
"url": "https://github.com/nopolabs/phpws.git"
}
],
"config" : {
"platform": {
"php": "7.0"
}
},
"require": {
"php": ">=7.0",
"nopolabs/yabot": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"nopolabs/mock-with-expectations": "dev-master"
},
"autoload": {
"psr-4": { "MyPackage\\": "src/" }
},
"autoload-dev": {
"psr-4": { "MyPackage\\Tests\\": "tests/" }
}
}