kavinsky/laravel-mrw-api

An unofficial API implementation for MRW SOAP API.

v0.1.0 2025-04-09 09:12 UTC

This package is auto-updated.

Last update: 2025-04-09 09:17:08 UTC


README

Package still in development, do not use in production environments.

Installation

You can install the package via composer:

composer require kavinsky/laravel-mrw-api

Configure mrw entry in your config/services.php file:

return [
    // ...
    'mrw' => [
        'wsdl' => env('MRW_WSDL'),
        'auth' => [
            'client_code' => env('MRW_CLIENT_CODE'),
            'client_key' => env('MRW_CLIENT_KEY'),
            'center_code' => env('MRW_CENTER_CODE'),
            'franchise_code' => env('MRW_FRANCHISE_CODE'),
        ],
        // Options to pass to the Guzzle Client
        'httpOptions' => [],
    ]
]

Usage

Still in progress. The package is not ready yet.

License

The MIT License (MIT). Please see License File for more information.