forked from orchidsoftware/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
89 lines (89 loc) · 2.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "orchid/platform",
"description": "Powerful platform for building a business application using the Laravel framework.",
"keywords": [
"framework",
"laravel",
"orchid",
"platform",
"admin",
"cmf",
"cms",
"rad",
"extranet"
],
"type": "library",
"license": "MIT",
"homepage": "https://orchid.software",
"support": {
"issues": "https://github.com/orchidsoftware/platform/issues",
"source": "https://github.com/orchidsoftware/platform",
"docs": "https://orchid.software/en/docs",
"email": "[email protected]"
},
"authors": [
{
"name": "Alexandr Chernyaev",
"email": "[email protected]",
"homepage": "https://tabuna.github.io",
"role": "Developer"
}
],
"require": {
"ext-curl": "*",
"ext-json": "*",
"davejamesmiller/laravel-breadcrumbs": "^5.2",
"laravel/framework": "5.8.*",
"laravel/scout": "^7.1",
"ralouphie/mimey": "^2.1",
"watson/active": "^3.0"
},
"require-dev": {
"fzaninotto/faker": "^1.4",
"mockery/mockery": "~1.0",
"orchestra/testbench": "~3.8.0",
"phpunit/php-code-coverage": "^6.0|^7.0",
"phpunit/phpunit": "^7.5|^8.0"
},
"autoload": {
"psr-4": {
"Orchid\\Database\\Seeds\\": "database/seeds/",
"Orchid\\Access\\": "src/Access/",
"Orchid\\Alert\\": "src/Alert/",
"Orchid\\Attachment\\": "src/Attachment/",
"Orchid\\Filters\\": "src/Filters/",
"Orchid\\Platform\\": "src/Platform/",
"Orchid\\Screen\\": "src/Screen/",
"Orchid\\Setting\\": "src/Setting/",
"Orchid\\Support\\": "src/Support/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"Orchid\\Tests\\": "tests/",
"App\\": "install-stubs/"
}
},
"extra": {
"laravel": {
"providers": [
"Orchid\\Platform\\Providers\\FoundationServiceProvider"
],
"aliases": {
"Alert": "Orchid\\Support\\Facades\\Alert",
"Dashboard": "Orchid\\Support\\Facades\\Dashboard",
"Setting": "Orchid\\Support\\Facades\\Setting"
}
}
},
"config": {
"sort-packages": true
}
}