├── .gitignore ├── .php_cs ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── lib ├── AliyunMNS │ ├── AsyncCallback.php │ ├── Client.php │ ├── Common │ │ └── XMLParser.php │ ├── Config.php │ ├── Constants.php │ ├── Exception │ │ ├── BatchDeleteFailException.php │ │ ├── BatchSendFailException.php │ │ ├── InvalidArgumentException.php │ │ ├── MalformedXMLException.php │ │ ├── MessageNotExistException.php │ │ ├── MnsException.php │ │ ├── QueueAlreadyExistException.php │ │ ├── QueueNotExistException.php │ │ ├── ReceiptHandleErrorException.php │ │ ├── SubscriptionAlreadyExistException.php │ │ ├── SubscriptionNotExistException.php │ │ ├── TopicAlreadyExistException.php │ │ └── TopicNotExistException.php │ ├── Http │ │ └── HttpClient.php │ ├── Model │ │ ├── DeleteMessageErrorItem.php │ │ ├── Message.php │ │ ├── QueueAttributes.php │ │ ├── SendMessageRequestItem.php │ │ ├── SendMessageResponseItem.php │ │ ├── SubscriptionAttributes.php │ │ ├── TopicAttributes.php │ │ └── UpdateSubscriptionAttributes.php │ ├── Queue.php │ ├── Requests │ │ ├── BaseRequest.php │ │ ├── BatchDeleteMessageRequest.php │ │ ├── BatchPeekMessageRequest.php │ │ ├── BatchReceiveMessageRequest.php │ │ ├── BatchSendMessageRequest.php │ │ ├── ChangeMessageVisibilityRequest.php │ │ ├── CreateQueueRequest.php │ │ ├── CreateTopicRequest.php │ │ ├── DeleteMessageRequest.php │ │ ├── DeleteQueueRequest.php │ │ ├── DeleteTopicRequest.php │ │ ├── GetQueueAttributeRequest.php │ │ ├── GetSubscriptionAttributeRequest.php │ │ ├── GetTopicAttributeRequest.php │ │ ├── ListQueueRequest.php │ │ ├── ListSubscriptionRequest.php │ │ ├── ListTopicRequest.php │ │ ├── PeekMessageRequest.php │ │ ├── PublishMessageRequest.php │ │ ├── ReceiveMessageRequest.php │ │ ├── SendMessageRequest.php │ │ ├── SetQueueAttributeRequest.php │ │ ├── SetSubscriptionAttributeRequest.php │ │ ├── SetTopicAttributeRequest.php │ │ ├── SubscribeRequest.php │ │ └── UnsubscribeRequest.php │ ├── Responses │ │ ├── BaseResponse.php │ │ ├── BatchDeleteMessageResponse.php │ │ ├── BatchPeekMessageResponse.php │ │ ├── BatchReceiveMessageResponse.php │ │ ├── BatchSendMessageResponse.php │ │ ├── ChangeMessageVisibilityResponse.php │ │ ├── CreateQueueResponse.php │ │ ├── CreateTopicResponse.php │ │ ├── DeleteMessageResponse.php │ │ ├── DeleteQueueResponse.php │ │ ├── DeleteTopicResponse.php │ │ ├── GetQueueAttributeResponse.php │ │ ├── GetSubscriptionAttributeResponse.php │ │ ├── GetTopicAttributeResponse.php │ │ ├── ListQueueResponse.php │ │ ├── ListSubscriptionResponse.php │ │ ├── ListTopicResponse.php │ │ ├── MnsPromise.php │ │ ├── PeekMessageResponse.php │ │ ├── PublishMessageResponse.php │ │ ├── ReceiveMessageResponse.php │ │ ├── SendMessageResponse.php │ │ ├── SetQueueAttributeResponse.php │ │ ├── SetSubscriptionAttributeResponse.php │ │ ├── SetTopicAttributeResponse.php │ │ ├── SubscribeResponse.php │ │ └── UnsubscribeResponse.php │ ├── Signature │ │ └── Signature.php │ ├── Topic.php │ └── Traits │ │ ├── MessageIdAndMD5.php │ │ ├── MessagePropertiesForPeek.php │ │ ├── MessagePropertiesForPublish.php │ │ ├── MessagePropertiesForReceive.php │ │ └── MessagePropertiesForSend.php └── README.md ├── phpunit.xml ├── src ├── Connectors │ └── MnsConnector.php ├── Jobs │ └── MnsJob.php ├── MnsAdapter.php ├── MnsQueue.php └── NotImplementedException.php └── tests ├── AbstractTestCase.php ├── Jobs └── MnsJobTest.php ├── MnsAdapterTest.php ├── MnsQueueTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/.php_cs -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/composer.json -------------------------------------------------------------------------------- /lib/AliyunMNS/AsyncCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/AsyncCallback.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Client.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Common/XMLParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Common/XMLParser.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Config.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Constants.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/BatchDeleteFailException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/BatchDeleteFailException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/BatchSendFailException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/BatchSendFailException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/MalformedXMLException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/MalformedXMLException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/MessageNotExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/MessageNotExistException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/MnsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/MnsException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/QueueAlreadyExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/QueueAlreadyExistException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/QueueNotExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/QueueNotExistException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/ReceiptHandleErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/ReceiptHandleErrorException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/SubscriptionAlreadyExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/SubscriptionAlreadyExistException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/SubscriptionNotExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/SubscriptionNotExistException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/TopicAlreadyExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/TopicAlreadyExistException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Exception/TopicNotExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Exception/TopicNotExistException.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Http/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Http/HttpClient.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Model/DeleteMessageErrorItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Model/DeleteMessageErrorItem.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Model/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Model/Message.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Model/QueueAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Model/QueueAttributes.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Model/SendMessageRequestItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Model/SendMessageRequestItem.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Model/SendMessageResponseItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Model/SendMessageResponseItem.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Model/SubscriptionAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Model/SubscriptionAttributes.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Model/TopicAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Model/TopicAttributes.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Model/UpdateSubscriptionAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Model/UpdateSubscriptionAttributes.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Queue.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/BaseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/BaseRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/BatchDeleteMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/BatchDeleteMessageRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/BatchPeekMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/BatchPeekMessageRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/BatchReceiveMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/BatchReceiveMessageRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/BatchSendMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/BatchSendMessageRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/ChangeMessageVisibilityRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/ChangeMessageVisibilityRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/CreateQueueRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/CreateQueueRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/CreateTopicRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/CreateTopicRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/DeleteMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/DeleteMessageRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/DeleteQueueRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/DeleteQueueRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/DeleteTopicRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/DeleteTopicRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/GetQueueAttributeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/GetQueueAttributeRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/GetSubscriptionAttributeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/GetSubscriptionAttributeRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/GetTopicAttributeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/GetTopicAttributeRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/ListQueueRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/ListQueueRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/ListSubscriptionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/ListSubscriptionRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/ListTopicRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/ListTopicRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/PeekMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/PeekMessageRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/PublishMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/PublishMessageRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/ReceiveMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/ReceiveMessageRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/SendMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/SendMessageRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/SetQueueAttributeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/SetQueueAttributeRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/SetSubscriptionAttributeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/SetSubscriptionAttributeRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/SetTopicAttributeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/SetTopicAttributeRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/SubscribeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/SubscribeRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Requests/UnsubscribeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Requests/UnsubscribeRequest.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/BaseResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/BaseResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/BatchDeleteMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/BatchDeleteMessageResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/BatchPeekMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/BatchPeekMessageResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/BatchReceiveMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/BatchReceiveMessageResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/BatchSendMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/BatchSendMessageResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/ChangeMessageVisibilityResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/ChangeMessageVisibilityResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/CreateQueueResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/CreateQueueResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/CreateTopicResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/CreateTopicResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/DeleteMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/DeleteMessageResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/DeleteQueueResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/DeleteQueueResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/DeleteTopicResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/DeleteTopicResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/GetQueueAttributeResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/GetQueueAttributeResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/GetSubscriptionAttributeResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/GetSubscriptionAttributeResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/GetTopicAttributeResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/GetTopicAttributeResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/ListQueueResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/ListQueueResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/ListSubscriptionResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/ListSubscriptionResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/ListTopicResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/ListTopicResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/MnsPromise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/MnsPromise.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/PeekMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/PeekMessageResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/PublishMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/PublishMessageResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/ReceiveMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/ReceiveMessageResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/SendMessageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/SendMessageResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/SetQueueAttributeResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/SetQueueAttributeResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/SetSubscriptionAttributeResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/SetSubscriptionAttributeResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/SetTopicAttributeResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/SetTopicAttributeResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/SubscribeResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/SubscribeResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Responses/UnsubscribeResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Responses/UnsubscribeResponse.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Signature/Signature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Signature/Signature.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Topic.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Traits/MessageIdAndMD5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Traits/MessageIdAndMD5.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Traits/MessagePropertiesForPeek.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Traits/MessagePropertiesForPeek.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Traits/MessagePropertiesForPublish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Traits/MessagePropertiesForPublish.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Traits/MessagePropertiesForReceive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Traits/MessagePropertiesForReceive.php -------------------------------------------------------------------------------- /lib/AliyunMNS/Traits/MessagePropertiesForSend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/AliyunMNS/Traits/MessagePropertiesForSend.php -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/lib/README.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Connectors/MnsConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/src/Connectors/MnsConnector.php -------------------------------------------------------------------------------- /src/Jobs/MnsJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/src/Jobs/MnsJob.php -------------------------------------------------------------------------------- /src/MnsAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/src/MnsAdapter.php -------------------------------------------------------------------------------- /src/MnsQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/src/MnsQueue.php -------------------------------------------------------------------------------- /src/NotImplementedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/src/NotImplementedException.php -------------------------------------------------------------------------------- /tests/AbstractTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/tests/AbstractTestCase.php -------------------------------------------------------------------------------- /tests/Jobs/MnsJobTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/tests/Jobs/MnsJobTest.php -------------------------------------------------------------------------------- /tests/MnsAdapterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/tests/MnsAdapterTest.php -------------------------------------------------------------------------------- /tests/MnsQueueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/tests/MnsQueueTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrahamgreyson/laravel-mns/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------