diff --git a/CHANGELOG.md b/CHANGELOG.md index 54a31bb..aa90543 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Changelog +## 0.1.18 - 2020-09-05 +### Add +- Support for Laravel 8 ## 0.1.17 - 2020-08-30 ### Add diff --git a/composer-v8.json b/composer-v8.json deleted file mode 100755 index 02f41b3..0000000 --- a/composer-v8.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "name": "hi-folks/lara-lens", - - "description": "Laravel Diagnostic command for configuration, db connection, http request", - "keywords": [ - "laravel", - "diagnostic", - "cli", - "package", - "command-line", - "console", - "hi-folks", - "lara-lens" - ], - "homepage": "https://github.com/hi-folks/lara-lens", - "license": "MIT", - "type": "library", - "authors": [ - { - "name": "Roberto Butti", - "role": "Developer" - } - ], - "require": { - "php": "^7.3", - "illuminate/support": "dev-master" - }, - "require-dev": { - "orchestra/testbench": "dev-master", - "phpunit/phpunit": "^9.0" - }, - "minimum-stability": "dev", - "autoload": { - "psr-4": { - "HiFolks\\LaraLens\\": "src" - } - }, - "autoload-dev": { - "psr-4": { - "HiFolks\\LaraLens\\Tests\\": "tests" - } - }, - "scripts": { - "test": "vendor/bin/phpunit", - "test-coverage": "vendor/bin/phpunit --coverage-html coverage" - - }, - "config": { - "sort-packages": true - }, - "extra": { - "laravel": { - "providers": [ - "HiFolks\\LaraLens\\LaraLensServiceProvider" - ], - "aliases": { - "LaraLens": "HiFolks\\LaraLens\\LaraLensFacade" - } - } - } -} diff --git a/composer.json b/composer.json index 67ffd12..e02918f 100755 --- a/composer.json +++ b/composer.json @@ -23,13 +23,12 @@ ], "require": { "php": "^7.2", - "guzzlehttp/guzzle": "~6.0", - "illuminate/http": "^6.0|^7.25", - "illuminate/support": "^6.0|^7.0" + "guzzlehttp/guzzle": "^6.0|^7.0", + "illuminate/support": "^6.0|^7.0|^8.0" }, "require-dev": { - "orchestra/testbench": "4.*|5.*", - "phpunit/phpunit": "^8.4" + "orchestra/testbench": "4.*|5.*|6.*", + "phpunit/phpunit": "^8.0|^9.3" }, "autoload": { "psr-4": {