From 50504c70c14d0267c6ceca72c9d1b97551ea3558 Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Tue, 14 Mar 2017 16:16:23 +0000 Subject: [PATCH] fixing class name --- README.md | 12 +++++++----- YiiTwilio.php | 2 +- composer.json | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 57be908..440aded 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ Twilio for Yii2 ================ This component is YII2 wrapper for Twilio PHP SDK. +forked and updated from filipajdacic + Installation ------------ @@ -10,13 +12,13 @@ The preferred way to install this extension is through [composer](http://getcomp Either run ``` -php composer.phar require --prefer-dist filipajdacic/yii2-twilio "master@dev" +php composer.phar require --prefer-dist open-ecommerce/yii2-twilio "master@dev" ``` or add ``` -"filipajdacic/yii2-twilio": "master@dev" +"open-ecommerce/yii2-twilio": "master@dev" ``` to the require section of your `composer.json` file. @@ -30,9 +32,9 @@ Once the extension is installed, simply use it in your code by putting this in y 'components' => array( ... 'Yii2Twilio' => [ - 'class' => 'filipajdacic\yiitwilio\YiiTwilio', + 'class' => 'open-ecommerce\yiitwilio\YiiTwilio', 'account_sid' => 'YOUR_TWILIO_ACCOUNT_SID_HERE', - 'auth_key' => 'YOUR_TWILIO_AUTH_KEY_HERE', + 'auth_key' => 'YOUR_TWILIO_AUTH_KEY_HERE', ], ... ); @@ -67,4 +69,4 @@ Resources [Twilio.com](http://www.twilio.com) -If you have any questions, feel free to ask. \ No newline at end of file +If you have any questions, feel free to ask. diff --git a/YiiTwilio.php b/YiiTwilio.php index 2e7755d..3a69d5a 100644 --- a/YiiTwilio.php +++ b/YiiTwilio.php @@ -1,6 +1,6 @@