mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
64 lines
1.7 KiB
JSON
64 lines
1.7 KiB
JSON
{
|
|
"name": "phanan/koel",
|
|
"description": "Personal audio streaming service that works.",
|
|
"keywords": ["audio", "stream", "mp3"],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=5.6.4",
|
|
"laravel/framework": "5.3.*",
|
|
"james-heinrich/getid3": "^1.9",
|
|
"guzzlehttp/guzzle": "^6.1",
|
|
"tymon/jwt-auth": "^0.5.6",
|
|
"aws/aws-sdk-php-laravel": "^3.1",
|
|
"pusher/pusher-php-server": "^2.2"
|
|
},
|
|
"require-dev": {
|
|
"fzaninotto/faker": "~1.4",
|
|
"mockery/mockery": "0.9.*",
|
|
"phpunit/phpunit": "~4.0",
|
|
"phpspec/phpspec": "~2.1",
|
|
"symfony/css-selector": "2.8.*|3.0.*",
|
|
"symfony/dom-crawler": "2.8.*|3.0.*",
|
|
"facebook/webdriver": "^1.2",
|
|
"barryvdh/laravel-ide-helper": "^2.1"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/TestCase.php",
|
|
"tests/e2e"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"php artisan clear-compiled",
|
|
"php artisan optimize",
|
|
"php artisan cache:clear",
|
|
"php -r \"if (!file_exists('.env')) copy('.env.example', '.env');\""
|
|
],
|
|
"pre-update-cmd": [
|
|
"php artisan clear-compiled"
|
|
],
|
|
"post-update-cmd": [
|
|
"php artisan optimize",
|
|
"php artisan cache:clear"
|
|
],
|
|
"post-root-package-install": [
|
|
"php -r \"copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"php artisan key:generate"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist"
|
|
}
|
|
}
|