mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
ff57ce54dd
- !! NEW DOCKER FILES :D !! - getid3 is now vendored from composer! :D - fix elasticsearch for use with newer versions - fix some migration issues by yeeting a migration that has had its day - fix our asset pipeline (webpack / gulp)
95 lines
2.8 KiB
JSON
95 lines
2.8 KiB
JSON
{
|
|
"name": "poniverse/pony.fm",
|
|
"description": "A community for pony fan music.",
|
|
"keywords": [
|
|
"music",
|
|
"pony",
|
|
"php",
|
|
"laravel"
|
|
],
|
|
"license": "AGPL",
|
|
"type": "project",
|
|
"require": {
|
|
"php": "^8.0",
|
|
"laravel/framework": "^8.27",
|
|
"codescale/ffmpeg-php": "2.7.0",
|
|
"guzzlehttp/guzzle": "^7.0.1",
|
|
"doctrine/dbal": "^3.0",
|
|
"venturecraft/revisionable": "^1.36",
|
|
"pda/pheanstalk": "^4.0",
|
|
"cviebrock/laravel-elasticsearch": "^8.0",
|
|
"barryvdh/laravel-debugbar": "^3.5",
|
|
"predis/predis": "^1.1",
|
|
"ksubileau/color-thief-php": "v2.0.x-dev",
|
|
"graham-campbell/exceptions": "^14.0",
|
|
"minishlink/web-push": "^6.0",
|
|
"alsofronie/eloquent-uuid": "^1.0",
|
|
"poniverse/api": "dev-rewrite",
|
|
"fruitcake/laravel-cors": "2.0.1",
|
|
"laravel/tinker": "^2.5",
|
|
"doctrine/collections": "^1.6",
|
|
"doctrine/annotations": "^1.11",
|
|
"doctrine/cache": "^1.8",
|
|
"doctrine/instantiator": "^1.4",
|
|
"fideloper/proxy": "^4.4",
|
|
"james-heinrich/getid3": "^1.9"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "^1.4.2",
|
|
"phpunit/phpunit": "^9.3.3",
|
|
"symfony/dom-crawler": "^5.2",
|
|
"symfony/css-selector": "^5.2",
|
|
"laravel/browser-kit-testing": "^6.2",
|
|
"nategood/httpful": "^0.2.20",
|
|
"nunomaduro/collision": "^5.0",
|
|
"fakerphp/faker": "^1.9.1",
|
|
"facade/ignition": "^2.5",
|
|
"barryvdh/laravel-ide-helper": "^2.9"
|
|
},
|
|
"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": {
|
|
"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": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
|
|
"@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"
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|