Download the PHP package orapakat/zenzivadev without Composer

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

how to use this package?

Install with composer:
composer require orapakat/zenzivadev

Update composer in laravel project:
php artisan vendor:publish

Select the provider class:
Provider: Orapakat\Zenzivadev\ZenzivaODVServiceProvider

===========================================================================
Change content in file config/orapakatdev_zenziva.php

'urlRegular' => 'https://console.zenziva.net/',
'UserkeyRegular' => '',
'ApikeyRegular' => '',
'urlCenter' => 'http://[alamatcenter].zenziva.co.id/',
'UserkeyCenter' => '',
'ApikeyCenter' => '',
'instanceID' => '',

register on the zenziva.id site to get the user and the api key.

====================================================================
Guide:

Add namespace in Controller:
use Orapakat\Zenzivadev\Sms as SMS;
use Orapakat\Zenzivadev\Wa as WA;

Sending SMS Regular: SMS::rsend($telp,$sms)
Sending SMS Masking: SMS::msend($telp,$sms)
Sending OTP Masking: SMS::otpsend($telp,$sms)
Sending SMS Center: SMS::csend($telp,$sms)
Delevery Report SMS Center: SMS::dreport($messageid)
Pulsa Check SMS Center: SMS::cpulsa()
Credit Check SMS Center: SMS::ccredit()
Reading SMS Center (Autoreply): SMS::readsms()
Add Contact SMS Center: SMS::addcontact($name,$nohp)
Get Inbox SMS Center: SMS::getinbox($startdate,$enddate)
Get Outbox SMS Center: SMS::getoutbox($startdate,$enddate)

Sending WhatsApp Regular: WA::rsend($telp,$sms)
Sending File WhatsApp Regular: WA::fsend($telp,$caption,$linkurlfile)
Sending Voice WhatsApp Regular: WA::vsend($telp,$sms)
Sending WhatsApp Center: WA::csend($telp,$sms)
Delivery Report WhatsApp Center: WA::dreport($messageid)
Credit Check WhatsApp Center: WA::creditactive()
Sending File WhatsApp Center: WA::cfsend($telp,$caption,$linkfile)
Add Contact WhatsApp Center: WA::addcontact($name,$nohp)
Get Inbox WhatsApp Center: WA::getinbox($startdate,$enddate)
Get Outbox WhatsApp Center: WA::getoutbox($startdate,$enddate)


All versions of zenzivadev with dependencies

PHP Build Version
Package Version
No informations.
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 orapakat/zenzivadev contains the following files

Loading the files please wait ....