Skip to content

henrotaym/laravel-temporary-files

Repository files navigation

laravel-temporary-files

Latest Version on Packagist Total Downloads

Installation

You can install the package via composer:

composer require henrotaym/laravel-temporary-files

You can install package with:

php artisan laravel-temporary-files:install

This is the contents of the published config file:

return [
];

Usage

    use Henrotaym\LaravelTemporaryFiles\Facades\LaravelTemporaryFiles;
    use Henrotaym\LaravelTemporaryFiles\Factories\Services\TemporaryFiles\TemporaryFileServiceFactory;
    use Henrotaym\LaravelTemporaryFiles\Services\TemporaryFiles\TemporaryFileService;

    // SERVICE CREATION

    // USING FACTORY
    $service = app(TemporaryFileServiceFactory::class)->create();
    // USING FACADE
    $service = LaravelTemporaryFiles::factory()->create();

    // STORE SERVICE
    $content = 'test';
    $contentPath = $service->store()->content($content, 'txt');
    $base64ContentPath = $service->store()->base64(base64_encode($content), 'txt');
    $urlContentPath = $service->store()->url('https://avatars.githubusercontent.com/u/24230736?v=4');

    // PATH SERVICE
    $filePath = $service->path()->name('test.php');
    $filePath = $service->path()->extension('php');

    // DELETE SERVICE
    $service->delete()->directory();

Testing

./cli 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.