ellipsesynergie/laravel-helper

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (0.2.0) of this package.

0.2.0 2014-01-29 18:09 UTC

This package is auto-updated.

Last update: 2019-07-25 19:34:22 UTC


README

!!! DEPRECATED !!!

This package is no longer actively maintained.

##Package alternative

This package contain some helper for assets, standardize ajax request, AwsS3 utilities and more. All helpers are framework agnostic, but we provide service provider and base resource files for Laravel.

Status

Build Status Total Downloads Latest Stable Version

Documentation

##Installation

Begin by installing this package through Composer. Edit your project's composer.json file to require ellipsesynergie/laravel-helper.

{
    "require": {
        "ellipsesynergie/laravel-helper": "dev-master"
    }
}

Update your packages with composer update or install with composer install.

Once this operation completes, you need to add the service provider. Open app/config/app.php, and add a new item to the providers array.

EllipseSynergie\LaravelHelper\LaravelHelperServiceProvider

Note : You can add class aliases in app/config/app.php if you want to use helpers facades.

'Ajax'    	  => 'EllipseSynergie\LaravelHelper\Facades\Ajax',
'Assets'      => 'EllipseSynergie\LaravelHelper\Facades\Assets',
'AwsS3'       => 'EllipseSynergie\LaravelHelper\Facades\AwsS3',
'Javascript'  => 'EllipseSynergie\LaravelHelper\Facades\Javascript',

##Configurations

To configure the package to meet your needs, you must publish the configuration in your application before you can modify them. Run this artisan command.

php artisan config:publish ellipsesynergie/laravel-helper