mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-21 20:48:00 +01:00
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "poniverse/pony.fm",
|
|
"description": "A community for pony fan music.",
|
|
"keywords": ["music", "pony", "php", "laravel"],
|
|
"license": "AGPL",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=7.0.1",
|
|
"laravel/framework": "5.1.*",
|
|
"codescale/ffmpeg-php": "2.7.0",
|
|
"kriswallsmith/assetic": "1.2.*@dev",
|
|
"intouch/laravel-newrelic": "*",
|
|
"barryvdh/laravel-ide-helper": "^2.1",
|
|
"guzzlehttp/guzzle": "~6.0",
|
|
"doctrine/dbal": "^2.5",
|
|
"venturecraft/revisionable": "^1.23",
|
|
"pda/pheanstalk": "~3.0"
|
|
},
|
|
"require-dev": {
|
|
"fzaninotto/faker": "~1.4",
|
|
"mockery/mockery": "0.9.*",
|
|
"phpunit/phpunit": "~4.1",
|
|
"phpspec/phpspec": "~2.1"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database",
|
|
"app/Library"
|
|
],
|
|
"psr-4": {
|
|
"Poniverse\\Ponyfm\\": "app/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/TestCase.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"php artisan clear-compiled",
|
|
"php artisan optimize"
|
|
],
|
|
"pre-update-cmd": [
|
|
"php artisan clear-compiled"
|
|
],
|
|
"post-update-cmd": [
|
|
"php artisan clear-compiled",
|
|
"php artisan ide-helper:generate",
|
|
"php artisan optimize"
|
|
],
|
|
"post-root-package-install": [
|
|
"php -r \"copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"php artisan key:generate"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist"
|
|
}
|
|
}
|