-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
99 lines (99 loc) · 3.05 KB
/
Copy pathcomposer.json
File metadata and controls
99 lines (99 loc) · 3.05 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
97
98
99
{
"name": "poniverse/pony.fm",
"description": "A community for pony fan music.",
"keywords": [
"music",
"pony",
"php",
"laravel"
],
"license": "AGPL",
"type": "project",
"require": {
"php": "^8.4",
"laravel/framework": "^13.0",
"codescale/ffmpeg-php": "^3.2",
"guzzlehttp/guzzle": "^7.8",
"elasticsearch/elasticsearch": "^7.17",
"venturecraft/revisionable": "^1.43",
"barryvdh/laravel-debugbar": "^4.4",
"predis/predis": "^3.0",
"ksubileau/color-thief-php": "^3.0",
"minishlink/web-push": "^11.0",
"league/oauth2-client": "^2.7",
"laravel/tinker": "^3.0",
"james-heinrich/getid3": "^1.9.23",
"laravel/octane": "^2.19",
"inertiajs/inertia-laravel": "^3.3",
"ext-zip": "*"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^12.0",
"symfony/dom-crawler": "^7.0",
"symfony/css-selector": "^7.0",
"laravel/browser-kit-testing": "^7.2",
"nunomaduro/collision": "^8.0",
"fakerphp/faker": "^1.24",
"barryvdh/laravel-ide-helper": "^3.7"
},
"autoload": {
"files": [
"vendor/james-heinrich/getid3/getid3/getid3.php"
],
"classmap": [
"database/migrations",
"app/Library"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"serve": [
"Composer\\Config::disableProcessTimeout",
"PATH=\"$PWD/docker/bin:$PATH\" PHP_CLI_SERVER_WORKERS=\"${PHP_CLI_SERVER_WORKERS:-8}\" php -d upload_max_filesize=600M -d post_max_size=600M -d max_execution_time=0 -S \"${SERVE_HOST:-127.0.0.1}:${SERVE_PORT:-8000}\" -t public server.php"
],
"queue": [
"Composer\\Config::disableProcessTimeout",
"PATH=\"$PWD/docker/bin:$PATH\" php artisan queue:listen --queue=default,notifications,indexing --sleep=5 --tries=3"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-update-cmd": [
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"platform": {
"php": "8.4.0"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"minimum-stability": "dev",
"prefer-stable": true
}