Pony.fm/composer.json

86 lines
2.4 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": {
2021-02-14 20:11:18 +01:00
"php": "^7.3|^8.0",
"laravel/framework": "^8.27",
2015-08-30 14:29:12 +02:00
"codescale/ffmpeg-php": "2.7.0",
2021-02-14 20:11:18 +01:00
"guzzlehttp/guzzle": "^7.0.1",
2021-02-14 19:57:25 +01:00
"doctrine/dbal": "^3.0",
2021-02-14 05:17:45 +01:00
"venturecraft/revisionable": "^1.36",
2021-02-14 19:21:31 +01:00
"pda/pheanstalk": "^4.0",
2021-02-14 19:53:00 +01:00
"cviebrock/laravel-elasticsearch": "^4.0",
2021-02-14 19:21:31 +01:00
"barryvdh/laravel-debugbar": "^3.5",
"predis/predis": "^1.1",
2016-06-05 20:45:21 +02:00
"ksubileau/color-thief-php": "^1.3",
2021-02-14 20:09:50 +01:00
"graham-campbell/exceptions": "^14.0",
"minishlink/web-push": "^1.0",
"alsofronie/eloquent-uuid": "^1.0",
2017-11-29 05:47:14 +01:00
"poniverse/api": "dev-rewrite",
2021-02-14 05:17:45 +01:00
"fruitcake/laravel-cors": "2.0.1",
2021-02-14 19:21:31 +01:00
"laravel/tinker": "^2.5",
2021-02-14 19:53:00 +01:00
"doctrine/collections": "^1.6",
"doctrine/annotations": "^1.11",
"doctrine/cache": "^1.8",
"doctrine/instantiator": "^1.4",
2021-02-14 19:21:31 +01:00
"fideloper/proxy": "^4.4"
2015-08-30 13:22:00 +02:00
},
"require-dev": {
2021-02-14 20:11:18 +01:00
"mockery/mockery": "^1.4.2",
"phpunit/phpunit": "^9.3.3",
2021-02-14 19:57:25 +01:00
"symfony/dom-crawler": "^5.2",
"symfony/css-selector": "^5.2",
"laravel/browser-kit-testing": "^6.2",
2021-02-14 03:39:58 +01:00
"nategood/httpful": "^0.2.20",
2021-02-14 20:11:18 +01:00
"nunomaduro/collision": "^5.0",
2021-02-14 19:21:31 +01:00
"fakerphp/faker": "^1.9.1",
2021-02-14 20:11:18 +01:00
"facade/ignition": "^2.5"
2015-08-30 13:22:00 +02:00
},
"autoload": {
"classmap": [
"database/migrations",
2015-09-06 19:21:11 +02:00
"app/Library"
2015-08-30 13:22:00 +02:00
],
"psr-4": {
2021-02-14 20:11:17 +01:00
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
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": [
2021-02-14 05:23:12 +01:00
"@php artisan key:generate --ansi"
2017-11-28 08:00:11 +01:00
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
2021-02-14 05:23:12 +01:00
"@php artisan package:discover --ansi"
2015-08-30 13:22:00 +02:00
]
},
"config": {
"preferred-install": "dist"
2017-11-28 08:00:11 +01:00
},
"extra": {
"laravel": {
2021-02-14 03:39:58 +01:00
"dont-discover": []
2017-11-28 08:00:11 +01:00
}
2021-02-14 03:39:58 +01:00
},
"minimum-stability": "dev",
"prefer-stable": true
}