Libraries tagged by put
beyonddigitalit/envalert
5 Downloads
This package will alert the user by putting a bar on top to show which env you're in
beriyack/apiclient
3 Downloads
Une bibliothèque PHP simple et efficace pour interagir avec des API RESTful, conçue pour simplifier vos requêtes HTTP (GET, POST, PUT, DELETE).
bentools/api-platform-create-resource
23 Downloads
Allows creating resources through PUT operations.
balo85/inline_popup_field_group
4 Downloads
Adds a new field group option "Fake popup" which puts its children in a simple popup
auburnite/exceptions
7 Downloads
Generic Exception put into Auburnite namespace.
auburnite/exception-contracts
0 Downloads
Generic Exception put into Auburnite namespace.
aracoool/telegraf-logger
386 Downloads
Helps to collects a data for telegraf and put it into the log files
aposudevsky/templates
1095 Downloads
CKEditor content templates plugin put into composer package
alterbyte/offer-field
20 Downloads
Puts a field in the ReplyComposer that represents an offer and only accepts numbers as value
aljawad/telegramlogs
8 Downloads
Put log messages from your Laravel app to your Telegram bot
alissonlinneker/statuspage-php-sdk
4 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
alexbusu/php.io
854 Downloads
A tool to easily put progress bars on CLI
alex-kalanis/kw_input
1756 Downloads
Inputs put in same way - basic interfaces
akshay/laravel-url-maintenance
6 Downloads
The akshay/laravel-url-maintenance package allows you to easily put a specific URL or route of your Laravel application under maintenance or bring it back up. It provides Artisan commands to manage site maintenance on a per-route basis.
aicial/webrequest
59 Downloads
Web request library providing GET PUT POST HEAD Cookies and more for file_get_contents