Getting Started

Via Composer

If you use composer to manage the dependencies of your project you can simply add a dependency on foxorm/foxorm to your project's composer.json file by running this command in a terminal at root of your project composer require foxorm/foxorm
            
Or you can add it manually, here is a minimal example of a composer.json {
    "require": {
        "foxorm/foxorm": "^1.0"
    }
}
            
And then run composer install
            

Via all-in-one file

You can download the all-in-one file and then you'll just have to require it with php require_once "foxorm.php"