Wouter
Wouter
We are in the process of adding Pest to an existing Symfony project. I've created a separate folder for Pest `tests/Pest/Unit` while the existing PHPUnit tests live in `tests/Unit`, `tests/Functional`...
The readme template that's copied to the project is currently taken from the templates directory inside Skeletor. Instead we should load the template from our templates git repository > https://github.com/pixelfusion/templates/blob/master/readme-template.md
The following snippet has to be added to the `Laravel54Framework.php` file: $this->projectFilesystem->rename('app/User.php', 'app/Models/User.php'); We also have to do a search and replace to update all mentions of `App\User` to `App\Models\User`.
The `redirectTo()` function wasn’t returning `null` for JSON requests causing it to throw a 500 error for unauthenticated API requests.