-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
100 lines (100 loc) · 3.23 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": [
"laravel",
"framework"
],
"license": "MIT",
"require": {
"php": "^8.2",
"althinect/filament-spatie-roles-permissions": "^2.2",
"andrewdwallo/filament-selectify": "^2.0",
"awcodes/filament-curator": "^3.5",
"awcodes/filament-tiptap-editor": "^3.3",
"barryvdh/laravel-dompdf": "^2.1",
"brick/money": "^0.8.1",
"dcblogdev/php-find-and-replace-json": "^1.1",
"filament/filament": "^3.2",
"flowframe/laravel-trend": "^0.2.0",
"iankumu/mpesa": "^1.3",
"ibrahimbougaoua/filament-rating-star": "^1.0",
"jaocero/filachat": "^0.2.0@alpha",
"jeffgreco13/filament-breezy": "^2.3",
"laravel/framework": "^11.0",
"laravel/jetstream": "^5.0",
"laravel/pulse": "^1.0@beta",
"laravel/reverb": "@beta",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.9",
"laraveldaily/laravel-invoices": "4.0",
"livewire/livewire": "^3.0",
"saade/filament-fullcalendar": "^3.2",
"samuelmwangiw/africastalking-laravel": "^1.5",
"spatie/laravel-sluggable": "^3.6",
"tapp/filament-maillog": "^1.0",
"unicodeveloper/laravel-paystack": "^1.2",
"ysfkaya/filament-phone-input": "^2.3",
"z3d0x/filament-logger": "^0.7.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.13",
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^10.5",
"spatie/laravel-ignition": "^2.4"
},
"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 filament:upgrade"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
]
},
"extra": {
"branch-alias": {
"dev-master": "11.x-dev"
},
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}