eugenevdm/helpers

Random helpers.

1.0.6 2016-11-28 15:33 UTC

This package is auto-updated.

Last update: 2024-05-14 11:01:08 UTC


README

Load Config Values

Setup

  • Create folder off \ called config
  • Create file called "config.php", e.g. ssh.php
return [
    'host' => 'host.domain.com',
    'username' => 'username',
    'password' => 'password',
];

Make sure you have a .gitignore file something like:

# Created by .ignore support plugin (hsz.mobi)
.gitignore
.idea/
vendor/
config/ <-- Make sure you have this entry!

Usage

$config = \Helpers\Helpers::Config('ssh');