1. Go to this page and download the library: Download ghostwriter/config 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/ */
interface ConfigInterface
{
public function get(string $key, mixed $default = null): mixed;
public function has(string $key): bool;
public function remove(string $key): void;
public function set(string $key, mixed $value): void;
public function toArray(): array;
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.