Download the PHP package matt-daneshvar/rest without Composer

On this page you can find all versions of the php package matt-daneshvar/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 rest

Resource Controller for Laravel

Packagist Version Build Status GitHub

General implementation for Laravel resource controllers.

By assuming a few conventions this package takes care of the repetitive implementation of the CRUD (create, read, update, and delete) operations on a base controller which you can fully customize and extend to your liking.

Installation

Require the package using composer:

Usage

Extend the ResourceController and specify a $resource. Optionally define a $rules property to enforce validation before store and update operations.

The TasksController in the example above will now have general implementation for all CRUD actions. That includes:

*should the validation fail, user is redirected back() with all inputs and errors flashed to the session.

Routing

This package is designed to match Laravel's resource controllers. Creating a route rule for this controller is simple:

Limiting the exposed CRUD operations

While extending ResourceController automatically includes all CRUD operations in your controller, you may wish to limit the available operations available for your specific resource. You could achieve that by limiting the routes you expose in your application:

Validation

Most real-world applications would validate store and update requests before persisting anything to the database.

Specifying a $rules property on your controller, informs the ResourceController to validate user's request against those rules in both store and update operations.

If you wish to use different rules for store and update operations, you may specify them separately:

Pagination

In most situations, your application's index would use pagination instead of dumping your models into the view all at once. The ResourceController assumes 20 items per page. To change this number define the $perPage attribute, or set it to null to disable pagination altogether.

Other configurations

While assuming a set of default conventions with sensible defaults to minimize code repetition in most cases, this package is also packed with a bunch of configuration options to allow you override the default behaviour when needed.

License

The MIT License (MIT). Please see License File for more information.


All versions of rest with dependencies

PHP Build Version
Package Version
No informations.
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 matt-daneshvar/rest contains the following files

Loading the files please wait ....