oauth2-server-php
oauth2-server-php copied to clipboard
A library for implementing an OAuth2 Server in php
Since PHP 8.4, function parameters that are set to the default value "null" must be explicitly declared as a nullable type or "mixed". The application is currently still running, but...
It fixes issue #449
I'm trying to connect to my mongoDB by doing this (as stated in https://bshaffer.github.io/oauth2-server-php-docs/storage/mongo/): ``` $mongo = new MongoDB\Client("mongodb://admin:pass@{$mongoHost}:{$mongoPort}"); $storage = new OAuth2\Storage\Mongo($mongo); ``` However it doesn't seem to be...