Download the PHP package artistan/nexmo without Composer

On this page you can find all versions of the php package artistan/nexmo. 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 nexmo

Nexmo for Laravel 5

Implements a service for Nexmo messaging based on

Composer Configuration

Include the artistan nexmo package as a dependency in your composer.json Packagist:

"artistan/nexmo": "0.1.*"

Installation

Once you update your composer configuration, run composer install to download the dependencies.

Add a ServiceProvider to your providers array in app/config/app.php:

'providers' => array(

    'Artistan\Nexmo\NexmoServiceProvider',

)

Publish the Vendor Config

php artisan vendor:publish --provider="Artistan\Nexmo\NexmoServiceProvider"

Usage - work in progress

Sending SMS via the Nexmo SMS gateway.

Quick Examples

1) Sending an SMS

$sms = new Artistan\Nexmo\Service\Message\Sms;
    OR
$sms = \App::make('nexmosmsmessage');
    AND
$result = $sms->sendText('15005554320','15555633637','dude, this is from a laravel package');

OR

$sms = NexmoSmsMessage::sendText('15005554320','15555633637','dude, this is from a laravel package');

2) Recieving SMS

// TODO:: setup default routing for this... $sms = new Artistan\Nexmo\Service\Message\Sms; OR $sms = \App::make('nexmosmsmessage'); AND if ($sms->inboundText()) { $sms->reply('You said: ' . $sms->text); }

 OR

if(NexmoAccount::inboundText()){
     NexmoAccount::reply('You said: ' . $sms->text);
}

3) Receiving a message receipt

// TODO:: setup default routing for this... $receipt = new Artistan\Nexmo\Service\Receipt; OR $receipt = \App::make('nexmoreceipt'); AND if ($receipt->exists()) { switch ($receipt->status) { case $receipt::STATUS_DELIVERED: // The message was delivered to the handset! break;

         case $receipt::STATUS_FAILED:
         case $receipt::STATUS_EXPIRED:
             // The message failed to be delivered
             break;
     }
 }

4) List purchased numbers on your account

 $account = new Artistan\Nexmo\Service\Account;
    OR
 $account = \App::make('nexmoaccount');
    AND
 $numbers = $account->numbersList();

 OR

 $numbers = NexmoAccount::numbersList();

Most Frequent Issues

Sending a message returns false.

This is usually due to your webserver unable to send a request to
Nexmo. Make sure the following are met:

1) Either CURL is enabled for your PHP installation or the PHP
   option 'allow_url_fopen' is set to 1 (default).

2) You have no firewalls blocking access to rest.nexmo.com/sms/json
   on port 443.

Your message appears to have been sent but you do not recieve it.

Run the example.php file included. This will show any errors that
are returned from Nexmo.

All versions of nexmo with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
illuminate/support Version 5.*
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 artistan/nexmo contains the following files

Loading the files please wait ....