henrotaym/laravel-temporary-files
最新稳定版本:v1.0.1
Composer 安装命令:
composer require henrotaym/laravel-temporary-files
包简介
laravel-temporary-files
README 文档
README
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.
统计信息
- 总下载量: 1.6k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-05-05