Looking to hire Laravel developers? Try LaraJobs

laravel-mrw-api maintained by kavinsky

Description
An unofficial API implementation for MRW SOAP API.
Last update
2026/04/21 02:37 (dev-dependabot/github_actions/dependabot/fetch-metadata-3.1.0)
License
Downloads
4 492
Tags

Comments
comments powered by Disqus

An unofficial API implementation for MRW SOAP API for Laravel.

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'),
        'tracking_wsdl' => env('MRW_TRACKING_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.