forked from twilio-samples/call-forwarding-voicemail-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 820 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 820 Bytes
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
{
"name": "settermjd/twilio-call-forwarding",
"description": "Shows how to perform call-forwarding with PHP using Twilio's Programmable Messaging API",
"version": "0.0.1",
"type": "project",
"license": "MIT",
"keywords": [
"Twilio",
"Webhooks",
"Programmable Messaging",
"Call Forwarding",
"Slim"
],
"require": {
"php": "~8.3.0",
"slim/slim": "^4.14",
"slim/psr7": "^1.7",
"twilio/sdk": "^8.2",
"monolog/monolog": "^3.7",
"php-di/slim-bridge": "^3.4",
"vlucas/phpdotenv": "^5.6"
},
"config": {
"sort-packages": true
},
"scripts": {
"serve": [
"Composer\\Config::disableProcessTimeout",
"php -S 0.0.0.0:8080 -t public/"
]
}
}