forked from orchidsoftware/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
100 lines (100 loc) · 2.6 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "orchid/platform",
"description": "Platform for back-office applications, admin panel or CMS your Laravel app.",
"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"
}
],
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/orchid"
}
],
"require": {
"ext-json": "*",
"orchid/blade-icons": "^2.0",
"orchid/icons": "^2.0",
"tabuna/breadcrumbs": "^3.0",
"laravel/framework": "^9.0",
"laravel/scout": "^9.0",
"myclabs/php-enum": "^1.7",
"watson/active": "^6.0"
},
"require-dev": {
"doctrine/dbal": "^2.10",
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "~1.0",
"orchestra/testbench-core": "^7.0",
"orchestra/testbench-dusk": "^7.0",
"phpunit/php-code-coverage": "^9.0",
"phpunit/phpunit": "^9.0",
"sti3bas/laravel-scout-array-driver": "^3.2",
"vimeo/psalm": "^4.3"
},
"autoload": {
"psr-4": {
"Orchid\\Access\\": "src/Access/",
"Orchid\\Alert\\": "src/Alert/",
"Orchid\\Attachment\\": "src/Attachment/",
"Orchid\\Filters\\": "src/Filters/",
"Orchid\\Metrics\\": "src/Metrics/",
"Orchid\\Platform\\": "src/Platform/",
"Orchid\\Screen\\": "src/Screen/",
"Orchid\\Support\\": "src/Support/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Orchid\\Platform\\Database\\Factories\\": "database/factories/",
"Orchid\\Platform\\Database\\Seeders\\": "database/seeders/",
"Orchid\\Tests\\": "tests/",
"App\\": "stubs/app/"
}
},
"extra": {
"laravel": {
"providers": [
"Orchid\\Platform\\Providers\\FoundationServiceProvider"
],
"aliases": {
"Alert": "Orchid\\Support\\Facades\\Alert",
"Dashboard": "Orchid\\Support\\Facades\\Dashboard"
}
}
},
"suggest": {
"orchid/crud": "Automated CRUD based on your files resources.",
"orchid/fortify": "Orchid template for Laravel Fortify."
},
"config": {
"sort-packages": true
}
}