ibnfaroukroqay/dynamics

1.0.3 2023-10-25 11:18 UTC

README

Latest Version on Packagist Total Downloads

This package is a wrapper for Microsoft Dynamics integration .

Installation

You can install the package via composer:

composer require ibnfaroukroqay/dynamics

You can publish and run the migrations with:

php artisan vendor:publish --tag="dynamics-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="dynamics-config"

This is the contents of the published config file:

return [
];

Optionally, you can publish the views using

php artisan vendor:publish --tag="dynamics-views"

Usage

use Ibnfaroukroqay\Dynamics\Dynamics;

$dynamics = new Dynamics();
$response = $dynamics->sendRequst($endpoint,$data);

// or using Facade
use Ibnfaroukroqay\Dynamics\Facades\Dynamics;

$response = Dynamics::sendRequest($endpoint,$data)

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

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