├── .gitignore ├── README.md ├── bareback-cover.png ├── composer.json ├── composer.lock ├── phpunit.xml.dist ├── src ├── TestCase.php └── TestFrameworkRunner.php └── tests ├── NoFrameworkByDefaultTest.php ├── NoFrameworkTest.php ├── TestCaseTest.php ├── TestFrameworkRunnerTest.php └── WithFrameworkTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/README.md -------------------------------------------------------------------------------- /bareback-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/bareback-cover.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/src/TestCase.php -------------------------------------------------------------------------------- /src/TestFrameworkRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/src/TestFrameworkRunner.php -------------------------------------------------------------------------------- /tests/NoFrameworkByDefaultTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/tests/NoFrameworkByDefaultTest.php -------------------------------------------------------------------------------- /tests/NoFrameworkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/tests/NoFrameworkTest.php -------------------------------------------------------------------------------- /tests/TestCaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/tests/TestCaseTest.php -------------------------------------------------------------------------------- /tests/TestFrameworkRunnerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/tests/TestFrameworkRunnerTest.php -------------------------------------------------------------------------------- /tests/WithFrameworkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallincoons/laravel-bareback/HEAD/tests/WithFrameworkTest.php --------------------------------------------------------------------------------