├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── config │ └── phpsms.php └── phpsms │ ├── PhpSmsException.php │ ├── PhpSmsServiceProvider.php │ ├── Sms.php │ ├── Util.php │ ├── agents │ ├── Agent.php │ ├── AlidayuAgent.php │ ├── AliyunAgent.php │ ├── JuHeAgent.php │ ├── LogAgent.php │ ├── LuosimaoAgent.php │ ├── ParasiticAgent.php │ ├── QcloudAgent.php │ ├── SendCloudAgent.php │ ├── SmsBaoAgent.php │ ├── SubMailAgent.php │ ├── UcpaasAgent.php │ ├── YunPianAgent.php │ └── YunTongXunAgent.php │ ├── facades │ └── Sms.php │ ├── interfaces │ ├── ContentSms.php │ ├── ContentVoice.php │ ├── FileVoice.php │ ├── TemplateSms.php │ ├── TemplateVoice.php │ └── VoiceCode.php │ └── lib │ ├── CCPRestSmsSDK.php │ └── Ucpaas.php └── tests ├── AgentTest.php ├── ConfigTest.php ├── ProtectedTest.php ├── SerializeTest.php └── SmsTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | composer.lock 3 | vendor/ 4 | demo.php 5 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/config/phpsms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/config/phpsms.php -------------------------------------------------------------------------------- /src/phpsms/PhpSmsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/PhpSmsException.php -------------------------------------------------------------------------------- /src/phpsms/PhpSmsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/PhpSmsServiceProvider.php -------------------------------------------------------------------------------- /src/phpsms/Sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/Sms.php -------------------------------------------------------------------------------- /src/phpsms/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/Util.php -------------------------------------------------------------------------------- /src/phpsms/agents/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/Agent.php -------------------------------------------------------------------------------- /src/phpsms/agents/AlidayuAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/AlidayuAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/AliyunAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/AliyunAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/JuHeAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/JuHeAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/LogAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/LogAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/LuosimaoAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/LuosimaoAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/ParasiticAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/ParasiticAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/QcloudAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/QcloudAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/SendCloudAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/SendCloudAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/SmsBaoAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/SmsBaoAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/SubMailAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/SubMailAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/UcpaasAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/UcpaasAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/YunPianAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/YunPianAgent.php -------------------------------------------------------------------------------- /src/phpsms/agents/YunTongXunAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/agents/YunTongXunAgent.php -------------------------------------------------------------------------------- /src/phpsms/facades/Sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/facades/Sms.php -------------------------------------------------------------------------------- /src/phpsms/interfaces/ContentSms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/interfaces/ContentSms.php -------------------------------------------------------------------------------- /src/phpsms/interfaces/ContentVoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/interfaces/ContentVoice.php -------------------------------------------------------------------------------- /src/phpsms/interfaces/FileVoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/interfaces/FileVoice.php -------------------------------------------------------------------------------- /src/phpsms/interfaces/TemplateSms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/interfaces/TemplateSms.php -------------------------------------------------------------------------------- /src/phpsms/interfaces/TemplateVoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/interfaces/TemplateVoice.php -------------------------------------------------------------------------------- /src/phpsms/interfaces/VoiceCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/interfaces/VoiceCode.php -------------------------------------------------------------------------------- /src/phpsms/lib/CCPRestSmsSDK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/lib/CCPRestSmsSDK.php -------------------------------------------------------------------------------- /src/phpsms/lib/Ucpaas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/src/phpsms/lib/Ucpaas.php -------------------------------------------------------------------------------- /tests/AgentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/tests/AgentTest.php -------------------------------------------------------------------------------- /tests/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/tests/ConfigTest.php -------------------------------------------------------------------------------- /tests/ProtectedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/tests/ProtectedTest.php -------------------------------------------------------------------------------- /tests/SerializeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/tests/SerializeTest.php -------------------------------------------------------------------------------- /tests/SmsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toplan/phpsms/HEAD/tests/SmsTest.php --------------------------------------------------------------------------------