Libraries tagged by php to js
mohamedismail/json-response
4 Downloads
a simple class to return a properly formatted json response with http status
mjducharme/laravel-model-json-storage
176 Downloads
Storing your models in a json file rather than in database (single or few lines recording) can be a good option. This package saves you to create a table for a ridiculous amount of lines, improves the data recovery performances, and allows you to store and access to your models from a json files as you would do it in database.
bornfight/jsonapi-bundle
981 Downloads
The jsonapi-bundle is a Symfony bundle. it is the fastest way to generate API based on JsonApi.org using woohoolabs/yin
itsmind/sevdesk-php-client
211 Downloads
This package was renamed to itsmind/sevdesk-php-sdk. Please use that package instead. To migrate, you only have to replace the dependency in your composer.json, everything else remains the same.
rcs_us/php-json
64 Downloads
Wrapper for PHP's Native JSON encode/decode that provides very specific exceptions and details as to what is wrong with the JSON.
kangoo13/laravel-minecraft-jsonapi-client
17 Downloads
Client to interact directly with servers having JSONAPI Reloaded plugin installed.
jamesh/laravel-json-translation-loader
21 Downloads
A Laravel package to improve the loading of the JSON translation.
dcardenascom/lemonway-php
28 Downloads
Wrapper to play with Lemonway API (DirectKit JSON API)
codekandis/json-codec
657 Downloads
With the JSON codec you will be able to encode into and decode from JSON data in an object oriented way. It wraps PHP's functions `json_encode()` and `json_decode()`.
abc333love/php-curl-class
7 Downloads
PHP Curl Class makes it easy to send HTTP requests and integrate with web APIs.
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
torre76/php-crypto-params
8 Downloads
Utility function to encrypt - decrypt string using AES symmetric algorithm that is compatible with https://code.google.com/p/crypto-js/
jeroendn/php-js-console-logger
30 Downloads
A simple way to create javascript console logs via a php function.
webit-de/typo3-extemconf-to-composer-converter
2046 Downloads
Convert the ext_emconf.php file of a TYPO3 extension into a composer.json file
vanthink/hprose-php-fork
1859 Downloads
It is a modern, lightweight, cross-language, cross-platform, object-oriented, high performance, remote dynamic communication middleware. It is not only easy to use, but powerful. You just need a little time to learn, then you can use it to easily construct cross language cross platform distributed application system.