Libraries tagged by receiver
paulbunyannet/receive-mail
484 Downloads
Receiving mail with attachments
s3bul/php-imap
5405 Downloads
Manage mailboxes, filter/get/delete emails in PHP (supports IMAP/POP3/NNTP)
ziiven/flarum-daily-check-in
7635 Downloads
A Flarum extension. Add a button in the index page that allow user to daily check in the forum and receive reward.
wezlo/filament-record-watcher
262 Downloads
Subscribe to Eloquent records and receive in-panel Filament notifications when they change, with per-watch condition rules and field diffs.
vlsv/telegram-data-validator
3946 Downloads
The Telegram Data Validator is a PHP library for validating the integrity of initData received from a Telegram mini-application. It uses HMAC-SHA-256 for data integrity checks.
valantic-spryker/config
15857 Downloads
Add functionality to receive store specific configurations
valantic-spryker/cache-manager
14636 Downloads
Add functionality to receive store specific configurations
scai/php-webrcon
4524 Downloads
PHP library to send & receive commands from rust server based on websocket client.
pushinbr/pam-native-share-extension
195 Downloads
Receive text, URLs and files through native Android shares and an iOS Share Extension.
nitsan/ns-comments
2124 Downloads
TYPO3 Page Comments - The TYPO3 Comment Extension simplifies the process for visitors to leave comments on your website's published pages. It utilizes nested comments to create a user-friendly experience. Admins receive email notifications, allowing them to easily manage comments either through email or the backend.
moln/php-mysql-replication
29467 Downloads
Pure PHP Implementation of MySQL replication protocol. This allow you to receive event like insert, update, delete with their data and raw SQL queries.
mediabeastnz/craft-commerce-back-in-stock
14001 Downloads
Subscribe to out of stock products to receive an email when back in stock.
matthv/laravel-dingo-transform
13592 Downloads
This repository lets your API users pass in and receive camelCased or snake_cased keys while your app receives and produces snake_cased ones.
laravarc/eventer
248 Downloads
Transport-agnostic domain event dispatch and consumption for Laravel — broker-agnostic SEND/RECEIVE with EventContract wire envelopes.
konfig/snaptrade-php-7-sdk
644 Downloads
Connect brokerage accounts to your app for live positions and trading. ## Rate limiting Two limits apply to requests signed with your `clientId`. The stricter one wins, and exceeding either returns `429 Too Many Requests`. - **Customer-level** — 250 requests/minute by default, scoped to your `clientId` and applied across all endpoints. Reported in `X-RateLimit-Limit`, `X-RateLimit-Remaining` and `X-RateLimit-Reset`. - **Account-level** — 10 requests/minute per account, scoped to (`clientId`, `accountId`). All covered operations for one account draw on the same bucket — reading balances and reading positions share it — and enforcement does not depend on the HTTP method, so updating an account consumes the same bucket as reading it. Only enforced for Personal users, and only for integrations it has been rolled out to — it is not yet in force for every Personal integration. It also does not apply on every operation that documents a 429 below. Where it applies it is reported in `X-RateLimit-Account-Limit`, `X-RateLimit-Account-Remaining` and `X-RateLimit-Account-Reset`. Do not read the absence of those headers as proof the limit is off — some configurations omit the rate limit headers while still enforcing the limit, so header absence tells you nothing about your allowance. On a 429, `X-RateLimit-Remaining: 0` means you hit the customer-level limit and `X-RateLimit-Account-Remaining: 0` means the account-level one. Wait for the corresponding `*-Reset` value (seconds) before retrying, or fall back to exponential backoff with jitter. Not every 429 is explained by those headers. A separate per-authenticated-user limit, reported in no `X-RateLimit-*` header, covers OAuth-authenticated requests and signed requests in configurations where the customer-level limit is not in effect — on the operations that use the default throttles. A few operations override those and are governed by the customer-level limit alone. The two do not stack: a signed request governed by the customer-level limit above is not additionally subject to the per-user one. If a 429 arrives with no header at zero — or with no `X-RateLimit-*` headers at all — honour `Retry-After` and back off. Treat the remaining counts as a hint, not a guarantee that the next request will succeed. Because the customer-level limit applies everywhere, any signed request can return 429. **OAuth-authenticated requests are an exception.** They are not subject to the customer-level limit and do not receive `X-RateLimit-Limit`, `X-RateLimit-Remaining` or `X-RateLimit-Reset` — do not wait on those headers or design around a customer-level allowance on this path. The account-level limit still applies to them on the account-data endpoints above, reported in the `X-RateLimit-Account-*` headers. On operations using the default throttles the per-user limit above applies to them as well, so an OAuth request can be rejected while the account headers still show capacity; on the few operations that override those throttles, OAuth callers have no per-user ceiling at all. Drive retries from `Retry-After` and exponential backoff with jitter rather than from the headers. See https://docs.snaptrade.com/docs/ratelimiting.