laravel-freelancer-nl / aranguent
Laravel bridge for the ArangoDB Multi-model database
Package info
github.com/LaravelFreelancerNL/laravel-arangodb
pkg:composer/laravel-freelancer-nl/aranguent
Fund package maintenance!
Requires
- php: ^8.2
- ext-json: *
- composer/composer: ^2.8.0
- laravel-freelancer-nl/arangodb-php-client: ^2.8.0
- laravel-freelancer-nl/fluentaql: ^2.0
- laravel/framework: ^12.0
- spatie/laravel-data: ^4.4.0
- stevebauman/unfinalize: ^2.1
- vlucas/phpdotenv: ^5.4
Requires (Dev)
- larastan/larastan: ^3.1
- laravel/pint: ^1.10
- mockery/mockery: ^1.5.0
- nunomaduro/collision: ^8.0
- orchestra/testbench: ^10.0
- pestphp/pest: ^3.7.4
- pestphp/pest-plugin-faker: ^3.0
- pestphp/pest-plugin-laravel: ^3.1
- phpmd/phpmd: 2.13
- spatie/laravel-ray: ^1.32
- timacdonald/log-fake: ^2.2.0
- dev-next
- v1.0.0-beta.12
- v1.0.0-beta.11
- v1.0.0-beta.10
- v1.0.0-beta.9
- v1.0.0-beta.8
- v1.0.0-beta.7
- v1.0.0-beta.6
- v1.0.0-beta.5
- v1.0.0-beta.4
- v1.0.0-beta.3
- v1.0.0-beta.2
- v1.0.0-beta-1
- v1.0.0-alpha.4
- v1.0.0-alpha.3
- v1.0.0-alpha.2
- v1.0.0-alpha.1
- 0.15.0
- 0.14.3
- 0.14.2
- 0.14.1
- 0.14
- 0.13
- 0.12
- 0.11
- 0.10
- 0.9
- 0.8
- 0.7
- 0.6
- 0.5
- 0.4.1
- 0.4
- 0.3.2
- 0.3.1
- 0.3
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.0
- dev-dependabot/github_actions/dependabot/fetch-metadata-2.5.0
- dev-dependabot/github_actions/actions/cache-5
- dev-dependabot/github_actions/actions/checkout-6
- dev-dependabot/github_actions/stefanzweifel/git-auto-commit-action-7
- dev-186-self-joins-fail-in-relationship-queries
This package is auto-updated.
Last update: 2026-03-31 06:52:56 UTC
README
Aranguent
ArangoDB driver for Laravel
The unguent between the ArangoDB and Laravel
I’m archiving my ArangoDB PHP/Laravel packages
Due to the license changes ArangoDB introduced last year, it no longer makes sense for me to continue using the product or to invest further time in developing, maintaining, and improving these packages.
While building and running side projects is in many ways easier and more affordable than ever, the new license creates a significant barrier for my own projects.
I’ve genuinely enjoyed working with ArangoDB, and I still believe it is an excellent product. However, under the current licensing model, I can no longer justify the time required to support these packages. Time is my most limited resource, and I need to allocate it where it makes sense professionally.
As a result, I am archiving the following packages:
- The Laravel driver: https://github.com/LaravelFreelancerNL/laravel-arangodb
- The PHP client: https://github.com/LaravelFreelancerNL/arangodb-php-client
- The AQL query builder: https://github.com/LaravelFreelancerNL/fluentaql
If there is interest in continuing their development, you are welcome to fork them and maintain your own versions. Alternatively, if you would like to sponsor or hire me to continue maintaining them, please feel free to get in touch.
Thank you to everyone who has used, supported, or contributed to these packages.
So long, and thanks for all the fish.
Bas
Laravel Freelancer NL
The goal is to create a drop-in ArangoDB replacement for Laravel's database, migrations and model handling.
This package is in development; use at your own peril.
Installation
This driver is currently in the v1 beta stage. To install it make sure that the minimum stability is set to beta or lower, and that prefer-stable is set to false in composer.json:
"minimum-stability": "beta",
"prefer-stable": false,
You may then use composer to install Aranguent:
composer require laravel-freelancer-nl/aranguent
Version compatibility
| Laravel | ArangoDB | PHP | Aranguent |
|---|---|---|---|
| ^8.0 and ^9.0 | ^3.7 | ^8.0 | ^0.13 |
| ^11.0 | ^3.11 | ^8.2 | ^1.0.0 - 1.0.0-beta.11 |
| ^12.0 | ^3.11 | ^8.2 | ^v1.0.0-beta.12 |
Documentation
- Connect to ArangoDB: set up a connection
- Converting from SQL databases to ArangoDB:
- Migrations: migration conversion and commands
- Eloquent relationships: supported relationships
- Query Builder: supported functions
- Selecting JSON data: how to select subsets of documents.
- ArangoSearch: searching views
- Transactions: how to set up ArangoDB transactions
- FluentAQL: Use the AQL query builder directly
- Testing: testing your project with Aranguent.
- Compatibility list: overview of DB related compatible methods.
- Secondary database: using ArangoDB as your secondary database.