Jason Judge

Results 173 comments of Jason Judge

McAfee is also doing this. It flashed up what kind of virus it believed it was, but now I can't get into a detailed report to see what it was....

This package works find on PHP 8.0 but fails on PHP 8.1 without the return typehints for `ArrayAccess`. We are using it as a depencency of [`vyuldashev/laravel-openapi`](https://github.com/vyuldashev/laravel-openapi)

Looking at the Guzzle documentation here: http://docs.guzzlephp.org/en/stable/request-options.html#auth It looks like the `auth` parameter is supposed to be an array anyway, and not a string. All the overriding parameters could go...

This package uses wildcards to see if the migration files have been created, without actually loading them: https://github.com/spatie/laravel-permission/blob/master/src/PermissionServiceProvider.php#L172 However, their stubs [create table namess from the config data](https://github.com/spatie/laravel-permission/blob/master/database/migrations/create_permission_tables.php.stub#L16), so they...

That's an interesting read. Looks like duplicate migration publishing has been an issue for some time. I have, for my package, abandoned using stubs for the migrations. Even with workarounds,...

No @lordisp , I have stayed away from stubs for now. I haven't explored using them since anonymous migrations were introduced, and it's probably worthwhile doing that. There won't be...

~~Not for merging yet~~ - I'm going to run some local tests to see if there are other commits I have missed first. This gets some automated tests in, in...

This is working for me nicely in Laravel 5.8 and PHP 7.3. Although I'll be upgrading the Laravel version soon, it's all about timing and compatibility with other packages, and...

Each endpoint can have multiple tags, so `accounting` could group everything in the Accounting API, and then additional tags could group other collections of endpoints. I could imagine there would...

Has this been completely superseded by PR #57? If it has, then it can be closed.