gralhao/gralhao-db

Gralhao Database Module

1.0.1 2020-08-18 05:48 UTC

This package is auto-updated.

Last update: 2024-05-18 13:59:15 UTC


README

Gralhao logo

gralhao/gralhao-db

Latest Stable Version Minimum PHP Version Build Status Status License

A Gralhao Database Module

Index

About

This module is an implementation of Phalcon PDO Adapter.

Getting Started

Prerequisites

PHP ^7.4, Phalcon ^4.x, Gralhao ^1.x

Usage

Installing

composer require gralhao/gralhao-db

In application.config.php just add:

<?php

return [
    'modules' => [
        'Gralhao\Db',
    ],
    'database' => [
        'adapter'    => 'Mysql',
        'host'       => 'localhost',
        'username'   => 'user',
        'password'   => 'p@ss',
        'dbname'     => 'user_database',
        'charset'    => 'utf8',
    ],
];

Built Using

Authors

See also the list of contributors who participated in this project.

Acknowledgements