gitextract_fazur9k6/ ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config/ │ └── dusk-dashboard.php ├── phpunit.xml.dist ├── resources/ │ └── views/ │ └── index.html └── src/ ├── Action.php ├── BrowserActionCollector.php ├── Console/ │ └── StartDashboardCommand.php ├── Dusk/ │ ├── Browser.php │ └── Concerns/ │ ├── InteractsWithAuthentication.php │ ├── InteractsWithCookies.php │ ├── InteractsWithElements.php │ ├── InteractsWithJavascript.php │ ├── InteractsWithMouse.php │ ├── MakesAssertions.php │ ├── MakesUrlAssertions.php │ └── WaitsForElements.php ├── DuskDashboardServiceProvider.php ├── DuskProcessFactory.php ├── Ratchet/ │ ├── Http/ │ │ ├── Controller.php │ │ ├── DashboardController.php │ │ └── EventController.php │ ├── Server/ │ │ ├── App.php │ │ └── HttpServer.php │ └── Socket.php ├── Testing/ │ └── TestCase.php └── Watcher.php