-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.73 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
{
"name": "moonshine/laravel",
"description": "Laravel administration panel",
"keywords": [
"laravel",
"moonshine"
],
"type": "library",
"homepage": "https://moonshine-laravel.com",
"license": "MIT",
"support": {
"issues": "https://github.com/moonshine-software/moonshine/issues",
"source": "https://github.com/moonshine-software/moonshine"
},
"authors": [
{
"name": "Danil Shutsky",
"email": "[email protected]",
"homepage": "https://cutcode.dev"
}
],
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"lee-to/laravel-package-command": "^0.9",
"lee-to/fast-attributes": "^0.1",
"symfony/psr-http-message-bridge": "^7.2",
"nyholm/psr7": "^1.8",
"moonshine/contracts": "^3.0",
"moonshine/asset-manager": "^3.0",
"moonshine/color-manager": "^3.0",
"moonshine/core": "^3.0",
"moonshine/menu-manager": "^3.0",
"moonshine/support": "^3.0",
"moonshine/ui": "^3.0"
},
"require-dev": {
"moonshine/import-export": "^1.0"
},
"autoload": {
"psr-4": {
"MoonShine\\Laravel\\": "src",
"MoonShine\\Laravel\\Database\\Factories\\": "database/factories/"
},
"files": [
"src/helpers.php"
]
},
"conflict": {
"laravel/framework": "<10.48.0"
},
"extra": {
"laravel": {
"providers": [
"MoonShine\\Laravel\\Providers\\MoonShineServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}