koel/composer.json

62 lines
1.6 KiB
JSON
Raw Normal View History

2015-12-13 04:42:28 +00:00
{
"name": "phanan/koel",
"description": "Personal audio streaming service that works.",
"keywords": ["audio", "stream", "mp3"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
2015-12-27 09:12:10 +00:00
"laravel/framework": "5.2.*",
2015-12-16 19:48:13 +00:00
"james-heinrich/getid3": "^1.9",
"barryvdh/laravel-ide-helper": "^2.1",
2015-12-29 01:16:36 +00:00
"guzzlehttp/guzzle": "^6.1",
2016-06-13 09:04:42 +00:00
"tymon/jwt-auth": "^0.5.6",
"aws/aws-sdk-php-laravel": "^3.1"
2015-12-13 04:42:28 +00:00
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
2015-12-27 09:12:10 +00:00
"phpspec/phpspec": "~2.1",
"symfony/css-selector": "2.8.*|3.0.*",
"symfony/dom-crawler": "2.8.*|3.0.*"
2015-12-13 04:42:28 +00:00
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize",
2015-12-27 14:06:10 +00:00
"php artisan cache:clear",
"php -r \"if (!file_exists('.env')) copy('.env.example', '.env');\""
2015-12-13 04:42:28 +00:00
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
2015-12-27 14:06:10 +00:00
"php artisan optimize",
"php artisan cache:clear"
2015-12-13 04:42:28 +00:00
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}