Pony.fm/composer.json

89 lines
2.5 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.",
Laravel 5.2 Update (#106) * Adopt PSR-2 coding style The Laravel framework adopts the PSR-2 coding style in version 5.1. Laravel apps *should* adopt this coding style as well. Read the [PSR-2 coding style guide][1] for more details and check out [PHPCS][2] to use as a code formatting tool. [1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md [2]: https://github.com/squizlabs/PHP_CodeSniffer * Adopt PHP short array syntax Laravel 5 adopted the short array syntax which became available in PHP 5.4. * Remove SelfHandling from Jobs Jobs are self handling by default in Laravel 5.2. * Add new exceptions to `$dontReport` property * Shift core files * Shift Middleware Laravel 5.2 adjusts the `Guard` object used within middleware. In addition, new `can` and `throttles` middleware were added. * Shift Input to Request facade Laravel 5.2 no longer registers the `Input` facade by default. Laravel now prefers using the `Request` facade or the `$request` object within *Controllers* instead. Review the [HTTP Requests][1] documentation for more details. [1]: https://laravel.com/docs/5.2/requests * Shift configuration Laravel 5.2 introduces the `env` app configuration option and removes the `pretend` mail configuration option. In addition, a few of the default `providers` and `aliases` bindings were removed. * Shift Laravel dependencies * Shift cleanup * Updated composer.lock * Updated Middleware to 5.2 * Config update for Laravel 5.2 * [Laravel 5.2] Updated validation strings * Updated auth config * Updated to use middleware groups * Added laravel 5.2 sessions migration
2016-09-30 00:26:31 +02:00
"keywords": [
"music",
"pony",
"php",
"laravel"
],
"license": "AGPL",
2015-08-30 13:22:00 +02:00
"type": "project",
"require": {
2023-09-12 02:34:18 +02:00
"php": "7.2.24",
2017-11-28 08:00:11 +01:00
"laravel/framework": "5.5.*",
2015-08-30 14:29:12 +02:00
"codescale/ffmpeg-php": "2.7.0",
"intouch/laravel-newrelic": "*",
"barryvdh/laravel-ide-helper": "^2.1",
"guzzlehttp/guzzle": "~6.0",
"doctrine/dbal": "2.5.*",
"venturecraft/revisionable": "^1.23",
2016-01-07 19:16:37 +01:00
"pda/pheanstalk": "~3.0",
"cviebrock/laravel-elasticsearch": "^1.0",
2017-11-28 06:44:31 +01:00
"barryvdh/laravel-debugbar": "~2.4",
2016-05-19 23:31:04 +02:00
"predis/predis": "^1.0",
2016-06-05 20:45:21 +02:00
"ksubileau/color-thief-php": "^1.3",
2017-11-28 08:00:11 +01:00
"graham-campbell/exceptions": "^10.0",
"minishlink/web-push": "^1.0",
"alsofronie/eloquent-uuid": "^1.0",
2017-11-29 05:47:14 +01:00
"poniverse/api": "dev-rewrite",
2017-11-28 08:00:11 +01:00
"barryvdh/laravel-cors": "^0.10",
2017-12-03 09:36:36 +01:00
"laravel/tinker": "^1.0",
"doctrine/collections": "v1.4.*",
"doctrine/annotations": "v1.4.*",
"doctrine/cache": "v1.6.*",
"doctrine/instantiator": "1.0.*"
2015-08-30 13:22:00 +02:00
},
"require-dev": {
"fzaninotto/faker": "~1.4",
2017-11-28 08:00:11 +01:00
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~6.0",
2016-06-05 20:45:21 +02:00
"phpspec/phpspec": "~2.1",
Laravel 5.2 Update (#106) * Adopt PSR-2 coding style The Laravel framework adopts the PSR-2 coding style in version 5.1. Laravel apps *should* adopt this coding style as well. Read the [PSR-2 coding style guide][1] for more details and check out [PHPCS][2] to use as a code formatting tool. [1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md [2]: https://github.com/squizlabs/PHP_CodeSniffer * Adopt PHP short array syntax Laravel 5 adopted the short array syntax which became available in PHP 5.4. * Remove SelfHandling from Jobs Jobs are self handling by default in Laravel 5.2. * Add new exceptions to `$dontReport` property * Shift core files * Shift Middleware Laravel 5.2 adjusts the `Guard` object used within middleware. In addition, new `can` and `throttles` middleware were added. * Shift Input to Request facade Laravel 5.2 no longer registers the `Input` facade by default. Laravel now prefers using the `Request` facade or the `$request` object within *Controllers* instead. Review the [HTTP Requests][1] documentation for more details. [1]: https://laravel.com/docs/5.2/requests * Shift configuration Laravel 5.2 introduces the `env` app configuration option and removes the `pretend` mail configuration option. In addition, a few of the default `providers` and `aliases` bindings were removed. * Shift Laravel dependencies * Shift cleanup * Updated composer.lock * Updated Middleware to 5.2 * Config update for Laravel 5.2 * [Laravel 5.2] Updated validation strings * Updated auth config * Updated to use middleware groups * Added laravel 5.2 sessions migration
2016-09-30 00:26:31 +02:00
"filp/whoops": "^2.1",
"symfony/dom-crawler": "~3.1",
2017-11-28 06:44:31 +01:00
"symfony/css-selector": "~3.1",
2017-11-28 08:00:11 +01:00
"laravel/browser-kit-testing": "2.*",
2017-11-28 06:44:31 +01:00
"nategood/httpful": "^0.2.20"
2015-08-30 13:22:00 +02:00
},
"autoload": {
"classmap": [
"database/factories",
"database/migrations",
"database/seeds",
2015-09-06 19:21:11 +02:00
"app/Library"
2015-08-30 13:22:00 +02:00
],
"psr-4": {
2021-02-14 03:34:58 +01:00
"App\\": "app/"
2015-08-30 13:22:00 +02:00
}
},
"autoload-dev": {
2017-11-28 06:44:31 +01:00
"psr-4": {
"Tests\\": "tests/"
}
2015-08-30 13:22:00 +02:00
},
"scripts": {
"post-root-package-install": [
2017-11-28 08:00:11 +01:00
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
2015-08-30 13:22:00 +02:00
],
"post-create-project-cmd": [
2017-11-28 08:00:11 +01:00
"@php artisan key:generate"
],
"post-update-cmd": [
"php artisan ide-helper:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
2015-08-30 13:22:00 +02:00
]
},
"config": {
"preferred-install": "dist"
2017-11-28 08:00:11 +01:00
},
"extra": {
"laravel": {
"dont-discover": [
]
}
2017-11-29 05:47:14 +01:00
}
}