-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 3.1 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 3.1 KB
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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.1",
"asantibanez/livewire-charts": "^2.5",
"barryvdh/laravel-dompdf": "^2.0.1",
"emreyarligan/enum-concern": "^1.0",
"guzzlehttp/guzzle": "^7.5",
"jantinnerezo/livewire-alert": "^2.2.7",
"jeroennoten/laravel-adminlte": "^3.8.6",
"laracraft-tech/laravel-date-scopes": "^2.2",
"laravel/framework": "^10.4.1",
"laravel/sanctum": "^3.2.1",
"laravel/tinker": "^2.8.1",
"laravel/ui": "^4.2.1",
"livewire/livewire": "^2.12",
"owen-it/laravel-auditing": "^13.4",
"pharaonic/laravel-readable": "^1.0.5",
"rap2hpoutre/fast-excel": "^5.2",
"simplesoftwareio/simple-qrcode": "^4.2",
"smirltech/laravel-form": "^4.x-dev",
"smirltech/laravel-fullcalendar": "^1.1",
"smirltech/laravel-media": "^1.x-dev",
"smirltech/livewire-modals": "2.x-dev",
"spatie/laravel-model-status": "^1.11",
"spatie/laravel-permission": "^5.9.1",
"spatie/laravel-tags": "^4.3.7",
"tailflow/laravel-orion": "^2.19.2"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.8.1",
"fakerphp/faker": "^1.21",
"laravel/pint": "^1.6",
"mockery/mockery": "^1.5.1",
"nunomaduro/collision": "^7.0",
"opcodesio/log-viewer": "^3.0",
"pestphp/pest-plugin-faker": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"pestphp/pest-plugin-livewire": "^2.0",
"pestphp/pest-plugin-watch": "^2.0",
"phpunit/phpunit": "^10.0.0",
"spatie/laravel-ignition": "^2.0",
"spatie/laravel-stubs": "^2.5.2"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan vendor:publish --force --tag=livewire:assets --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan spatie-stub:publish --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}