gitextract_oxuvf7rx/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .styleci.yml ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml ├── src/ │ ├── Config/ │ │ └── setting.php │ ├── Contracts/ │ │ └── Driver.php │ ├── Drivers/ │ │ ├── Database.php │ │ ├── Json.php │ │ └── Memory.php │ ├── Facade.php │ ├── Manager.php │ ├── Middleware/ │ │ └── AutoSaveSetting.php │ ├── Migrations/ │ │ └── 2017_08_24_000000_create_settings_table.php │ ├── Provider.php │ ├── Support/ │ │ └── Arr.php │ └── helpers.php └── tests/ ├── functional/ │ ├── AbstractFunctionalTest.php │ ├── DatabaseTest.php │ ├── JsonTest.php │ └── MemoryTest.php └── unit/ ├── ArrayUtilTest.php ├── DatabaseDriverTest.php ├── HelperTest.php └── JsonDriverTest.php