From 808906a7b3c307359e3f0e689610445fb682b30c Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Wed, 22 Aug 2018 09:48:50 +0800 Subject: [PATCH] Remove debugbar from dependencies --- composer.json | 1 - composer.lock | 131 +------------------------------------------------ config/app.php | 1 - 3 files changed, 1 insertion(+), 132 deletions(-) diff --git a/composer.json b/composer.json index f4f77a56..ee4acc24 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,6 @@ "phpdocumentor/reflection-docblock": "3.2.2", "phpunit/phpunit": "~7.0", "laravel/browser-kit-testing": "~4.0", - "barryvdh/laravel-debugbar": "^3.1.5", "league/flysystem-memory": "^1.0", "mikey179/vfsStream": "^1.6.5", "barryvdh/laravel-ide-helper": "^2.4" diff --git a/composer.lock b/composer.lock index 18c74066..09601232 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "53454be5162a6b99698b81d230e430d9", + "content-hash": "7da0571396d4ca7ee2526e055792d333", "packages": [ { "name": "composer/semver", @@ -2632,74 +2632,6 @@ } ], "packages-dev": [ - { - "name": "barryvdh/laravel-debugbar", - "version": "v3.1.5", - "source": { - "type": "git", - "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "d3cdca2ad6cc6e67735b4a63e7551c690a497f5f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/d3cdca2ad6cc6e67735b4a63e7551c690a497f5f", - "reference": "d3cdca2ad6cc6e67735b4a63e7551c690a497f5f", - "shasum": "" - }, - "require": { - "illuminate/routing": "5.5.x|5.6.x", - "illuminate/session": "5.5.x|5.6.x", - "illuminate/support": "5.5.x|5.6.x", - "maximebf/debugbar": "~1.15.0", - "php": ">=7.0", - "symfony/debug": "^3|^4", - "symfony/finder": "^3|^4" - }, - "require-dev": { - "illuminate/framework": "5.5.x" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.2-dev" - }, - "laravel": { - "providers": [ - "Barryvdh\\Debugbar\\ServiceProvider" - ], - "aliases": { - "Debugbar": "Barryvdh\\Debugbar\\Facade" - } - } - }, - "autoload": { - "psr-4": { - "Barryvdh\\Debugbar\\": "src/" - }, - "files": [ - "src/helpers.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Barry vd. Heuvel", - "email": "barryvdh@gmail.com" - } - ], - "description": "PHP Debugbar integration for Laravel", - "keywords": [ - "debug", - "debugbar", - "laravel", - "profiler", - "webprofiler" - ], - "time": "2018-05-03T18:27:04+00:00" - }, { "name": "barryvdh/laravel-ide-helper", "version": "v2.4.3", @@ -3073,67 +3005,6 @@ ], "time": "2016-06-04T03:57:11+00:00" }, - { - "name": "maximebf/debugbar", - "version": "v1.15.0", - "source": { - "type": "git", - "url": "https://github.com/maximebf/php-debugbar.git", - "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30e7d60937ee5f1320975ca9bc7bcdd44d500f07", - "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07", - "shasum": "" - }, - "require": { - "php": ">=5.3.0", - "psr/log": "^1.0", - "symfony/var-dumper": "^2.6|^3.0|^4.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0|^5.0" - }, - "suggest": { - "kriswallsmith/assetic": "The best way to manage assets", - "monolog/monolog": "Log using Monolog", - "predis/predis": "Redis storage" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.14-dev" - } - }, - "autoload": { - "psr-4": { - "DebugBar\\": "src/DebugBar/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Maxime Bouroumeau-Fuseau", - "email": "maxime.bouroumeau@gmail.com", - "homepage": "http://maximebf.com" - }, - { - "name": "Barry vd. Heuvel", - "email": "barryvdh@gmail.com" - } - ], - "description": "Debug bar in the browser for php application", - "homepage": "https://github.com/maximebf/php-debugbar", - "keywords": [ - "debug", - "debugbar" - ], - "time": "2017-12-15T11:13:46+00:00" - }, { "name": "mikey179/vfsStream", "version": "v1.6.5", diff --git a/config/app.php b/config/app.php index 47546002..14181b03 100644 --- a/config/app.php +++ b/config/app.php @@ -233,7 +233,6 @@ return [ 'URL' => Illuminate\Support\Facades\URL::class, 'Validator' => Illuminate\Support\Facades\Validator::class, 'View' => Illuminate\Support\Facades\View::class, - 'Debugbar' => Barryvdh\Debugbar\Facade::class, 'Str' => Illuminate\Support\Str::class, 'Arr' => Illuminate\Support\Arr::class,