PHP code example of miladimos / conf

1. Go to this page and download the library: Download miladimos/conf library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

miladimos / conf example snippets


Miladimos\Conf\Providers\ConfServiceProvider::class,

use Miladimos\Conf\Services\ConfigJsonService;

ConfigJsonService::all(); // return all stored configs in config.json file
ConfigJsonService::show($id); // receive id of config and return one config
ConfigJsonService::store($date); 
ConfigJsonService::update($date, $id); 
ConfigJsonService::delete($id); // receive id of config and  delete

GET  api/version/conf/all          -> name: conf.all // return all configs
GET  api/version/conf/show/{id}    -> name: conf.show // return single config
POST api/version/conf/update/{id}  -> name: conf.update // update
POST api/version/conf/store        -> name: conf.store // store
GET  api/version/conf/delete/{id}  -> name: conf.delete // delete

[
    'key' => 'yourkey',
    'value' => 'yourvalue',
    'description' => 'description',
]

php artisan conf:install