flowan / laravel-warehouse
Simple Storage for Laravel
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 1
Forks: 1
Open Issues: 2
Type:project
Requires
- php: ^8.1
- filament/filament: ^3.2
- guzzlehttp/guzzle: ^7.2
- laravel/framework: ^10.10
- laravel/sanctum: ^3.3
- laravel/tinker: ^2.8
Requires (Dev)
- fakerphp/faker: ^1.9.1
- larastan/larastan: ^2.8
- laravel/pint: ^1.0
- laravel/sail: ^1.18
- mockery/mockery: ^1.4.4
- nunomaduro/collision: ^7.0
- phpstan/extension-installer: ^1.3
- phpstan/phpstan-deprecation-rules: ^1.1
- phpstan/phpstan-phpunit: ^1.3
- phpunit/phpunit: ^10.1
- spatie/laravel-ignition: ^2.0
README
Warehouse is a simple storage for Laravel. It allows you to store files using an HTTP API.
Installation
You can create a new project using Composer:
composer create-project flowan/laravel-warehouse
You can run the application using the following command:
sail up -d
Or using the built-in PHP server:
php artisan serve
Users
You can create a new user using the following command:
php artisan make:filament-user
You can also create a new users in the admin panel.
Buckets
In order to store files, you need to create a bucket. You can create a new bucket in the admin panel.
Buckets and files are stored in the storage/app/bucket
directory. You can change the default storage directory in your .env
file:
WAREHOUSE_STORAGE_PATH=/path/to/storage
Filesystem Adapter
Warehouse provides a filesystem adapter for Laravel that allows you to use an HTTP API as a filesystem.
Use this adapter in your Laravel project to store files in Warehouse.
License
The MIT License (MIT). Please see License File for more information.