Download the PHP package prettus/laravel-repository without Composer

On this page you can find all versions of the php package prettus/laravel-repository. 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 laravel-repository

This package is abandoned and no longer maintained. The author suggests using the https://github.com/andersao/l5-repository package instead.

Laravel 4 - Repositories

Build Status Total Downloads Latest Stable Version Latest Unstable Version License

Laravel 4 Repositories is used to abstract the data layer, making our application more flexible to maintain.

See Laravel 5 - Repositories

Installation

Add this line "prettus/laravel-repository": "2.0.*" in your composer.json.

Issue composer update

Add to app/config/app.php service provider array:

Publish Configuration

Methods

Repository

Criteria

Usage

Create a Model

Create your model normally , but it is important to define the attributes that can be filled from the input form data.

Create a Repository

Use methods

Find all results in Repository

Find all results in Repository with pagination

Find by result by id

Create new entry in Repository

Update entry in Repository

Delete entry in Repository

Create a Criteria

Criteria is a way to change the repository of the query by applying specific conditions according to their need . You can add multiple Criteria in your repository

Using the Criteria in a Controller

Getting results from criteria

Setting Criteria default in Repository

Skip criteria defined in the repository

Use skipCriteria before any method in the repository

Using the RequestCriteria

RequestCriteria is a standard Criteria implementation. It enables filters perform in the repository from parameters sent in the request.

You can perform a dynamic search , filtering the data and customize queries

To use the Criteria in your repository , you can add a new criteria in the boot method of your repository , or directly use in your controller , in order to filter out only a few requests

Enabling in your Repository

Remember, you need to define which fields from the model can are searchable.

In your repository set $fieldSearchable with their fields searchable.

You can set the type of condition will be used to perform the query , the default condition is "="

Enabling in your Controller

Example the Crirteria

Request all data without filter by request

http://prettus.local/users

Conducting research in the repository

http://prettus.local/users?search=Anderson%20Andrade

or

http://prettus.local/users?search=Anderson&searchFields=name:like

or

http://prettus.local/[email protected]&searchFields=email:=

Filtering fields

http://prettus.local/users?filter=id;name

Sorting the results

http://prettus.local/users?filter=id;name&orderBy=id&sortedBy=desc

Overwrite params name

You can change the name of the parameters in the configuration file config/repository-criteria.php

Author

Anderson Andrade - [email protected]


All versions of laravel-repository with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
prettus/laravel-validation 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 prettus/laravel-repository contains the following files

Loading the files please wait ....