├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── src ├── Agents │ ├── ALiYunAgent.php │ ├── LuoSiMaoAgent.php │ ├── QQYunAgent.php │ ├── SubMailAgent.php │ ├── YunPianAgent.php │ └── YunTongXunAgent.php ├── Contracts │ └── Sms.php ├── Facades │ └── Sms.php ├── Factory.php ├── Manager.php ├── SmsServiceProvider.php └── config │ └── sms.php └── tests ├── PhpSmsUnitTest.php └── laravel5.5 └── PhpSmsUnitTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/composer.json -------------------------------------------------------------------------------- /src/Agents/ALiYunAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/Agents/ALiYunAgent.php -------------------------------------------------------------------------------- /src/Agents/LuoSiMaoAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/Agents/LuoSiMaoAgent.php -------------------------------------------------------------------------------- /src/Agents/QQYunAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/Agents/QQYunAgent.php -------------------------------------------------------------------------------- /src/Agents/SubMailAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/Agents/SubMailAgent.php -------------------------------------------------------------------------------- /src/Agents/YunPianAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/Agents/YunPianAgent.php -------------------------------------------------------------------------------- /src/Agents/YunTongXunAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/Agents/YunTongXunAgent.php -------------------------------------------------------------------------------- /src/Contracts/Sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/Contracts/Sms.php -------------------------------------------------------------------------------- /src/Facades/Sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/Facades/Sms.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/Manager.php -------------------------------------------------------------------------------- /src/SmsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/SmsServiceProvider.php -------------------------------------------------------------------------------- /src/config/sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/src/config/sms.php -------------------------------------------------------------------------------- /tests/PhpSmsUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/tests/PhpSmsUnitTest.php -------------------------------------------------------------------------------- /tests/laravel5.5/PhpSmsUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phper2013/laravel-sms/HEAD/tests/laravel5.5/PhpSmsUnitTest.php --------------------------------------------------------------------------------