LaravelPackages.net
Acme Inc.
Toggle sidebar
alisaleem/evaporator

Uploads assets to cloud storage

5
0
v1.0.0
About alisaleem/evaporator

alisaleem/evaporator is a Laravel package for uploads assets to cloud storage. It currently has 0 GitHub stars and 5 downloads on Packagist (latest version v1.0.0). Install it with composer require alisaleem/evaporator. Discover more Laravel packages by alisaleem or browse all Laravel packages to compare alternatives.

Last updated

Uploads assets to cloud storage

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

Installation

You can install the package via composer:

composer require alisaleem/evaporator

You can publish the config file with:

php artisan vendor:publish --tag="evaporator-config"

This is the contents of the published config file:

return [
    'include' => [
        public_path('js'),
        public_path('css'),
    ],

    'exclude' => [
        '*.php',
    ],

    'strip_path' => public_path(),

    'prefix_path' => '',

    'disk' => 's3',
];

Usage

php artisan evaporator:upload

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

Comments