-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
106 lines (106 loc) · 3.42 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.3",
"ajcastro/eager-load-pivot-relations": "^0.3.0",
"guzzlehttp/guzzle": "^7.2",
"inertiajs/inertia-laravel": "^1.0",
"intervention/image": "^3.0",
"intervention/image-laravel": "^1.2",
"laravel/framework": "11.32.0",
"laravel/pulse": "^1.2",
"laravel/scout": "^10.0",
"laravel/telescope": "^5.0",
"laravel/tinker": "^2.7",
"maatwebsite/excel": "^3.1",
"microsoft/microsoft-graph": "^2.10.0",
"nyholm/psr7": "^1.8",
"octopyid/laravel-impersonate": "^4.0",
"pusher/pusher-php-server": "^7.2",
"ralphjsmit/laravel-seo": "^1.6",
"socialiteproviders/microsoft": "^4.1",
"spatie/calendar-links": "^1.8",
"spatie/icalendar-generator": "^2.3",
"spatie/laravel-activitylog": "^4.6",
"spatie/laravel-collection-macros": "^7.11",
"spatie/laravel-enum": "^3.0",
"spatie/laravel-feed": "^4.1",
"spatie/laravel-google-fonts": "^1.2",
"spatie/laravel-medialibrary": "^11.0.0",
"spatie/laravel-model-states": "^2.4",
"spatie/laravel-permission": "^6.4",
"spatie/laravel-translatable": "^6.5",
"staudenmeir/eloquent-has-many-deep": "^v1.18",
"symfony/psr-http-message-bridge": "^7.1",
"tightenco/ziggy": "^2.0",
"ueberdosis/tiptap-php": "^1.3"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.7",
"fakerphp/faker": "^1.9.1",
"fumeapp/modeltyper": "^2.5",
"kitloong/laravel-migrations-generator": "^7.0.1",
"larastan/larastan": "^3.0",
"laravel/pint": "^1.2",
"laravel/sail": "^1.12",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^8.1",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"phpmd/phpmd": "^2.15",
"spatie/laravel-ignition": "^2.0",
"spatie/laravel-typescript-transformer": "^2.1"
},
"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"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan typescript:transform"
],
"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": {
"php-http/discovery": true,
"pestphp/pest-plugin": true,
"tbachert/spi": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}