scrawler / storage
storage system for scrawler framework
v2.1.0
2024-10-17 18:13 UTC
Requires
- league/flysystem: ^3.0
- symfony/mime: ^7.1
- thecodingmachine/safe: ^2.5
Requires (Dev)
- pestphp/pest: ^3.4
- phpstan/phpstan: ^1.12
- rector/rector: ^1.2
- scrawler/http: ^2.0
- thecodingmachine/phpstan-safe-rule: ^1.2
This package is auto-updated.
Last update: 2025-03-31 13:11:42 UTC
README

Scrawler Storage
🔥A Flysystem wrapper with added file validation and security for efficient, safe file management. 🔥
🇮🇳 Made in India 🇮🇳
💻 Installation
You can install Scrawler App via Composer. If you don't have composer installed , you can download composer from here
composer require scrawler/storage
✨ Basic usage
<?php require __DIR__ . '/vendor/autoload.php'; storage()->setAdapter(new \Scrawler\Adapters\Storage\LocalAdapter(__DIR__ . '/../storage/app')); storage()->write('hello.txt','hello world');