ellipsesynergie / laravel-helper
Requires
- php: >=5.3.0
- aws/aws-sdk-php: 2.*
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
- Ajax -> Fractal
- Javascript -> PHP-Vars-To-Js-Transformer
- AwsS3 -> Flysystem
- Assets -> Assetic
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
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