Colin Sheaff
Colin Sheaff
This maybe out of scope for the project, but it would be amazing to support links in the transcription text to the corresponding points in the video. See http://www.subply.com/en/Products/InterActiveTranscript.htm as...
### Start from the Use-case It is easy to bump up against the limit of ten white-listed headers to pass through CloudFront for `server-side-website` apps. However, AWS has a managed...
Migration was failing with unsigned integer definition for foreign key. It might be better to use `foreignId()` instead of the more verbose `foreign()->references()->on()` syntax, but this was the smallest changeset...
When 'Use Hardware Decoding' is active in `Settings` > `Plex for Mac` > `Player`, macroblocks or CTUs become much more visible, especially in very noisy parts of images like background....
This is a fix for #293. Warnings should not be suppressed, unless you also suppress the output on `STDERR`.
If there are no tests in a test class file, [PHPUnit raises a warning](https://github.com/sebastianbergmann/phpunit/blob/8f46528d874878045526dd58b8d6b69a4b5c749a/src/Framework/TestSuite.php#L129) (`Event\Facade::emitter()->testRunnerTriggeredWarning()` - 'no tests found in class') and will pass on a non-zero value to `STDERR`....
Using [openidconnect.net](https://openidconnect.net/) I've compared the auth tokens issued by `laravel-openid-connect-server` and Google'a OAuth flow and Google returns userdata in the AuthToken. Compare: ### This Library #### Header ```json { "typ":...
Previously, the `jwks()` function in `ProviderController.php` would return a default kid value if the `$crypt->kid` value was null. This could be seen in the output of `.well-known/jwks.json` which would return...
PHP 8.4 introduces the deprecation of implicitly nullable parameters (https://github.com/php/php-src/blob/php-8.4.0RC1/UPGRADING#L497). This PR updates the codebase to be compatible with PHP 8.4, and also improves the function signatures and return type...
This commit fixes the issue by adding nullable types to the method signatures. https://github.com/php/php-src/blob/php-8.4.0RC1/UPGRADING#L497 4. Deprecated Functionality - Core: . Implicitly nullable parameter types are now deprecated. RFC: https://wiki.php.net/rfc/deprecate-implicitly-nullable-types