-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.32 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
{
"name": "creacept/lms",
"type": "project",
"require": {
"php": ">=8.0.1",
"ext-curl": "*",
"ext-json": "*",
"benjacho/belongs-to-many-field": "^1.9",
"beyondcode/laravel-websockets": "^1.13",
"creacept-lms/homework-chat": "^1.0",
"epartment/nova-dependency-container": "^1.3",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^9.0",
"laravel/horizon": "^5.7",
"laravel/nova": "*",
"laravel/passport": "^10.1",
"mirovit/nova-notifications": "^1.3",
"nwidart/laravel-modules": "^8.2",
"optimistdigital/nova-sortable": "^2.4",
"orlyapps/nova-belongsto-depend": "^3.0",
"phpoffice/phpspreadsheet": "^1.20",
"predis/predis": "^1.1",
"propaganistas/laravel-phone": "^4.3",
"r64/nova-image-cropper": "^1.1",
"royduin/laravel-nova-field-dynamic-select": "^1.8",
"spatie/laravel-permission": "^5.5",
"staudenmeir/belongs-to-through": "^2.11",
"titasgailius/search-relations": "^2.0",
"whitecube/nova-flexible-content": "^0.2.8",
"ziffmedia/nova-select-plus": "^1.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.10",
"spatie/laravel-ignition": "^1.0",
"nunomaduro/collision": "^6.0"
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
},
{
"type": "path",
"url": "./nova-components/HomeworkChat"
}
],
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "modules/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}