Download the PHP package coxlr/laravel-ringcentral without Composer

On this page you can find all versions of the php package coxlr/laravel-ringcentral. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-ringcentral

A Laravel package for the RingCentral SDK for PHP

Latest Version on Packagist Tests Total Downloads

This is a simple Laravel Service Provider providing access to the RingCentral SDK for PHP.

Installation

This package requires PHP 8.0 and Laravel 8 or higher.

To install the PHP client library using Composer:

The package will automatically register the RingCentral provider and facade.

You can publish the config file with:

Then update config/ringcentral.php with your credentials. Alternatively, you can update your .env file with the following:

This package uses the JWT autentication method. You can learn more about setting up JWT for your RingCentral account here.

Usage

To use the RingCentral Client Library you can use the facade, or request the instance from the service container.

Sending an SMS message (requires login in extension to be company operator)

Or

Properties

Name Required Type Default Description
to true String The number to send the message to, must include country code
text true String The text of the message to send

Retrieving Extensions (requires admin access)

Or

Get messages sent and received for the operator

Or

The default from date is the previous 24 hours, to specify the date to search from pass the require date as a parameter.

Parameters

Name Required Type Default Description
fromDate false Object The date and time to start the search from must be a PHP date object
toDate false Object The date and time to end the search must be a PHP date object
perPage false Int 100 The number of records to return per page

Get messages sent and received for a given extension (Needs admin access)

Or

The default from date is the previous 24 hours, to specficy the date to search from pass the require date as a parameter.

Parameters

Name Required Type Default Description
extensionId true String The RingCentral extension Id of the extension to retrieve the messages for
fromDate false Object The date and time to start the search from must be a PHP date object
toDate false Object The date and time to end the search must be a PHP date object
perPage false Int 100 The number of records to return per page

Get a messages attachment (requires admin access)

Or

Parameters

Name Required Type Default Description
extensionId true String The RingCentral extension Id of the extension the messages belongs to
messageId true String The id of the message of the the attachment belongs to
attachmentId true String The id of the attachment

For more information on using the RingCentral client library, see the official client library repository.

Testing

If using the RingCentral sandbox environment when testing set the following environment variable to true to handle sandbox message prefix.

An optional environment value can be set to prevent hitting RingCentral rate limits when testing. This will add a delay for the set seconds before each test.

Changelog

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

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

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


All versions of laravel-ringcentral with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
ringcentral/ringcentral-php Version ^2.2.5|^3.0.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package coxlr/laravel-ringcentral contains the following files

Loading the files please wait ....