Download the PHP package redmarbakker/via-rest without Composer

On this page you can find all versions of the php package redmarbakker/via-rest. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package via-rest

A Laravel REST Provider. Plug-and-play module for creating REST API routes with models.

Installation

composer.json:

Setting up a Model

app/Models/Order.php:

Setting up a Controller

In this case we modify our create because we want to do something specific on a create. app/Http/Controllers/Api/OrderController.php:

Configuring your routes

A basic model example. routes/api.php::

A basic controller example. routes/api.php:

Configuring API routes with a relation

An example where there is an OneToMany relationship with orders. In this case an user can have multiple orders. Requesting this relation can be done with the following endpoint: /api/v1/users/1/orders. In this way orders can be fetched and an order can be created (GET, POST). routes/api.php:

Configuring API routes with a custom endpoint

An example where a custom endpoint is added where the frist array value is the method and the second array value is the method. routes/api.php:

app/Http/Controllers/Api/OrderController.php:

Validation your requests

Requests will be pickedup automatically. The abstract layer who will simulate the REST structure, will look for the Request with the following namespace: {ModelPackageName}\Http\Requests\Api\{ModelName}\CreateRequest, where in this case a create example were given. The following names will be used: FetchRequest, FetchAllRequest, CreateRequest, UpdateRequest & DestroyRequest.

For example we will create a Request for our Order endpoint. app/Http/Requests/Api/Orders/CreateRequest.php:

For custom routes, we can create Requests like the following code. In this example we use the previous senario where we gonna create a "UnhandledRequest". app/Http/Requests/Api/Orders/UnhandledRequest.php:

Response Examples

GET: /api/v1/users/1:

GET: /api/v1/users:

GET: /api/v1/users/1/orders:


All versions of via-rest with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1.3
dees040/laravel-api-responses Version ^0.2.3
fideloper/proxy Version ^4.0
laravel/framework Version 5.8.*
laravel/tinker Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package redmarbakker/via-rest contains the following files

Loading the files please wait ....