henrotaym/laravel-temporary-files

laravel-temporary-files

Maintainers

Package info

github.com/henrotaymcorp/laravel-temporary-files

Homepage

pkg:composer/henrotaym/laravel-temporary-files

Statistics

Installs: 1 433

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 1

v1.0.1 2026-02-24 01:04 UTC

This package is auto-updated.

Last update: 2026-02-24 01:34:11 UTC


README

Latest Version on Packagist Total Downloads

Compatibility

Laravel Package
9.x / 10.x / 11.x 0.x
12.x 1.x

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.