Chimit
Chimit
- BotMan Version: 2.6.1 - PHP Version: 7.4 - Messaging Service(s): Telegram - Cache Driver: file ### Description: I need to skip Botman middleware in tests. The default Laravel `Illuminate\Foundation\Testing\WithoutMiddleware`...
- BotMan Version: 2.6.1 - PHP Version: 7.4 - Messaging Service(s): Telegram - Cache Driver: file ### Description: There is a test helper `setUser()`, but there is no analog for...
According to the [APNS documentation](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/sending_notification_requests_to_apns) `apns-expiration` header may be a Unix timestamp down to 0. But the `setExpirationAt()` method [requires a DateTime](https://github.com/edamov/pushok/blob/master/src/Notification.php#L138) value only and converts it to the Unix...
It would be very useful to validate comma separated values like arrays: ```php $this->validate($request, [ 'book_ids' => 'csv', 'book_ids.*' => 'integer', ]); ```
`QUEUE_DRIVER` was renamed to `QUEUE_CONNECTION` in Laravel 5.7.
At the end of the installation process, I get this: ``` Generating optimized autoload files Deprecation Notice: Class Egulias\EmailValidator\Exception\ExpectedQPair located in ./vendor/egulias/email-validator/EmailValidator/Exception/ExpectingQPair.php does not comply with psr-4 autoloading standard. It...
Hi! I'm just curious. Your low-level repository class depends on a high-level Article model. Isn't it a violation of the Dependency Inversion principle and we should define an Article interface?
I need to specify an `apns-push-type` parameter for [VoIP push](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/sending_notification_requests_to_apns), but this package apparently doesn't support platform specific fields. Are there any other ways to do it? Any plans to...
Any thoughts how to solve this problem?