Craig Potter
Craig Potter
Would be good to get this added back to bower.
Started looking at this however I noticed that `app('migrator')->paths();` is returning an empty array sometimes.
Don't know if it will help but I found today that rewinding the Paginator will help with the setStartPage(); ```php $paginator = $myConnector->paginate(new MyRequest()); $paginator->setStartPage(15); $paginator->rewind(); foreach ($paginator as $page)...
Hi @IgordeOliveira I have just release the initial version of [Barstool](https://github.com/craigpotter/Barstool) which should solve all your problems although it will save the logs to a database. Would be interested to...
Can you give an example?
Hi @yankewei I noticed you closed the PR. Did you find a better solution for this or is this something you would still like to propose?
Could you not just add a method to your request to set the method ? ```php class MyRequest extends Request { protected Method $method = Method::GET; public function setMethod(Method $method):...
Also just to add > You don't need to have the whole config present, as it is merged with the default config, only the values you've changed from the defaults....
Can you try the following instead ```php // This fails because second run uses cached response from first fixture test('cache ignores fixture changes', function () { // First run with...
Hmmm @Sammyjo20 we are using Spatie's Macroable (https://github.com/spatie/macroable) and you have the macroable trait (https://github.com/saloonphp/saloon/blob/v3/src/Traits/Macroable.php) in Saloon..... I reckon we could shine our spurs and rowels and added it to...