Chris Morrell

Results 8 issues of Chris Morrell

Hi all, I've updated and started to maintain a fork of this package. You can take a look at: [glhd/bootforms](https://packagist.org/packages/galahad/bootforms) It's been updated for Laravel 5.6 and also has a...

Middleware could easily function before/after a request: ```js const middleware = (req, options, next) => { options.headers = options.headers || {}; options.headers['authorization'] = 'created token'; return next(req, options); }; const...

If my sidecar function calls: ```js console.log(`Result: ${ JSON.stringify(result, null, 2) }`); ``` Then `parseInfoLine` fails on line 262: https://github.com/hammerstonedev/sidecar/blob/651381a336a2a54a3274abed341ee70a74136402/src/Results/SettledResult.php#L252-L262 I honestly don't have a great solution for this right...

This just adds support for `8.0` and `9.0`. It also adds some `@method` annotations so that the static methods can autocomplete in IDEs that support it.

This PR adds custom "open graph" meta tags and images for each docs page. By default it relies on the page title and the first sizable code block on the...

#131 changed the signature of `SettledResult::throw` so that calling `->throw()` without a parameter is no longer allowed. This just sets the default to `NULL` so that it's backwards-compatible.

Right now, Dusk makes requests to a separate server process. This has a few downsides: 1. Test setup needs to run via special `_dusk/` routes rather than using normal factories/setup...

If a blade component has a boolean property, you can use a boolean attribute in the XML. For example: ```php class Toggle extends Component { public function __construct(bool $toggled =...

under discussion - investigating solutions