gigo6000 / clicktocall-php

Click to Call with Twilio and Vanilla PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Twilio

Click to Call PHP

We are currently in the process of updating this sample template. If you are encountering any issues with the sample, please open an issue at github.com/twilio-labs/code-exchange/issues and we'll try to help you.

About

An application example implementing Click to Call using Twilio.

Read the full tutorial here!

Implementations in other languages:

.NET Java Python Ruby Node
Done Done Done Done Done

Set up

Requirements

Twilio Account Settings

This application should give you a ready-made starting point for writing your own application. Before we begin, we need to collect all the config values we need to run the application:

Config Value Description
Account Sid Your primary Twilio account identifier - find this in the Console.
Auth Token Used to authenticate - just like the above, you'll find this here.
Phone number A Twilio phone number in E.164 format - you can get one here

Local development

After the above requirements have been met:

  1. Clone this repository and cd into it

    git clone git://github.com/TwilioDevEd/clicktocall-php.git
    cd clicktocall-php
  2. Install PHP dependencies

    make install
  3. Set your environment variables

    cp .env.example .env

    See Twilio Account Settings to locate the necessary environment variables.

  4. Run the application

    make serve
  5. Expose the application to the wider internet

  6. Check out the app at http://<sub-domain>.ngrok.io.

    That's it!

Docker

If you have Docker already installed on your machine, you can use our docker-compose.yml to setup your project.

  1. Make sure you have the project cloned.
  2. Setup the .env file as outlined in the Local Development steps.
  3. Run docker-compose up.
  4. Follow the steps in Local Development on how to expose your port to Twilio using a tool like ngrok and configure the remaining parts of your application.

Expose the Application to the Wider Internet

  1. Expose your application to the wider internet using ngrok. You can click here for more details. This step is important because the application won't work as expected if you run it through localhost.
 $ ngrok http 8000

Once ngrok is running, open up your browser and go to your ngrok URL. It will look something like this: http://<sub-domain>.ngrok.io

Unit and Integration Tests

You can run the Unit and Feature tests locally by typing:

./vendor/bin/phpunit

Cloud deployment

Additionally to trying out this application locally, you can deploy it to a variety of host services. Here is a small selection of them.

Please be aware that some of these might charge you for the usage or might make the source code for this application visible to the public. When in doubt research the respective hosting service first.

Service
Heroku Deploy

Resources

  • The CodeExchange repository can be found here.

Contributing

This template is open source and welcomes contributions. All contributions are subject to our Code of Conduct.

Visit the project on GitHub

License

MIT

Disclaimer

No warranty expressed or implied. Software is as is.

About

Click to Call with Twilio and Vanilla PHP

License:MIT License


Languages

Language:PHP 47.9%Language:Hack 28.8%Language:JavaScript 14.7%Language:Dockerfile 5.1%Language:Shell 2.3%Language:Makefile 1.2%