Pony.fm/composer.json

63 lines
1.6 KiB
JSON
Raw Normal View History

2013-07-25 23:33:04 +02:00
{
2015-10-24 02:51:40 +02:00
"name": "poniverse/pony.fm",
"description": "A community for pony fan music.",
2015-10-24 02:51:40 +02:00
"keywords": ["music", "pony", "php", "laravel"],
"license": "AGPL",
2015-08-30 13:22:00 +02:00
"type": "project",
"require": {
"php": ">=7.0.1",
2015-08-30 14:29:12 +02:00
"laravel/framework": "5.1.*",
"codescale/ffmpeg-php": "2.7.0",
2015-08-30 15:01:12 +02:00
"kriswallsmith/assetic": "1.2.*@dev",
2015-08-30 14:29:12 +02:00
"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"
2015-08-30 13:22:00 +02:00
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.1",
2015-08-30 13:22:00 +02:00
"phpspec/phpspec": "~2.1"
},
"autoload": {
"classmap": [
2015-09-06 19:21:11 +02:00
"database",
"app/Library"
2015-08-30 13:22:00 +02:00
],
"psr-4": {
"Poniverse\\Ponyfm\\": "app/"
2015-08-30 13:22:00 +02:00
}
},
"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": [
2015-08-30 14:29:12 +02:00
"php artisan clear-compiled",
"php artisan ide-helper:generate",
2015-08-30 13:22:00 +02:00
"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"
}
2013-07-25 23:33:04 +02:00
}