This is a very simple Lumen application used to test the Lumen module of Codeception. It has no real world functionality, only functionality to check the correct execution of the methods of the Lumen module.
- Clone repo
- Create your .env file from the example file:
cp .env.testing .env - Install composer dependencies:
composer install - Create databases by creating the following files:
storage/database.sqlitestorage/testing.sqlite
- Run the following commands:
php artisan migratephp artisan migrate --database=testing
- Server:
- run
php -S localhost:8000 -t publicand browse to localhost:8000
- run
- Run tests
- run Codeception, installed via Composer:
./vendor/bin/codecept run
- run Codeception, installed via Composer: