mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-02-16 18:14:23 +01:00
Fixed Laravel Debugbar in the dev environment.
This commit is contained in:
parent
8fb2991d04
commit
cea48c6d83
4 changed files with 13 additions and 13 deletions
|
@ -15,7 +15,7 @@
|
||||||
"venturecraft/revisionable": "^1.23",
|
"venturecraft/revisionable": "^1.23",
|
||||||
"pda/pheanstalk": "~3.0",
|
"pda/pheanstalk": "~3.0",
|
||||||
"cviebrock/laravel-elasticsearch": "^1.0",
|
"cviebrock/laravel-elasticsearch": "^1.0",
|
||||||
"barryvdh/laravel-debugbar": "^2.1",
|
"barryvdh/laravel-debugbar": "^2.2",
|
||||||
"predis/predis": "^1.0",
|
"predis/predis": "^1.0",
|
||||||
"ksubileau/color-thief-php": "^1.3"
|
"ksubileau/color-thief-php": "^1.3"
|
||||||
},
|
},
|
||||||
|
|
20
composer.lock
generated
20
composer.lock
generated
|
@ -4,28 +4,28 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"hash": "34abdcf2e916a26919b81059ba38fa47",
|
"hash": "59213ec0fdecf24707ca8ee39ee41685",
|
||||||
"content-hash": "afae7bc6603035b2573af4b56c91c0dd",
|
"content-hash": "46f16166f90cd1546772880f9725b112",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "barryvdh/laravel-debugbar",
|
"name": "barryvdh/laravel-debugbar",
|
||||||
"version": "v2.1.1",
|
"version": "v2.2.2",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/barryvdh/laravel-debugbar.git",
|
"url": "https://github.com/barryvdh/laravel-debugbar.git",
|
||||||
"reference": "974fd16e328ca851a081449100d9509af59cf0ff"
|
"reference": "c291e58d0a13953e0f68d99182ee77ebc693edc0"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/974fd16e328ca851a081449100d9509af59cf0ff",
|
"url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/c291e58d0a13953e0f68d99182ee77ebc693edc0",
|
||||||
"reference": "974fd16e328ca851a081449100d9509af59cf0ff",
|
"reference": "c291e58d0a13953e0f68d99182ee77ebc693edc0",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"illuminate/support": "~5.0.17|5.1.*|5.2.*",
|
"illuminate/support": "5.1.*|5.2.*",
|
||||||
"maximebf/debugbar": "~1.11.0",
|
"maximebf/debugbar": "~1.11.0",
|
||||||
"php": ">=5.4.0",
|
"php": ">=5.5.9",
|
||||||
"symfony/finder": "~2.6|~3.0"
|
"symfony/finder": "~2.7|~3.0"
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
"profiler",
|
"profiler",
|
||||||
"webprofiler"
|
"webprofiler"
|
||||||
],
|
],
|
||||||
"time": "2015-12-22 06:22:38"
|
"time": "2016-05-11 13:54:43"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "barryvdh/laravel-ide-helper",
|
"name": "barryvdh/laravel-ide-helper",
|
||||||
|
|
|
@ -140,6 +140,7 @@ return [
|
||||||
/*
|
/*
|
||||||
* Application Service Providers...
|
* Application Service Providers...
|
||||||
*/
|
*/
|
||||||
|
Barryvdh\Debugbar\ServiceProvider::class,
|
||||||
Poniverse\Ponyfm\Providers\AppServiceProvider::class,
|
Poniverse\Ponyfm\Providers\AppServiceProvider::class,
|
||||||
Poniverse\Ponyfm\Providers\EventServiceProvider::class,
|
Poniverse\Ponyfm\Providers\EventServiceProvider::class,
|
||||||
Poniverse\Ponyfm\Providers\RouteServiceProvider::class,
|
Poniverse\Ponyfm\Providers\RouteServiceProvider::class,
|
||||||
|
@ -148,7 +149,6 @@ return [
|
||||||
Intouch\LaravelNewrelic\NewrelicServiceProvider::class,
|
Intouch\LaravelNewrelic\NewrelicServiceProvider::class,
|
||||||
Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
|
Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
|
||||||
Cviebrock\LaravelElasticsearch\ServiceProvider::class,
|
Cviebrock\LaravelElasticsearch\ServiceProvider::class,
|
||||||
Barryvdh\Debugbar\ServiceProvider::class,
|
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
@ -693,4 +693,4 @@ aof-rewrite-incremental-fsync yes
|
||||||
#
|
#
|
||||||
# include /path/to/local.conf
|
# include /path/to/local.conf
|
||||||
# include /path/to/other.conf
|
# include /path/to/other.conf
|
||||||
include /etc/redis/conf.d/local.conf
|
# include /etc/redis/conf.d/local.conf
|
||||||
|
|
Loading…
Reference in a new issue