dashx / php
DashX SDK for PHP
dev-main
2024-01-24 13:58 UTC
Requires
- php: ^8.0.2
- guzzlehttp/guzzle: ^7.4
- ramsey/uuid: ^4.7.4
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2025-03-21 21:18:27 UTC
README
Website | Demos | Documentation
dashx-php
DashX SDK for PHP (Experimental)
Installation
Usage
# include composer autoload require 'vendor/autoload.php'; # import the DashX Client Class use Dashx\Php\Client; # create DashX instance $dashx = new Client( 'DASHX_PUBLIC_KEY', 'DASHX_PRIVATE_KEY', 'DASHX_TARGET_ENVIRONMENT', 'DASHX_URI' ); $dashx->deliver('email/forgot-password', [ 'to' => 'youremail@example.com', 'data' => [ 'token' => 'tokenvalue' // ... rest of data payload ] ]);
Integration with Laravel
To integrate DashX with Laravel, run the following artisan command to publish the configuration file:
php artisan vendor:publish --provider="Dashx\Php\Laravel\DashxServiceProvider"
Add DashX environment variables with values:
DASHX_URI= DASHX_PUBLIC_KEY= DASHX_PRIVATE_KEY= DASHX_TARGET_ENVIROMENT=
Usage with Laravel
use DashX; DashX::deliver('email/forgot-password', [ 'to' => 'youremail@example.com', 'data' => [ 'token' => 'tokenvalue' // ... rest of data payload ] ]);