scrawler / database
Arca ORM integration bridge for scrawler framework
v2.0.1
2025-02-11 03:55 UTC
Requires
- scrawler/arca: ^4.0
Requires (Dev)
- pestphp/pest: ^3.2
- phpstan/phpstan: ^1.12
- rector/rector: ^1.2
- scrawler/http: ^2.0
This package is auto-updated.
Last update: 2025-03-31 23:16:51 UTC
README
Scrawler Database
🔥Wrapper around Arca ORM to be integrated with scrawler framework 🔥
🇮🇳 Made in India 🇮🇳
💻 Installation
You can install Scrawler App via Composer. If you don't have composer installed , you can download composer from here
composer require scrawler/database
✨ Basic usage
Repo of Arca Orm: https://github.com/scrawler-labs/arca-orm
<?php require __DIR__ . '/vendor/autoload.php'; $connectionParams = array( 'dbname' => 'YOUR_DB_NAME', 'user' => 'YOUR_DB_USER', 'password' => 'YOUR_DB_PASSWORD', 'host' => 'YOUR_DB_HOST', 'driver' => 'pdo_mysql', //You can use other supported driver this is the most basic mysql driver ); db()->connect($connectionParams); $user = db()->create('user'); $user->name = 'test user'; $user->age = 12; $user->save();