Download the PHP package nadar/yii-rest-client without Composer
On this page you can find all versions of the php package nadar/yii-rest-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download nadar/yii-rest-client
More information about nadar/yii-rest-client
Files in nadar/yii-rest-client
Package yii-rest-client
Short Description A Yii Framework Component in order to work with the LUYA headless REST Client. The LUYA REST Client is an Active Record similar solution for REST Clients.
License MIT
Informations about the package yii-rest-client
Yii Framework REST Client
A Yii Framework Component in order to work with the LUYA headless REST Client. The LUYA REST Client is an Active Record similar solution for APIs.
It works with Yii Framework out of the box, therefore those things are included:
- Use
fields
in your requests - Use
sort
in your requests - Working with
expand
- Caching
- CRUD (Create new records, Read records, Update records, Delete records) API operations
- Similar to Yii Framework Active Query and Active Record
Installation
Installation via composer
Usage & Dokumentation
Configure your API Client:
To see all LUYA Headless functions see the LUYA Headless Documentation
Now add your Rest Model (Active Endpoint), this represents the Model on the client side. It provides basic getter and setter methods same as Yii Framework.
The above example assumes the full endpoint is https://myapi.com/cars
.
Working with the Model to make CRUD operations like list, edit, save.
Foreach Data (Will make a GET request):
View One and Update the record (Will make a PUT request):
Add new entry (will make a POST request):
To see all LUYA Headless functions see the LUYA Headless Documentation