Libraries tagged by mobile chat
sirmekus/ego
1215 Downloads
This package aims to simplify payment gateway processing for all mobile/web applications using a common interface. For this, contributors are highly welcomed to help create more payment gateways features that other users can use from a single library.
jeffersongoncalves/filament-pwa
865 Downloads
Filament plugin that injects the full PWA markup (favicons, Apple touch icons, manifest link, msapplication tiles, theme-color and mobile web-app metas) into your panels via laravel-pwa-favicon.
gowelle/laravel-beem-africa
181 Downloads
Laravel package for Beem API integration - SMS, Airtime, OTP, Payment Checkout, Collections, Contacts, Moja, and International SMS services
dashzeveg/flarum-ads-manager
240 Downloads
A comprehensive ad management extension for Flarum that lets you place ads in multiple locations across your forum. Supports separate desktop and mobile ad codes, randomization, and per-page visibility controls.
laravel-validation-rules/uk-mobile-phone
566 Downloads
Validate that a given UK mobile phone number is valid.
nativeblade/ui-mobile
78 Downloads
Mobile UI components for NativeBlade. Konsta-style iOS and Material 3 Blade components that auto-switch theme based on the running platform.
kitpages/mobile-app-builder-bundle
7 Downloads
This is a Symfony2 bundle that generates packages specific for terminals from a given html/js code base.
thisisbd/silverstripe-fixjpeg-orientation
3338 Downloads
SilverStripe Fix JPEG Orientation Module. Ensures that JPEG images uploaded from a mobile are rotated and saved upright according their orientation value for consistent viewing when displayed on a web page.
linlak/laravel-momo-sdk
54 Downloads
This is a simple php library that has been designed to help laravel developers to easily integrate the mtn momo api into their laravel projects with great ease.
flexyourrights/openpolice
255 Downloads
The purpose of the Open Police database is to maintain the data we collect from users and to supply information that supports the work of police oversight professionals throughout the United States.
ekolotech/mobilemoney-gateway
89 Downloads
Provides a set of classes that can be used to call APIs and web interfaces for mobile money payments in Africa
codingwithrk/double-back-to-close
95 Downloads
A NativePHP Mobile plugin that prompts users to press back twice before exiting the app.
lunoxis/instagram
116 Downloads
This library is based on the Instagram web version. We develop it because nowadays it is hard to get an approved Instagram application. The purpose is to support every feature that the web desktop and mobile version support
smslink/smsgateway
319 Downloads
SMSLink.ro is a leading SMS service provider that sends more than 175 million SMS each year. Send SMS to all mobile networks in Romania and also to more than 168 countries and more than 1000 mobile operators worldwide.
ordereazi/commerce-sdk
4 Downloads
Build a fully custom headless storefront - your own web app, mobile app, or POS - against a single OE Commerce store. Every endpoint below is namespaced under `/api/v1/store/...`. Building admin/back-office tooling instead? See [/docs/admin](/docs/admin). New here? [/guides/store](/guides/store) walks through getting a key, the anonymous cart session, and calling your first endpoints step by step - this page is the field-level reference to come back to afterward. ## Getting Started 1. Click the **Authorize** button at the top of this page. 2. Provide credentials: - **X-Commerce-Key** (always required) - your store's Store Access Key from Backoffice > Settings > Application APIs. `pk_store_...` (publishable) is safe for browser/mobile code; `sk_store_...` (secret) is server-to-server only and is rejected outright if a browser Origin header is present. - **Bearer** (only for endpoints acting on a specific customer - Account, Orders, Wishlists, etc.) - the token from **Auth > register** or **Auth > login**. Once authorized, you can explore and test all available endpoints directly from this interface. ## Anonymous Carts A guest cart is tracked by an `X-Session-Ref` header, not a cookie - the server generates one on your first request and echoes it back on every response after. Keep sending back whatever value you last received. Logging in carries that same cart forward onto the customer's account automatically, with no separate merge step. ## Errors Failures use RFC 9457 Problem Details (`application/problem+json`) with a stable `code` field for programmatic handling, e.g. `store_key_invalid`, `store_key_revoked`, `store_key_scope_denied`, `rate_limited`. A rejected *business* action (e.g. adding fewer than a product's minimum order quantity to the cart) instead comes back as HTTP 200 with `"success": false` and a human-readable `message` - always check `success` in the body, not just the HTTP status code. ## Rate Limits Requests are limited per Store Access Key (200/minute). The credential-stuffing surface (register/login/forgot-password/reset-password) is limited more tightly per caller IP (10 per 5 minutes). A 429 response includes a `Retry-After` header.