Libraries tagged by hash code
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
facile-it/doctrine-mysql-come-back
3258094 Downloads
Auto reconnect on Doctrine MySql has gone away exceptions on doctrine/dbal
deligoez/laravel-model-hashid
115037 Downloads
Generate, Save, and Route Stripe/Youtube-like Hash IDs for Laravel Eloquent Models
bvanhoekelen/terminal-style
858567 Downloads
Return your terminal message in style! Change the text style, text color and text background color form the terminal interface with ANSI color codes. The terminal style tool support Laravel and Composer.
adamhopkinson/laravel-model-hash
26004 Downloads
A trait which automatically generates a unique hash per model instance
techpivot/aws-code-deploy
132391 Downloads
AWS Code Deploy Bash Runner
seregazhuk/php-watcher
138906 Downloads
Automatically restart PHP application once the source code changes
codiad/codiad
301 Downloads
Codiad is a web-based IDE framework with a small footprint and minimal requirements. The system is still early in development, and while it has been proven extremely stable please be sure have a backup system if you use it in any production work.
geoffroy-aubry/awk-csv-parser
7570 Downloads
AWK and Bash code to easily parse CSV files, with possibly embedded commas and quotes.
pderas/shambles
38353 Downloads
A hashing library that will generate and add hashes to your laravel models.
poly-crypto/poly-crypto
8136 Downloads
High-level cryptographic functions that are interoperable between NodeJS and PHP 7.1+
gollumsf/mjml-binary
8097 Downloads
MJML compiled binary in composer for php without nodejs for MjmlBundle
derhasi/staging
11075 Downloads
A helper script to deploy the exact code state from one branch to a remote branch.
codingms/schedulermonitor
25750 Downloads
Monitors TYPO3 scheduler tasks and sends an email if a task has failed or is running too long.
internacionalweb/cognito-token-verifier
2384 Downloads
This library verifies that the signature of the JWT is valid, comes from a desired application, and that the token has not been tampered with or expired.