Libraries tagged by this7 component
edwardhendrix/livewire-alert
1 Downloads
This package provides a simple alert utilities for your livewire components.
dsoft/mvc4php
158 Downloads
This package allow users to manage most common operations with databases, based on mysqli functions. It also includes support for MVC components.
davidxu/yii2-base
53 Downloads
This is a base library with set of foundation classes and components used by all Yii2 extensions by David Xu.
davidxu/yii2-admin-config
23 Downloads
This is a common library with set of foundation classes and components used by Yii2-AIO extensions by David Xu.
creode/laravel-hubspot-forms
88 Downloads
This package allows you to embed Hubspot forms in your laravel application using a Blade Component.
artscorestudio/layout-bundle
871 Downloads
Layout Bundle is a Symfony 2/3 component providing frontend and backend layouts in your Symfony 2/3 application based on jQuery and Twitter Bootstrap. This package is a part of Artscore Studio Framework.
arielmejiadev/laravel-vue-commands
18 Downloads
This package adds artisan commands to create VueJS components and InertiaJS components.
amprest/laravel-datatables
325 Downloads
This is a package that provides a customizable datatables component for the Laravel Framework.
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
akrammi/sprint3-symfony-framework
0 Downloads
This package should not be used; it is for testing purposes only. Its a minimal framework using Symfony components source: https://symfony.com/doc/current/create_framework/index.html
saft/saft-wordpress
3 Downloads
This plugin contains the Saft library (+ vendors) and provides a Wordpress integration. The Saft library is the aim to build a collection of components which helps anyone who wants to create applications by using Semantic Web technology.
pmarien/rest-api-response
141 Downloads
This library provides a extension for the symfony/http-foundation component to build standardized json responses.
oneup/contao-sfdump
759 Downloads
This Contao Open Source CMS extension gives you the ability to use the Symfony VarDumper component in Contao with sfdump().
lacia/http-foundation
133 Downloads
This package provides a HTTP foundation base for Lacia components.
davidyell/sortable
271 Downloads
A small component to implement sortable tables with id's in a Cake view. This allows you to easily attach sorting to any table.