Libraries tagged by donut
boo1ean/semaphore
7 Downloads
Don't let your app be afraid of parallel execution
boo/php-encryption
6184 Downloads
Fork of defuse/php-encryption 1.x. Don't use this unless you have a really good reason to!
bolt/weatherwidget
43 Downloads
🌤 A simple Dashboard Widget that displays the current weather. So you don't actually need to go outside or open the curtains.
bitween-software/dev-to-open-api-client
8 Downloads
Access Forem articles, users and other resources via API. For a real-world example of Forem in action, check out [DEV](https://www.dev.to). All endpoints that don't require authentication are CORS enabled. Dates and date times, unless otherwise specified, must be in the [RFC 3339](https://tools.ietf.org/html/rfc3339) format. # Authentication
beleriand/container
5 Downloads
This is a demo IoC container. Please don't use it in production.
bcariveau/vcard
14 Downloads
This VCard PHP class can generate a vCard with some data. When using an iOS device it will export as a .ics file because iOS devices don't support the default .vcf files.
athphane/sumtingwong
7 Downloads
Let users easily report things in your application that don't go according to plan
astamatech/laravel-autoseed
5 Downloads
A tool for retrieving data from a table in a database and inputting it into a seeder file in a Laravel-based application. The goal is to make it easier for developers to create seeders so they don't write manually.
asfalots/snmp
15 Downloads
Very simple wrapper to use snmp shell command if you don't have php snmp in you php installation
arvindabu/vcard
18 Downloads
This VCard PHP class can generate a vCard with some data. When using an iOS device it will export as a .ics file because iOS devices don't support the default .vcf files.
anothervision/av_lightdarklegacy
0 Downloads
CSS workaround for clients with legacy browsers that don't support light-dark() in Typo3 13 backend
andimg93/disposable-mail-detection
215 Downloads
Temporary (disposable/throwaway) email detection library - Throwaway mail addresses are a plague, but one you don't have to worry about anymore.
anakadote/vcard
44 Downloads
This VCard PHP class can generate a vCard with some data. When using an iOS device it will export as a .ics file because iOS devices don't support the default .vcf files.
alquesadilla/php-coding-standards-enforcer
10627 Downloads
Enforce coding standards on your PHP & Javascript. Now with SWagger Support. Don't let your team mess up your code base.
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