-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
61 lines (61 loc) · 1.54 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
{
"name": "awes-io/indigo-layout",
"description": "Basic styles and components set for building user interfaces.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Awescode GmbH",
"email": "[email protected]",
"homepage": "https://www.awescode.de",
"role": "Owner"
},
{
"name": "theAlex",
"email": "[email protected]",
"homepage": "https://thealex.ru"
}
],
"support": {
"email": "[email protected]"
},
"homepage": "https://github.com/awes-io/indigo-layout",
"keywords": ["Laravel", "IndigoLayout", "Awes.io", "layout", "styles", "admin", "dashboard", "ui", "ui interface", "awes.io"],
"require": {
"php": "^7.1.3",
"illuminate/support": "~5",
"awes-io/theme-switcher": "^1.0",
"awes-io/system-notify": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3.0",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"AwesIO\\IndigoLayout\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AwesIO\\IndigoLayout\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
},
"extra": {
"laravel": {
"providers": [
"AwesIO\\IndigoLayout\\IndigoLayoutServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}