✨ A hyper productive ORM for PHP.
Instarecord makes it super easy and fun to work with MySQL databases in PHP. It's fast and intuitive, and loaded with optional features to make your life easier.
🧙♂️ Define your models with typed variables, and Instarecord figures out the rest!
<?php
class User extends Model
{
public int $id;
public string $email;
public ?string $name;
}
$user = new User();
$user->email = "bob@web.net";
$user->save();
echo "Created user #{$user->id}!";
Define your models as pure PHP classes with typed properties. Use them like regular objects.
Use intuitive object-oriented CRUD (create, read, update, and delete) operations on your models.
Use the query builder to quickly build and run more complex queries with prepared statements.
Set up relationships between your models and easily load them in an optimized way.
Add constraints to your model properties and validate them with user-friendly error messages.
Add Instarecord to your project with Composer:
composer require softwarepunt/instarecord
Pass your own DatabaseConfig
or modify the default one:
<?php
use SoftwarePunt\Instarecord\Instarecord;
$config = Instarecord::config();
$config->charset = "utf8mb4";
$config->unix_socket = "/var/run/mysqld/mysqld.sock";
$config->username = "my_user";
$config->password = "my_password";
$config->database = "my_database";
$config->timezone = "UTC";
Defines your models by creating normal classes with public properties, and extending Model
:
<?php
use SoftwarePunt\Instarecord\Model;
class Car extends Model
{
public int $id;
public string $make;
public string $model;
public int $year;
}
Now you can create, read, update, and delete records with ease:
$car = new Car();
$car->make = "Toyota";
$car->model = "Corolla";
$car->year = 2005;
$car->save(); // INSERT INTO cars [..]
// Post insert, the primary key (id) is automatically populated
$car->year = 2006;
$car->save(); // UPDATE cars SET year = 2006 WHERE id = 123
$car->delete(); // DELETE FROM cars WHERE id = 123
You can easily build and run custom queries, and get results in various ways - from raw data to fully populated models.
$matchingCars = Car::query()
->where('make = ?', 'Toyota')
->andWhere('year > ?', 2000)
->orderBy('year DESC')
->limit(10)
->queryAllModels(); // Car[]
$carsPerYear = Instarecord::query()
->select('year, COUNT(*) as count')
->from('cars')
->groupBy('year')
->queryKeyValueArray(); // [2005 => 10, 2006 => 5, ..]