├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── LICENSE.md ├── README.md ├── composer.json ├── config └── option.php ├── database └── migrations │ └── 2019_02_14_000000_create_options_table.php └── src ├── CastValues.php ├── Contracts ├── Factory.php ├── Repository.php └── Store.php ├── Converter.php ├── DatabaseStore.php ├── FileStore.php ├── OptionManager.php ├── OptionServiceProvider.php ├── Repository.php └── helpers.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/composer.json -------------------------------------------------------------------------------- /config/option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/config/option.php -------------------------------------------------------------------------------- /database/migrations/2019_02_14_000000_create_options_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/database/migrations/2019_02_14_000000_create_options_table.php -------------------------------------------------------------------------------- /src/CastValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/CastValues.php -------------------------------------------------------------------------------- /src/Contracts/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/Contracts/Factory.php -------------------------------------------------------------------------------- /src/Contracts/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/Contracts/Repository.php -------------------------------------------------------------------------------- /src/Contracts/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/Contracts/Store.php -------------------------------------------------------------------------------- /src/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/Converter.php -------------------------------------------------------------------------------- /src/DatabaseStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/DatabaseStore.php -------------------------------------------------------------------------------- /src/FileStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/FileStore.php -------------------------------------------------------------------------------- /src/OptionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/OptionManager.php -------------------------------------------------------------------------------- /src/OptionServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/OptionServiceProvider.php -------------------------------------------------------------------------------- /src/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/Repository.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armincms/option/HEAD/src/helpers.php --------------------------------------------------------------------------------