Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Feb 27, 2019
1 parent 7eaf198 commit 155693f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `laravel-artisan-dd` will be documented in this file

## 2.1.0 - 2018-02-27

- drop support for PHP 7.1

## 2.0.3 - 2018-02-27

- add support for Laravel 5.8
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
}
],
"require": {
"php": "^7.1",
"php": "^7.2",
"laravel/framework": "~5.8.0"
},
"require-dev": {
"orchestra/testbench": "~3.8.0",
"phpunit/phpunit": "^7.0"
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/DdCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class DdCommandTest extends TestCase
/** @test */
public function it_will_not_run_if_the_environment_is_not_local()
{
Artisan::call('dd', ['code' => 'app()->environment()']);
Artisan::call('dd "app()->environment()"');

$this->seeInConsoleOutput('This command can only run if');
}
Expand Down

0 comments on commit 155693f

Please sign in to comment.