initial commit

- lumen installed
- docker env setup
This commit is contained in:
2017-05-13 09:19:06 -04:00
commit a00013f570
43 changed files with 6043 additions and 0 deletions

14
tests/TestCase.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
abstract class TestCase extends Laravel\Lumen\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Laravel\Lumen\Application
*/
public function createApplication()
{
return require __DIR__.'/../bootstrap/app.php';
}
}