-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
66 lines (66 loc) · 1.48 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
63
64
65
66
{
"name": "awes-io/wiki",
"description": "This is the source for the https://www.awes.io/documentation/",
"type": "library",
"license": "MIT",
"authors": [{
"name": "Awes.io",
"email": "[email protected]",
"homepage": "https://www.awes.io",
"role": "Maintainer"
},
{
"name": "Awescode GmbH",
"email": "[email protected]",
"homepage": "https://www.awescode.de",
"role": "Owner"
},
{
"name": "Ivan Slesarenko",
"email": "[email protected]",
"homepage": "https://boomdraw.com",
"role": "Developer"
},
{
"name": "Galymzhan Begimov",
"email": "[email protected]",
"homepage": "https://github.com/begimov",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"homepage": "http://gitlab.awescode.com/awes/wiki",
"keywords": ["Awes.io", "Wiki", "awes-io", "awesdotio", "Documentation", "Guides"],
"require": {
"illuminate/support": "~5",
"awes-io/docs": "^0.2"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3.0",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"Awes\\Wiki\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Awes\\Wiki\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
},
"extra": {
"laravel": {
"providers": [
"Awes\\Wiki\\WikiServiceProvider"
]
}
}
}