rcarvs / ripcord
RPC client and server around PHP's xmlrpc library but without XMLRPC extension necessity
Fund package maintenance!
DarkaOnLine
Installs: 11
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 24
pkg:composer/rcarvs/ripcord
Requires
- php: >=8.0
- phpxmlrpc/phpxmlrpc: ^4.9
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.14@dev
This package is not auto-updated.
Last update: 2025-12-17 00:51:19 UTC
README
Ripcord - XML RPC client and server for PHP
This packages is a copy of https://code.google.com/p/ripcord/.
Installation
composer require darkaonline/ripcord
Requirements
Requires the PHP extension XML-RPC.
For Laravel Users
- Open your
AppServiceProvider(located inapp/Providers) and add this line inregisterfunction
$this->app->register(\Ripcord\Providers\Laravel\ServiceProvider::class);
- Run
ripcord:publishto publish configs (config/ripcord.php) or just copyripcord.phpfile fromvendor/darkaonline/ripcord/src/Ripcord/Prividers/Laravel/configand paste toconfigfolder
Extending
Just extend Ripcord class and all your coinfg and basic connection will be done for you automaticly
namespace Foo\Bar; use Ripcord\Providers\Laravel\Ripcord; class Provider extends Ripcord { ... }