My code dies on the curl call, and I'm having trouble debugging what the issue is (lastest PHP 8.4, Ubuntu 24.04 LTS)
I'd prefer to use the Symfony HttpClient, is there a way to pass that (or any PSR-11 client) in and use it instead?
Thanks for releasing this.
$client = new Client('https://pokemon.survos.com/x/mpc');
$result = $client->execute('create_user', [
'emailAddress' => 'tacman@gmail.com',
'username' => 'tacman'
]);
My code dies on the curl call, and I'm having trouble debugging what the issue is (lastest PHP 8.4, Ubuntu 24.04 LTS)
I'd prefer to use the Symfony HttpClient, is there a way to pass that (or any PSR-11 client) in and use it instead?
Thanks for releasing this.