Libraries tagged by resource API
toneflix-code/laravel-resource-modifier
1091 Downloads
A Laravel package that intercepts and help you customize, remove or modify the meta data on your eloquent api resource response.
taylornetwork/laravel-api-resource
3 Downloads
swoolecan/hyperf-resource
35 Downloads
A api resource component for hyperf.(based https://github.com/fangx-packages/hyperf-resource)
sqits/laravel-api-skeleton
106 Downloads
Package to create a complete Laravel API resource according to stub files.
sevming/laravel-api-resource
21 Downloads
Laravel API Resource
sedp-mis/base-api
99 Downloads
Abstraction for api resources in laravel
sakshsky/laravel-api-optimizer
0 Downloads
A Laravel package to optimize API resources with sparse fieldsets, caching, and more.
rizkussef/laravel-crud-api
14 Downloads
A clean, scalable Api CRUD package for the Service-based architecture for Laravel with advanced filtering, eager-loading relationships, and automatic resource resolution
ripaclub/zf-apigility-imgman
599 Downloads
ImgMan connected resource for Apigility
rigsto/api-http-status
73 Downloads
HTTP status codes and resources for API usages
retrowaver/allegro-rest-api-v2
48 Downloads
Second version of a simple interface for Allegro REST API resources. Built on top of https://github.com/Wiatrogon/php-allegro-rest-api, which was rewritten for the most part.
pz/jsonapi-resource
158 Downloads
PHP 8.0 Library for parsing JSON:API resource in to data response.
oussema-khlifi/api-rate-limiter
0 Downloads
API RATE LIMITER is a package that provides a middelware for laravel applications to enforce rate limiting on incoming API requests using the Token Bucket Algorithm, it helps to prevent abuse of API resources and ensures fair access to the API for all users
octavianparalescu/laravel-api-controller-methods
23 Downloads
Laravel Controller methods that allow the developer to quickly build a Resource-based API
numeno/api-admin
20 Downloads
## Introduction Use the Numeno Administration API to create API Keys and set their permissions (which we call Scopes). This API is meant to be used by administrators of your organization. ## Scopes Scopes are used to let API Keys access only certain parts of the API. Scopes are expressed as a string of the form `api:resource:action`. For example, from the Numeno Article Recommender API (`art-rec`): - `art-rec:feeds:read` - can read any Feed (eg. `GET` `/feeds`, `/feeds/:id`, `/feeds/:id/streams`, etc.) - `art-rec:feeds:write` - can write (and read) any Feed - `art-rec:feeds:*` - can perform any action on Feeds - `art-rec:*:read` - can read any resource on `art-rec` - `*:*:*` - can do everything