parishop/project

Project PHPixie 3 with Parishop modules

dev-master / 3.x-dev 2016-12-06 08:09 UTC

This package is not auto-updated.

Last update: 2024-05-11 17:45:50 UTC


README

Project PHPixie 3 with Parishop modules

Installation

Create file "/assets/parameters.php"

<?php
return [
    'database' => [
        'default' => [
            'driver'   => '',
            'adapter'  => '',
            'database' => '',
            'host'     => '',
            'port'     => '',
            'user'     => '',
            'password' => '',
        ],
    ],
    'mailer'   => [
        'type'             => 'native',
        'hostname'         => 'localhost',
        'port'             => '25',
        'username'         => null,
        'password'         => null,
        'encryption'       => null, // 'ssl' and 'tls' are supported
        'timeout'          => null, // timeout in seconds, defaults to 5
        'sendmail_command' => null,
        'mail_parameters'  => null,
    ],
    'social'   => [
        'facebook' => [
            'appId'     => '',
            'appSecret' => '',
            'scope'     => '',
        ],
        'google'   => [
            'appId'     => '',
            'appSecret' => '',
            'scope'     => '',
        ],
        'vk'       => [
            'appId'     => '',
            'appSecret' => '',
            'scope'     => '',
        ],
        'twitter'  => [
            'consumerKey'    => '',
            'consumerSecret' => '',
        ],
    ],
];