Libraries tagged by this7 component
limefamily/yii2-limetheme
75 Downloads
This is a partial the theme files and some functional components of quietly elegant, if you want to modify, please modify the source code provided in the package to the editor
jlaso/php-tools
15 Downloads
This project holds a collection of useful PHP classes grouped in components to be used in any PHP5.2 project.
jezuu/notifications
26 Downloads
Notifications is a Laravel package that offers a comprehensive solution for displaying notifications in your application. It provides predefined components and styles for showcasing success messages, errors, warnings, and informative messages in an appealing manner. With this package, you can easily customize the notification type, the accompanying icon, and the displayed message. It seamlessly integrates with popular libraries like Font Awesome and Bootstrap Notify to deliver a sleek and user-friendly notification experience. Save time and enhance the presentation of your notification messages with Notifications package for Laravel.
iom/rafitra
52 Downloads
this is a package laravel to use for components structures projects
fohn-group/fohn-ui
43 Downloads
Web Component Framework written in PHP using Tailwind CSS. This project is an evolution of the original Agile Toolkit Ui project. (atk4-ui: https://github.com/atk4/ui)
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.
debuss-a/finder
23 Downloads
This Finder class finds files and directories via a set of rules, the same way as the Finder Component from Symfony but in a much simpler implementation.
davidxu/yii2-base
47 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
22 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
67 Downloads
This package allows you to embed Hubspot forms in your laravel application using a Blade Component.
artscorestudio/layout-bundle
847 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
14 Downloads
This package adds artisan commands to create VueJS components and InertiaJS components.
amprest/laravel-datatables
317 Downloads
This is a package that provides a customizable datatables component for the Laravel Framework.
alissonlinneker/statuspage-php-sdk
0 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