-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
composer.json
76 lines (76 loc) · 1.94 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
{
"name": "moonshine/moonshine",
"description": "Laravel administration panel",
"keywords": ["laravel", "admin", "dashboard", "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": "info@cutcode.ru",
"homepage": "https://cutcode.dev"
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"ext-curl": "*",
"ext-json": "*",
"rap2hpoutre/fast-excel": "^5.4",
"lee-to/laravel-package-command": "^0.9"
},
"require-dev": {
"pestphp/pest": "^2.34",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest-plugin-laravel": "^2.2",
"pestphp/pest-plugin-mock": "^2.0",
"rector/rector": "^1.0",
"nunomaduro/larastan": "^2.9"
},
"autoload": {
"psr-4": {
"MoonShine\\": "src/",
"MoonShine\\Database\\Factories\\": "database/factories/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"MoonShine\\Tests\\": "tests/",
"MoonShine\\Database\\Factories\\": "database/factories/",
"App\\": "app/"
}
},
"suggest": {
"laravel/socialite": "Required to use the Socialite",
"unisharp/laravel-filemanager": "Required if you want tinymce file manager"
},
"conflict": {
"laravel/framework": "<10.20.0"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse src --memory-limit=-1",
"rector": "vendor/bin/rector process --clear-cache",
"test": "vendor/bin/pest",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"extra": {
"laravel": {
"providers": [
"MoonShine\\Providers\\MoonShineServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}