Download the PHP package zachleigh/laravel-laundromat without Composer

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

Laravel Laundromat

Build Status SensioLabsInsight Quality Score StyleCI

Take your objects to the cleaners before sending them clientside.

This package gives you an easy way to filter your objects to remove sensitve data before sending them client-side.

Contents

Demo

Our user migration looks like this:

And our User model looks like this:

We obviously don't want to send sensitive data like social_security_number to the front end where it would be viewable by anybody. Maybe we only want to expose username from the user model and then last_name on the related family model. Also, we want to use the value returned from the readableBirthday() method on the model.

First, make a new Cleaner class. The naming convention is 'Clean' plus the name of the model:

This will give you an empty cleaner class in app/Cleaners. Simply register allowed properties in the allowed array and register any methods you wish to run in methods. Use dot syntax to indicate properties/methods on relationships.

Use the Washable trait in your User model.

Then call the clean() method on a User object to get a CleanUser instance.

Or, use the Collection macro clean():

Pass clean() (either the normal method or the collection macro) an optional cleaner name to override default behavior.

Or, add the property defaultCleaner to the model to permanently set override the conventional behavior.

Upgrade Information

From 1.1.* to 1.2.0

Version 1.2.0 adds Laravel 5.4 support. For Laravel 5.3, please use Version 1.1.0:

From 1.0.* to 1.1.0

Version 1.1.0 adds Laravel 5.3 support. For Laravel 5.2, please use Version 1.0.2:

Install

Install via composer:

Register the service provider in config/app.php:

Contributing

Contributions are more than welcome. Fork, improve, add tests, and make a pull request.


All versions of laravel-laundromat with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
laravel/browser-kit-testing 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 zachleigh/laravel-laundromat contains the following files

Loading the files please wait ....