-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
134 lines (134 loc) · 4.72 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": [
"laravel",
"framework"
],
"license": "MIT",
"require": {
"php": "^8.2",
"abraham/twitteroauth": "*",
"ashallendesign/laravel-config-validator": "^2.2",
"awcodes/filament-tiptap-editor": "^3.4",
"baidouabdellah/laravel-arpdf": "dev-main",
"bezhansalleh/filament-google-analytics": "^2.0",
"bezhansalleh/filament-shield": "^3.2",
"bugsnag/bugsnag-laravel": "^2.26.0",
"filament/filament": "^3.2",
"google/apiclient": "^2.17",
"laravel/framework": "^11.9",
"laravel/jetstream": "^5.1",
"laravel/sanctum": "^4.0",
"laravel/socialite": "^5.15",
"laravel/tinker": "^2.9",
"livewire/livewire": "^3.5",
"mallardduck/blade-boxicons": "^2.4",
"nwidart/laravel-modules": "^11.0",
"openai-php/laravel": "^0.10.1",
"revolution/socialite-discord": "^1.4",
"socialiteproviders/apple": "^5.6",
"socialiteproviders/facebook": "^4.1",
"socialiteproviders/snapchat": "^4.1",
"socialiteproviders/tiktok": "^5.2",
"socialiteproviders/twitter": "^4.1",
"spatie/laravel-markdown": "^2.5",
"spatie/shiki-php": "^2.1",
"stancl/tenancy": "^3.8",
"stechstudio/filament-impersonate": "^3.13",
"stichoza/google-translate-php": "^5.1",
"tomatophp/filament-accounts": "^2.0",
"tomatophp/filament-alerts": "^2.0",
"tomatophp/filament-api": "^1.0",
"tomatophp/filament-cms": "^1.0",
"tomatophp/filament-discord": "^1.0",
"tomatophp/filament-docs": "^1.0",
"tomatophp/filament-ecommerce": "^1.0",
"tomatophp/filament-employees": "^0.0.1",
"tomatophp/filament-fcm": "^1.0",
"tomatophp/filament-invoices": "^1.0",
"tomatophp/filament-issues": "^1.0",
"tomatophp/filament-logger": "^1.0",
"tomatophp/filament-media-manager": "^1.1",
"tomatophp/filament-menus": "^1.0",
"tomatophp/filament-notes": "^1.0",
"tomatophp/filament-payments": "^1.0",
"tomatophp/filament-pos": "^1.0",
"tomatophp/filament-pwa": "^1.0",
"tomatophp/filament-seo": "^1.0",
"tomatophp/filament-settings-hub": "^1.0",
"tomatophp/filament-subscriptions": "^1.0",
"tomatophp/filament-tenancy": "^1.0",
"tomatophp/filament-translations": "^1.0",
"tomatophp/filament-types": "*",
"tomatophp/filament-users": "^1.0",
"tomatophp/filament-wallet": "^1.0",
"tomatophp/filament-withdrawals": "^1.0",
"tomatophp/laravel-package-generator": "^1.0",
"vormkracht10/laravel-seo-scanner": "^3.12",
"ymigval/laravel-indexnow": "^1.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.14",
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^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": {
"laravel": {
"dont-discover": []
},
"merge-plugin": {
"include": [
"Modules/*/composer.json"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"wikimedia/composer-merge-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}