├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── composer.lock ├── src ├── Client.php ├── Domain │ ├── Device.php │ ├── LogEntry.php │ ├── Message.php │ ├── MessageBuilder.php │ ├── MessageState.php │ ├── MessagesExportRequest.php │ ├── RecipientState.php │ ├── Settings.php │ ├── SettingsBuilder.php │ └── Webhook.php ├── Encryptor.php ├── Enums │ ├── ProcessState.php │ └── WebhookEvent.php ├── Exceptions │ └── HttpException.php └── Interfaces │ └── SerializableInterface.php └── tests ├── ClientTest.php ├── Domain ├── MessageBuilderTest.php ├── MessageStateTest.php ├── MessageTest.php ├── RecipientStateTest.php └── SettingsBuilderTest.php └── EncryptorTest.php /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/composer.lock -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Domain/Device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Domain/Device.php -------------------------------------------------------------------------------- /src/Domain/LogEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Domain/LogEntry.php -------------------------------------------------------------------------------- /src/Domain/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Domain/Message.php -------------------------------------------------------------------------------- /src/Domain/MessageBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Domain/MessageBuilder.php -------------------------------------------------------------------------------- /src/Domain/MessageState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Domain/MessageState.php -------------------------------------------------------------------------------- /src/Domain/MessagesExportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Domain/MessagesExportRequest.php -------------------------------------------------------------------------------- /src/Domain/RecipientState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Domain/RecipientState.php -------------------------------------------------------------------------------- /src/Domain/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Domain/Settings.php -------------------------------------------------------------------------------- /src/Domain/SettingsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Domain/SettingsBuilder.php -------------------------------------------------------------------------------- /src/Domain/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Domain/Webhook.php -------------------------------------------------------------------------------- /src/Encryptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Encryptor.php -------------------------------------------------------------------------------- /src/Enums/ProcessState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Enums/ProcessState.php -------------------------------------------------------------------------------- /src/Enums/WebhookEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Enums/WebhookEvent.php -------------------------------------------------------------------------------- /src/Exceptions/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Exceptions/HttpException.php -------------------------------------------------------------------------------- /src/Interfaces/SerializableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/src/Interfaces/SerializableInterface.php -------------------------------------------------------------------------------- /tests/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/tests/ClientTest.php -------------------------------------------------------------------------------- /tests/Domain/MessageBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/tests/Domain/MessageBuilderTest.php -------------------------------------------------------------------------------- /tests/Domain/MessageStateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/tests/Domain/MessageStateTest.php -------------------------------------------------------------------------------- /tests/Domain/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/tests/Domain/MessageTest.php -------------------------------------------------------------------------------- /tests/Domain/RecipientStateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/tests/Domain/RecipientStateTest.php -------------------------------------------------------------------------------- /tests/Domain/SettingsBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/tests/Domain/SettingsBuilderTest.php -------------------------------------------------------------------------------- /tests/EncryptorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-sms-gateway/client-php/HEAD/tests/EncryptorTest.php --------------------------------------------------------------------------------