bpez / transit
A file uploader with support for validation, image transformation and remote transportation.
Installs: 4 974
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=5.3.3
- ext-curl: *
- ext-fileinfo: *
- ext-mbstring: *
Requires (Dev)
- ext-exif: *
- aws/aws-sdk-php: ~2.7.0
- rackspace/php-opencloud: *
Suggests
- ext-exif: Extract exif data from images
- ext-gd: Enable the GD library for image transforming
- aws/aws-sdk-php: Upload files to Amazon S3 and Glacier
- rackspace/php-opencloud: Upload files to RackSpace OpenCloud
This package is not auto-updated.
Last update: 2024-11-05 16:27:29 UTC
README
A lightweight file uploader that also provides extended support for file validation, file transformation (image resizing, cropping, etc) and file transportation (moving files to Amazon S3 or another external storage system).
Requirements
- PHP 5.3.3
- Fileinfo
- Multibyte
- Curl
- Exif (optional)
- Composer
- AWS SDK
- Rackspace OpenCloud SDK
Features
- Easily upload a file into the local file system
- Basic support for file moving and renaming through
File
- Overwrite protection and file name filtering
- Import a file from a remote location, local file system path or an input stream
- Transform and alter a file by running a
Transformer
on it - Create new files based off an original file by using transformers
- Transport to or delete a file from Amazon S3 or Glacier using a
Transporter
- Validate files and images using a defined set of rules using a
Validator
- Support for extending built in transporters, transformers and validators
- Exif reading support through
File
and orientation fixing throughExifTransformer
Documentation
Thorough documentation can be found here (eventually): http://milesj.me/code/php/transit
Contributors
- Serge Rodovnichenko (SergeR) -
FitTransformer
- Ricky Dunlop (rickydunlop) -
File::supportsExif()