Download the PHP package authanram/laravel-flatfile without Composer
On this page you can find all versions of the php package authanram/laravel-flatfile. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download authanram/laravel-flatfile
More information about authanram/laravel-flatfile
Files in authanram/laravel-flatfile
Package laravel-flatfile
Short Description ...
License MIT
Homepage https://authanram.com
Informations about the package laravel-flatfile
authanram/laravel-flatfile
Eloquent flat file driver, on top of Sushi 🍣.
Requirements
PHP 8.1.4 or higher, Laravel 9+
Downward compatibility is already at the doorstep.
Installation
You can install the package via composer.
By default all files written by this package will be located at storage_path('app/flatfile')
.
Publish the package configuration:
Quickly examining the configuration file config/flatfile.php
would be a good idea.
Usage Example
Here's an example of how it can be used in a very basic way:
Somewhere else in your code:
This will store the following contents to storage_path('app/flatfile/post/1.json')
:
The package ships a second serializer, supporting yaml, that would lead to the following file
contents stored at storage_path('app/flatfile/post/1.yaml')
:
Caveats
-
many-to-many
relationships are currently not supportedIn order to facilitate a
many-to-many
relationship, please fall back to a regular DBMS supported by Eloquent or feel free to create pull request.
Contributing
Please see the contribution guide for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
Special thanks to Caleb Porzio, the author of the underlying package Sushi 🍣.
License
The MIT License (MIT). Please see License File for more information.