Install
Download the project folder on Github
Go to https://github.com/KevinDaSilvaS/IvoryORM and click at clone or download and download the files.
Descompact
Unzip the file and go to the project folder
Configure your database
Open the config file and configure your database.
//mysql is the dafault database engine for ivory but php support many diferents databases like plsql, oracledb, postgres and others
//host normally localhost for the most part of projects
//dbname your database name Ex: myAwesomeProject
//port is optional but woth to add to description
//myusername is the username it is your database username the default for the mostpart of databases is root
//mypassword is the database password if your database doens`t require a password just use ""
$db = new PDO('mysql:host=localhost;dbname=atelierCostura;port=3306', "myusername", "mypassword");