Libraries tagged by each
badcamp/badcamp_stripe_payment
479 Downloads
Provides integration of the Stripe payment processing service by providing a charging and refund service as well as an entity that will store the payment data for each payment made.
avvertix/converter
23 Downloads
A small library to convert different bibliography formats into each other
arturmamedov/slider-module
5 Downloads
Slider module for AsgardCMS, forked from bociancz/slider-module, with Tenant id for separate sliders of each user and other little improvment, require changes Core of Asgard CMS!
arkulpa/symfonyextensions-bundle
39 Downloads
Bundle with simple Symfony Extensions for each Project ;)
api-skeletons/correct-utf8-encoding
18 Downloads
Correct badly encoded and multiple encoded UTF8 characters by examining each byte in a string.
api-clients/middleware-request-id
1027 Downloads
Middleware adding a request identifier to each request
apemsel/attributed-string
552 Downloads
A collection of fast and easy to use attributed string classes for PHP. Attributed strings can have multiple attributes for each character of the string and are for example used for word processors and natural language processing.
apachish/access-level
0 Downloads
Authentication performed by JWT Have three levels of admin, author and user access The list should only be created by the author admin Each admin has the ability to edit and delete the entire list and each author only has the ability to edit their own list Have an address to display the list to all users There is a section with the possibility of sending emails to all users.
antonienko/money-formatter
3857 Downloads
Formatter for moneyphp/money library using alcohol/iso4217 for obtaining the number of decimal digits in each currency
antoiner/laravel-repositories-command
1 Downloads
Command for Laravel to generate repositories of each model
anteris-dev/autotask-client-generator
115 Downloads
This package is the brains behind the Autotask API client. It generates each service class using the Autotask API as its guide.
amethyst/cycle
27 Downloads
Define a cycle for a subscription, a contract, an activity. Keep track of each cycle defining dates and statuses
alissonlinneker/statuspage-php-sdk
1 Downloads
# Code of Conduct Please don't abuse the API, and please report all feature requests and issues to https://support.atlassian.com/contact # Rate Limiting Each API token is limited to 1 request / second as measured on a 60 second rolling window. To get this limit increased, please contact us at https://support.atlassian.com/contact Error codes 420 or 429 indicate that you have exceeded the rate limit and the request has been rejected. # Basics ## HTTPS It's required ## URL Prefix In order to maintain version integrity into the future, the API is versioned. All calls currently begin with the following prefix: https://api.statuspage.io/v1/ ## RESTful Interface Wherever possible, the API seeks to implement repeatable patterns with logical, representative URLs and descriptive HTTP verbs. Below are some examples and conventions you will see throughout the documentation. * Collections are buckets: https://api.statuspage.io/v1/pages/asdf123/incidents.json * Elements have unique IDs: https://api.statuspage.io/v1/pages/asdf123/incidents/jklm456.json * GET will retrieve information about a collection/element * POST will create an element in a collection * PATCH will update a single element * PUT will replace a single element in a collection (rarely used) * DELETE will destroy a single element ## Sending Data Information can be sent in the body as form urlencoded or JSON, but make sure the Content-Type header matches the body structure or the server gremlins will be angry. All examples are provided in JSON format, however they can easily be converted to form encoding if required. Some examples of how to convert things are below: // JSON { "incident": { "name": "test incident", "components": ["8kbf7d35c070", "vtnh60py4yd7"] } } // Form Encoded (using curl as an example): curl -X POST https://api.statuspage.io/v1/example \ -d "incident[name]=test incident" \ -d "incident[components][]=8kbf7d35c070" \ -d "incident[components][]=vtnh60py4yd7" # Authentication
aleks-bar/vite-handlebars
4 Downloads
Vite and Handlebars assembly for build to html pages with css and js files for each
ahmetbarut/laravel-full-search
3 Downloads
Allows searching on multiple models. The advantage of this for us; a separate search field is not required for each model.