Download the PHP package sands/uploadable without Composer

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

Uploader Trait for Laravel Models

This package is to simplify upload handling in a Laravel application. Should work for both Laravel 5 and Lumen.

Key features:

  1. Simple to use
  2. Extendable
  3. Handles both single and multiple uploads

Core Concepts

  1. All uploads belongs to a record in the database
  2. File upload handling, manipulation and saving are done by passing it through a set of filters in series (à la gulp).
  3. You can create your own filters.

Installation

  1. Install it in your application: composer require sands/uploadable
  2. Add Sands\Uploadable\UploadableServiceProvider::class into your app/config/app.php file, inside the providers array.
  3. Publish the package's migration: php artisan vendor:publish.
  4. Run php artisan migrate to create the uploads table.

Usage

Use the UploadableTrait trait inside your model

Add a $uploadableConfig array property inside your model file:

In the model's boot method, listen for saved and deleted events to attach and detach files to the model:

Whenever the model is saved, this package will look for any matching uploadableConfig with the request. If there are any, the uploaded file will be passed through the configured filter. Each t

Built-in Filters

Fix Image Orientation Filter

Fixes the image orientation.

Filter name: fix-image-orientation

Resize Image Filter

Manipulates the image size.

Filter name: resize-image

Filter arguments:

  1. number default: 800 Target width in pixels
  2. number default: 800 Target height in pixels
  3. boolean default: true Constrain the aspect ratio while resizing
  4. boolean default: false Constrain upsize. Do not upsize the image while resizing

Thumbnail Image Filter

Manipulates the image to be resized and center cropped.

Filter name: thumbnail-image

Filter arguments:

  1. number default: 140 Target width and height in pixels
  2. string default: #000000 Fill with this color if there is empty area after cropping

Save Filter

Saves the modified image into an obfuscated directory inside the public/uploads directory. Each time the save filter is triggered, a new entry will be inserted into the uploads table.

Filter name: save

Filter arguments:

  1. string default: original- Prefixes the file name with this string.

Getting Uploads Related to a Model

Relationship between a model and uploads are implemented with the simple Laravel's morphMany method. You can access the files simply by $task->uploads. This will return all files and their mutations related to a model.

To filter through the files related to a model you can simply do $task->uploads()->where() ....

There is also a shorthand files($type = null, $prefix = null) method that takes $type argument where it filters the type of file uploaded (images in the above example) and $prefix argument where it will search for uploads with the prefix. This method will return an Eloquent query so you can further refine the search.

The upload object properties are as per below:

Example for getting an uploaded image's URL:

Creating Your Own Filter

It is very easy to create your own filter:

  1. Create a class that implements Sands\Uploadable\FilterInterface.
  2. Register the filter: app('uploadable')->registerFilter('filterName', 'filterClass').
  3. There is no step 3.

For example, lets say that we want to rotate all uploaded images by a certain configurable degrees:

Create a RotateImage class:

Register the filter:

Use it in your model:

Thats it!

Contributing

You are more than welcome to submit issues on bugs, feature requests or questions related to this project. Fork and send a pull request if you would want to contribute code. This project follows PSR-2 coding style.

License

The MIT License (MIT) Copyright (c) 2016 Sands Consulting Sdn. Bhd.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


All versions of uploadable with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
illuminate/support Version ~5.0
intervention/image Version ^2.3
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 sands/uploadable contains the following files

Loading the files please wait ....