├── .github └── workflows │ └── build-test.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── docker-dev ├── examples ├── laml │ ├── ai.php │ ├── create-call-amd.php │ ├── create-call.php │ ├── create-fax.php │ ├── create-sms.php │ ├── generate-laml.php │ ├── rest-client.php │ └── voice-response.php └── relay │ ├── call-connect.php │ ├── create-task.php │ ├── detect-answering-machine.php │ ├── detect-digits.php │ ├── handle-calls.php │ ├── handle-messages.php │ ├── handle-tasks.php │ ├── play-audio.php │ ├── prompt-pin.php │ ├── send-digits.php │ ├── send-fax.php │ └── send-sms.php ├── phpunit.xml ├── provisioning ├── Dockerfile └── docker-compose.yml ├── src ├── Handler.php ├── LaML.php ├── LaML │ ├── FaxResponse.php │ ├── MessageResponse.php │ ├── MessagingResponse.php │ ├── Voice │ │ ├── AI.php │ │ └── Connect.php │ └── VoiceResponse.php ├── Log.php ├── Messages │ ├── BaseMessage.php │ ├── Connect.php │ ├── Execute.php │ └── Subscription.php ├── Relay │ ├── BaseRelay.php │ ├── BroadcastHandler.php │ ├── Calling │ │ ├── Actions │ │ │ ├── BaseAction.php │ │ │ ├── ConnectAction.php │ │ │ ├── DetectAction.php │ │ │ ├── FaxAction.php │ │ │ ├── PlayAction.php │ │ │ ├── PromptAction.php │ │ │ ├── RecordAction.php │ │ │ ├── SendDigitsAction.php │ │ │ └── TapAction.php │ │ ├── Blocker.php │ │ ├── Call.php │ │ ├── CallState.php │ │ ├── Calling.php │ │ ├── Components │ │ │ ├── Answer.php │ │ │ ├── Await.php │ │ │ ├── BaseComponent.php │ │ │ ├── BaseFax.php │ │ │ ├── Connect.php │ │ │ ├── Controllable.php │ │ │ ├── Detect.php │ │ │ ├── Dial.php │ │ │ ├── Disconnect.php │ │ │ ├── FaxReceive.php │ │ │ ├── FaxSend.php │ │ │ ├── Hangup.php │ │ │ ├── Play.php │ │ │ ├── Prompt.php │ │ │ ├── Record.php │ │ │ ├── SendDigits.php │ │ │ └── Tap.php │ │ ├── ConnectState.php │ │ ├── DetectState.php │ │ ├── DetectType.php │ │ ├── DisconnectReason.php │ │ ├── Event.php │ │ ├── FaxState.php │ │ ├── Method.php │ │ ├── Notification.php │ │ ├── PlayState.php │ │ ├── PlayType.php │ │ ├── PromptState.php │ │ ├── PromptType.php │ │ ├── RecordState.php │ │ ├── RecordType.php │ │ ├── Results │ │ │ ├── AnswerResult.php │ │ │ ├── BaseResult.php │ │ │ ├── ConnectResult.php │ │ │ ├── DetectResult.php │ │ │ ├── DialResult.php │ │ │ ├── DisconnectResult.php │ │ │ ├── FaxResult.php │ │ │ ├── HangupResult.php │ │ │ ├── PlayPauseResult.php │ │ │ ├── PlayResult.php │ │ │ ├── PlayResumeResult.php │ │ │ ├── PlayVolumeResult.php │ │ │ ├── PromptResult.php │ │ │ ├── PromptVolumeResult.php │ │ │ ├── RecordResult.php │ │ │ ├── SendDigitsResult.php │ │ │ ├── StopResult.php │ │ │ └── TapResult.php │ │ ├── SendDigitsState.php │ │ ├── TapState.php │ │ └── TapType.php │ ├── Client.php │ ├── Connection.php │ ├── Constants.php │ ├── Consumer.php │ ├── Messaging │ │ ├── Message.php │ │ ├── MessageState.php │ │ ├── Messaging.php │ │ ├── Notification.php │ │ └── SendResult.php │ ├── Setup.php │ ├── Task.php │ └── Tasking │ │ └── Tasking.php ├── Rest │ ├── Api.php │ ├── Api │ │ ├── V2010.php │ │ └── V2010 │ │ │ ├── Account │ │ │ ├── CallInstance.php │ │ │ └── CallList.php │ │ │ └── AccountContext.php │ └── Client.php ├── Twiml.php ├── Util │ ├── BladeMethod.php │ └── Events.php ├── Version.php └── functions.php └── tests ├── HandlerTest.php ├── MessagesTest.php ├── bootstrap.php ├── fixtures ├── get_fax └── list_faxes ├── functionsTest.php ├── laml ├── ClientTest.php ├── IntegrationTest.php ├── LaMLTest.php └── VoiceResponseTest.php └── relay ├── BaseRelayCase.php ├── Calling ├── ActionsTest.php ├── BaseActionCase.php ├── BlockerTest.php ├── CallDetectTest.php ├── CallPlayTest.php ├── CallPromptTest.php ├── CallRecordTest.php ├── CallSendDigitsTest.php ├── CallTapTest.php ├── CallTest.php └── CallingTest.php ├── Messaging └── MessagingTest.php ├── RelayClientTest.php ├── SetupTest.php └── Tasking ├── TaskTest.php └── TaskingTest.php /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/docker-dev -------------------------------------------------------------------------------- /examples/laml/ai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/laml/ai.php -------------------------------------------------------------------------------- /examples/laml/create-call-amd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/laml/create-call-amd.php -------------------------------------------------------------------------------- /examples/laml/create-call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/laml/create-call.php -------------------------------------------------------------------------------- /examples/laml/create-fax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/laml/create-fax.php -------------------------------------------------------------------------------- /examples/laml/create-sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/laml/create-sms.php -------------------------------------------------------------------------------- /examples/laml/generate-laml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/laml/generate-laml.php -------------------------------------------------------------------------------- /examples/laml/rest-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/laml/rest-client.php -------------------------------------------------------------------------------- /examples/laml/voice-response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/laml/voice-response.php -------------------------------------------------------------------------------- /examples/relay/call-connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/call-connect.php -------------------------------------------------------------------------------- /examples/relay/create-task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/create-task.php -------------------------------------------------------------------------------- /examples/relay/detect-answering-machine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/detect-answering-machine.php -------------------------------------------------------------------------------- /examples/relay/detect-digits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/detect-digits.php -------------------------------------------------------------------------------- /examples/relay/handle-calls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/handle-calls.php -------------------------------------------------------------------------------- /examples/relay/handle-messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/handle-messages.php -------------------------------------------------------------------------------- /examples/relay/handle-tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/handle-tasks.php -------------------------------------------------------------------------------- /examples/relay/play-audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/play-audio.php -------------------------------------------------------------------------------- /examples/relay/prompt-pin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/prompt-pin.php -------------------------------------------------------------------------------- /examples/relay/send-digits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/send-digits.php -------------------------------------------------------------------------------- /examples/relay/send-fax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/send-fax.php -------------------------------------------------------------------------------- /examples/relay/send-sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/examples/relay/send-sms.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /provisioning/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/provisioning/Dockerfile -------------------------------------------------------------------------------- /provisioning/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/provisioning/docker-compose.yml -------------------------------------------------------------------------------- /src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Handler.php -------------------------------------------------------------------------------- /src/LaML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/LaML.php -------------------------------------------------------------------------------- /src/LaML/FaxResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/LaML/FaxResponse.php -------------------------------------------------------------------------------- /src/LaML/MessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/LaML/MessageResponse.php -------------------------------------------------------------------------------- /src/LaML/MessagingResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/LaML/MessagingResponse.php -------------------------------------------------------------------------------- /src/LaML/Voice/AI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/LaML/Voice/AI.php -------------------------------------------------------------------------------- /src/LaML/Voice/Connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/LaML/Voice/Connect.php -------------------------------------------------------------------------------- /src/LaML/VoiceResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/LaML/VoiceResponse.php -------------------------------------------------------------------------------- /src/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Log.php -------------------------------------------------------------------------------- /src/Messages/BaseMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Messages/BaseMessage.php -------------------------------------------------------------------------------- /src/Messages/Connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Messages/Connect.php -------------------------------------------------------------------------------- /src/Messages/Execute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Messages/Execute.php -------------------------------------------------------------------------------- /src/Messages/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Messages/Subscription.php -------------------------------------------------------------------------------- /src/Relay/BaseRelay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/BaseRelay.php -------------------------------------------------------------------------------- /src/Relay/BroadcastHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/BroadcastHandler.php -------------------------------------------------------------------------------- /src/Relay/Calling/Actions/BaseAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Actions/BaseAction.php -------------------------------------------------------------------------------- /src/Relay/Calling/Actions/ConnectAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Actions/ConnectAction.php -------------------------------------------------------------------------------- /src/Relay/Calling/Actions/DetectAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Actions/DetectAction.php -------------------------------------------------------------------------------- /src/Relay/Calling/Actions/FaxAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Actions/FaxAction.php -------------------------------------------------------------------------------- /src/Relay/Calling/Actions/PlayAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Actions/PlayAction.php -------------------------------------------------------------------------------- /src/Relay/Calling/Actions/PromptAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Actions/PromptAction.php -------------------------------------------------------------------------------- /src/Relay/Calling/Actions/RecordAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Actions/RecordAction.php -------------------------------------------------------------------------------- /src/Relay/Calling/Actions/SendDigitsAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Actions/SendDigitsAction.php -------------------------------------------------------------------------------- /src/Relay/Calling/Actions/TapAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Actions/TapAction.php -------------------------------------------------------------------------------- /src/Relay/Calling/Blocker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Blocker.php -------------------------------------------------------------------------------- /src/Relay/Calling/Call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Call.php -------------------------------------------------------------------------------- /src/Relay/Calling/CallState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/CallState.php -------------------------------------------------------------------------------- /src/Relay/Calling/Calling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Calling.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Answer.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Await.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Await.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/BaseComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/BaseComponent.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/BaseFax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/BaseFax.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Connect.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Controllable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Controllable.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Detect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Detect.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Dial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Dial.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Disconnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Disconnect.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/FaxReceive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/FaxReceive.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/FaxSend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/FaxSend.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Hangup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Hangup.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Play.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Play.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Prompt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Prompt.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Record.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/SendDigits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/SendDigits.php -------------------------------------------------------------------------------- /src/Relay/Calling/Components/Tap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Components/Tap.php -------------------------------------------------------------------------------- /src/Relay/Calling/ConnectState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/ConnectState.php -------------------------------------------------------------------------------- /src/Relay/Calling/DetectState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/DetectState.php -------------------------------------------------------------------------------- /src/Relay/Calling/DetectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/DetectType.php -------------------------------------------------------------------------------- /src/Relay/Calling/DisconnectReason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/DisconnectReason.php -------------------------------------------------------------------------------- /src/Relay/Calling/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Event.php -------------------------------------------------------------------------------- /src/Relay/Calling/FaxState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/FaxState.php -------------------------------------------------------------------------------- /src/Relay/Calling/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Method.php -------------------------------------------------------------------------------- /src/Relay/Calling/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Notification.php -------------------------------------------------------------------------------- /src/Relay/Calling/PlayState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/PlayState.php -------------------------------------------------------------------------------- /src/Relay/Calling/PlayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/PlayType.php -------------------------------------------------------------------------------- /src/Relay/Calling/PromptState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/PromptState.php -------------------------------------------------------------------------------- /src/Relay/Calling/PromptType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/PromptType.php -------------------------------------------------------------------------------- /src/Relay/Calling/RecordState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/RecordState.php -------------------------------------------------------------------------------- /src/Relay/Calling/RecordType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/RecordType.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/AnswerResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/AnswerResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/BaseResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/BaseResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/ConnectResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/ConnectResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/DetectResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/DetectResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/DialResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/DialResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/DisconnectResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/DisconnectResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/FaxResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/FaxResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/HangupResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/HangupResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/PlayPauseResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/PlayPauseResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/PlayResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/PlayResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/PlayResumeResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/PlayResumeResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/PlayVolumeResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/PlayVolumeResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/PromptResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/PromptResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/PromptVolumeResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/PromptVolumeResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/RecordResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/RecordResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/SendDigitsResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/SendDigitsResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/StopResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/StopResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/Results/TapResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/Results/TapResult.php -------------------------------------------------------------------------------- /src/Relay/Calling/SendDigitsState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/SendDigitsState.php -------------------------------------------------------------------------------- /src/Relay/Calling/TapState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/TapState.php -------------------------------------------------------------------------------- /src/Relay/Calling/TapType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Calling/TapType.php -------------------------------------------------------------------------------- /src/Relay/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Client.php -------------------------------------------------------------------------------- /src/Relay/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Connection.php -------------------------------------------------------------------------------- /src/Relay/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Constants.php -------------------------------------------------------------------------------- /src/Relay/Consumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Consumer.php -------------------------------------------------------------------------------- /src/Relay/Messaging/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Messaging/Message.php -------------------------------------------------------------------------------- /src/Relay/Messaging/MessageState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Messaging/MessageState.php -------------------------------------------------------------------------------- /src/Relay/Messaging/Messaging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Messaging/Messaging.php -------------------------------------------------------------------------------- /src/Relay/Messaging/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Messaging/Notification.php -------------------------------------------------------------------------------- /src/Relay/Messaging/SendResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Messaging/SendResult.php -------------------------------------------------------------------------------- /src/Relay/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Setup.php -------------------------------------------------------------------------------- /src/Relay/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Task.php -------------------------------------------------------------------------------- /src/Relay/Tasking/Tasking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Relay/Tasking/Tasking.php -------------------------------------------------------------------------------- /src/Rest/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Rest/Api.php -------------------------------------------------------------------------------- /src/Rest/Api/V2010.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Rest/Api/V2010.php -------------------------------------------------------------------------------- /src/Rest/Api/V2010/Account/CallInstance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Rest/Api/V2010/Account/CallInstance.php -------------------------------------------------------------------------------- /src/Rest/Api/V2010/Account/CallList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Rest/Api/V2010/Account/CallList.php -------------------------------------------------------------------------------- /src/Rest/Api/V2010/AccountContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Rest/Api/V2010/AccountContext.php -------------------------------------------------------------------------------- /src/Rest/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Rest/Client.php -------------------------------------------------------------------------------- /src/Twiml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Twiml.php -------------------------------------------------------------------------------- /src/Util/BladeMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Util/BladeMethod.php -------------------------------------------------------------------------------- /src/Util/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signalwire-community/signalwire-php/HEAD/src/Util/Events.php -------------------------------------------------------------------------------- /src/Version.php: -------------------------------------------------------------------------------- 1 |