forked from ProcessMaker/processmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtwilio.php
More file actions
executable file
·38 lines (30 loc) · 1 KB
/
twilio.php
File metadata and controls
executable file
·38 lines (30 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
return [
/*
|--------------------------------------------------------------------------
| Account SID
|--------------------------------------------------------------------------
|
| Security identifier from the Twilio account
|
*/
'sid' => env('TWILIO_ACCOUNT_SID', null),
/*
|--------------------------------------------------------------------------
| Auth Token
|--------------------------------------------------------------------------
|
| Authorization token generated to consume Twilio API
|
*/
'token' => env('TWILIO_AUTH_TOKEN', null),
/*
|--------------------------------------------------------------------------
| Active phone number
|--------------------------------------------------------------------------
|
| Registered and active phone number to use their capabilities (Voice, SMS, MMS, Fax, etc.). E.164 format.
|
*/
'active_phone_number' => env('TWILIO_ACTIVE_PHONE_NUMBER', null),
];