-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
composer.json
108 lines (108 loc) · 3.47 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
101
102
103
104
105
106
107
108
{
"name": "moonshine/moonshine",
"description": "Laravel administration panel",
"license": "MIT",
"type": "library",
"keywords": [
"laravel",
"admin",
"dashboard",
"moonshine"
],
"authors": [
{
"name": "Danil Shutsky",
"email": "[email protected]",
"homepage": "https://cutcode.dev"
}
],
"homepage": "https://moonshine-laravel.com",
"support": {
"issues": "https://github.com/moonshine-software/moonshine/issues",
"source": "https://github.com/moonshine-software/moonshine"
},
"require": {
"ext-curl": "*",
"ext-json": "*",
"illuminate/contracts": "^10|^11",
"illuminate/support": "^10|^11",
"illuminate/view": "^10|^11",
"lee-to/fast-attributes": "^0.1",
"lee-to/laravel-package-command": "^0.9",
"nyholm/psr7": "^1.8",
"php": "^8.2",
"symfony/psr-http-message-bridge": "^7.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"larastan/larastan": "^2.0",
"moonshine/import-export": "^1.0",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"rector/rector": "^1.0",
"symplify/monorepo-builder": "^11.2"
},
"replace": {
"moonshine/asset-manager": "self.version",
"moonshine/color-manager": "self.version",
"moonshine/contracts": "self.version",
"moonshine/core": "self.version",
"moonshine/laravel": "self.version",
"moonshine/menu-manager": "self.version",
"moonshine/support": "self.version",
"moonshine/ui": "self.version"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"MoonShine\\": "src/",
"MoonShine\\AssetManager\\": "src/AssetManager/src",
"MoonShine\\ColorManager\\": "src/ColorManager/src",
"MoonShine\\Contracts\\": "src/Contracts/src",
"MoonShine\\Core\\": "src/Core/src",
"MoonShine\\Laravel\\": "src/Laravel/src",
"MoonShine\\Laravel\\Database\\Factories\\": "src/Laravel/database/factories/",
"MoonShine\\MenuManager\\": "src/MenuManager/src",
"MoonShine\\Support\\": "src/Support/src",
"MoonShine\\UI\\": "src/UI/src"
},
"files": [
"src/Laravel/src/helpers.php",
"src/Support/src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\": "app/",
"MoonShine\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"MoonShine\\Laravel\\Providers\\MoonShineServiceProvider"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse src --memory-limit=-1",
"rector": "vendor/bin/rector process --clear-cache",
"rector:dry": "vendor/bin/rector process --clear-cache --dry-run",
"test": "vendor/bin/pest",
"test:bail": "vendor/bin/pest --bail",
"test:fresh": [
"rm -rf vendor/orchestra",
"composer install",
"vendor/bin/pest --bail"
],
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"monorepo:merge": "vendor/bin/monorepo-builder merge"
}
}