Best laravel framework open-source packages.

Ripcord

XML RPC client and server around PHP's xmlrpc library
Updated 2 months ago

Total Downloads GuitHub Sponsor

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 in app/Providers) and add this line in register function
    $this->app->register(\Ripcord\Providers\Laravel\ServiceProvider::class);
  • Run ripcord:publish to publish configs (config/ripcord.php) or just copy ripcord.php file from vendor/darkaonline/ripcord/src/Ripcord/Prividers/Laravel/config and paste to config folder

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
  {
    ...
  }

Support

GuitHub Sponsor

Tags xml php