jordansitbon/rtisan-connect

This package provides a simple way to connect your Laravel application to the Rtisan API.

dev-main 2023-07-03 05:22 UTC

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This repo can be used to connect Rtisan to your Laravel application.

Installation

For use Rtisan Connect you need to sign up for a Rtisan account and create a new project. After project creation, you can generate the Connect Token with clicking on the " ⚡️ " button.

You can install the package via composer:

composer require jordansitbon/rtisan-connect

You can publish the config file with:

php artisan vendor:publish --tag="rtisan-connect-config"

This is the contents of the published config file:

return [
    'token' => env('RTISAN_CONNECT_TOKEN'),
];

Usage

To upload your language files to Rtisan, you can use the rtisan:upload command:

php artisan rtisan:upload

To download the language files from Rtisan to your app, you can use the rtisan:download command:

php artisan rtisan:download

Credits

License

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