-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
120 lines (120 loc) · 4.03 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
{
"name": "francoism90/hub",
"type": "project",
"description": "A video on demand (VOD) media distribution system.",
"keywords": [
"framework",
"laravel",
"vod",
"video-on-demand",
"media"
],
"license": "MIT",
"require": {
"php": "^8.3",
"artesaos/seotools": "^1.3.1",
"blade-ui-kit/blade-heroicons": "^2.5.0",
"foxws/laravel-algos": "^0.0.4",
"foxws/laravel-modelcache": "^0.0.4",
"foxws/wireuse": "^2.8.3",
"guzzlehttp/guzzle": "^7.9.2",
"http-interop/http-factory-guzzle": "^1.2",
"laravel/framework": "^11.38.2",
"laravel/horizon": "^5.30.2",
"laravel/octane": "^2.6.0",
"laravel/prompts": "^0.3.3",
"laravel/pulse": "^1.3.3",
"laravel/reverb": "^1.4.5",
"laravel/sanctum": "^4.0.7",
"laravel/scout": "^10.12.0",
"laravel/telescope": "^5.3.0",
"laravel/tinker": "^2.10.0",
"league/flysystem-aws-s3-v3": "^3.29",
"league/flysystem-read-only": "^3.28",
"livewire/livewire": "^3.5.18",
"meilisearch/meilisearch-php": "^1.12.0",
"php-ffmpeg/php-ffmpeg": "^1.3.1",
"pusher/pusher-php-server": "^7.2.7",
"spatie/eloquent-sortable": "^4.4.1",
"spatie/laravel-collection-macros": "^7.14.2",
"spatie/laravel-flash": "^1.10",
"spatie/laravel-google-fonts": "^1.4.1",
"spatie/laravel-html": "^3.11.1",
"spatie/laravel-medialibrary": "^11.12.1",
"spatie/laravel-model-states": "^2.10.0",
"spatie/laravel-permission": "^6.10.1",
"spatie/laravel-prefixed-ids": "^1.4.0",
"spatie/laravel-responsecache": "^7.6.3",
"spatie/laravel-sluggable": "^3.7.2",
"spatie/laravel-tags": "^4.9.0",
"spatie/php-structure-discoverer": "^2.3.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.5.4",
"fakerphp/faker": "^1.24.1",
"laravel/envoy": "^2.10.1",
"laravel/pail": "^1.2.1",
"laravel/pint": "^1.20.0",
"laravel/sail": "^1.40.0",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.5.0",
"pestphp/pest": "^2.36.0",
"pestphp/pest-plugin-laravel": "^2.4",
"phpunit/phpunit": "^10.5.36"
},
"autoload": {
"files": [
"src/Foundation/Helpers.php"
],
"psr-4": {
"App\\": "src/App/",
"Domain\\": "src/Domain/",
"Foundation\\": "src/Foundation/",
"Support\\": "src/Support/",
"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 --tag=laravel-assets --ansi --force"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta",
"@php artisan ide-helper:models --nowrite"
],
"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": []
}
},
"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
}