Filebase icon indicating copy to clipboard operation
Filebase copied to clipboard

A Simple but Powerful Flat File Database Storage.

Results 21 Filebase issues
Sort by recently updated
recently updated
newest added

Hi, I've seen that the last code push happened 2 years ago. Is it because it's still stable as it is or is the project not maintained anymore? Also, how...

Don't know if I'm just missing something here, but in the readme, you mention: ``` // my user id $userId = '92832711'; // get the user information by id $item...

question

Need the ability to auto generate an id when creating/saving documents. Must fit the `validateName()` method validation. Need: - **Config Setting** - **Auto Increment** (based on how many docs currently)...

V2 - Feature Request

Added the option to leave the id value empty when generating a new item via $db->get(). As suggested in feature request https://github.com/filebase/Filebase/issues/3 there are two config options for auto_id_mode, these...

Is it possible to retreive the created_at and updated_at timestamps with the results call? At the moment I have a relationship between 2 models and am retrieving them like so:...

It seems that composer.json needs `symfony/yaml` as dependency for users who wish to use the yaml format, not just as a dev dependency (which are not installed by default anymore).

enhancement

What do you think about adding a `NOT IN` (opposite to `IN`) comparison? Amazing repo by the way ❤

enhancement

Hey there! With cache enabled, the following query will return the right results the first time it's called, but will show duplicate results from then on. `$db->query()->orderBy('__created_at', 'DESC')->limit(6)->resultDocuments();` It appears...

When you use resultDocuments() you can get use getID() to get the ID. But when you use the lighter-weight and default results() there seems to be no way to also...

V1 - Feature Request

I was doing some tests and when I tried manipulate a document more than one time, I got an encoding error. Investigating the error, I saw that the function `Filesystem::read()`...