This commit is contained in:
Mike Bronner
2020-09-13 22:39:34 +00:00
parent fa3d2a14a7
commit 8dab019c32
4 changed files with 7 additions and 4 deletions

View File

@@ -23,7 +23,8 @@
"orchestra/testbench-browser-kit": "^6.0",
"orchestra/testbench-dusk": "^6.0",
"orchestra/testbench": "^6.0",
"predis/predis": "^1.1"
"predis/predis": "^1.1",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
@@ -42,6 +43,11 @@
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}

View File

@@ -7,7 +7,4 @@ use Orchestra\Testbench\Dusk\TestCase;
abstract class BrowserTestCase extends TestCase
{
use CreatesApplication;
protected static $baseServeHost = '127.0.0.1';
protected static $baseServePort = 9000;
}