Ripcord
Ripcord copied to clipboard
XML RPC client and server around PHP's xmlrpc library
Hi, Is there anyway to use with Laravel8/9? I tried publish, but the no handle function occurred. Thank you in advance.
After upgrade the codebase into php 8 API functions are not working. have you make any sense?
Heya! I am running Composer 1.10.1 and it's giving me deprecation notice. ```bash Deprecation Notice: Class Ripcord\Documentator\Documentor located in ./vendor/darkaonline/ripcord/src/Ripcord/Documentor/Documentor.php does not comply with psr-4 autoloading standard. It will not...
Issue #18 **Reason** All classes in folder ```src/Ripcord/Documentor``` and ```src/Ripcord/Parsers``` have a wrong namespace definition following psr-4 specifications for classes autoloading. **Resolution** - Renamed all occurences of ```Documentator``` by ```Documentor```...
Getting this error: `XML-RPC doesn't support circular references` The line hitting the error is ``` $request = xmlrpc_encode_request( $name, $args, $this->_outputOptions ); ``` I debugged it to ``` xmlrpc_encode_request('authenticate', $args,...
Hi, so I got Ripcord to load and all. So for so good. However, I run into trouble trying to use it. I didn't get very far: ``` public function...
Hello there, I'm using the arrow operator so that I can go through the server namespace easily. I'm also trying to configure ripcord so that it raises an exception on...
I had to implement this: ``` $documentor = new \Ripcord\Documentator\Documentor(null, new \Ripcord\Documentator\Parsers\PhpDoc()); $ripcordServer = Ripcord::server($myServer, null, $documentor); $ripcordServer->run(); ``` when all I wanted is this: ``` $ripcordServer = Ripcord::server($myServer); $ripcordServer->run();...