PHPackages                             lrezek/arachnid4laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. lrezek/arachnid4laravel

ActiveLibrary

lrezek/arachnid4laravel
=======================

Arachnid OGM provider and facade for Laravel.

041PHP

Since Apr 9Pushed 11y agoCompare

[ Source](https://github.com/lrezek/Arachnid4Laravel)[ Packagist](https://packagist.org/packages/lrezek/arachnid4laravel)[ RSS](/packages/lrezek-arachnid4laravel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

About
=====

[](#about)

This is a service provider for Laravel 4.1 for the [Arachnid OGM](https://github.com/lrezek/Arachnid).

Installation
============

[](#installation)

Add `lrezek/arachnid4laravel` as a requirement to `composer.json`:

```
{
    "require": {
       "lrezek/arachnid4laravel": "dev-master"
    }
}
```

You may need to add the package dependencies as well, depending on your `minimum-stability` setting:

```
{
    "require": {
       "everyman/neo4jphp":"dev-master",
       "lrezek/arachnid":"dev-master"
    }
}
```

Update your packages with `composer update` or install with `composer install`.

Once Composer has updated your packages, you'll need to tell Lavarel about the service provider. Add the following to the `providers` in `app/config/app.php`:

```
'LRezek\Arachnid4Laravel\Providers\ArachnidServiceProvider',
```

And the facade to the `facades`:

```
'Arachnid' => 'LRezek\Arachnid4Laravel\Facades\ArachnidFacade',
```

Note: You can change the name of the facade (`Arachnid`) to whatever you like.

Database Configuration
======================

[](#database-configuration)

The Neo4J database configuration is autoloaded from `app/config/database.php`. To add a Neo4J connection, simply add the following to the `connections` parameter:

```
'neo4j' => array(
            'transport' => 'curl',
            'host' => 'localhost',
            'port' => '7474',
            'debug' => true,
            'proxy_dir' => '/tmp',
            'cache_prefix' => 'neo4j',
            'meta_data_cache' => 'array',
            'annotation_reader' => null,
            'username' => null,
            'password' => null,
            'pathfinder_algorithm' => null,
            'pathfinder_maxdepth' => null
        )
```

And set the default connection as follows:

```
'default' => 'neo4j',
```

Usage
=====

[](#usage)

Once this set-up is complete, you can use entities and do queries as shown in [Arachnid](https://github.com/lrezek/Arachnid). To call functions in the entity manager, simply use the facade you defined above. For example:

```
Arachnid::flush()
```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/c0f3ca2c31384c90a68edabe69abf18b109b6fd0c255eaf604fca04bb48d5eaf?d=identicon)[lrezek](/maintainers/lrezek)

---

Top Contributors

[![lrezek](https://avatars.githubusercontent.com/u/6645422?v=4)](https://github.com/lrezek "lrezek (57 commits)")

### Embed Badge

![Health badge](/badges/lrezek-arachnid4laravel/health.svg)

```
[![Health](https://phpackages.com/badges/lrezek-arachnid4laravel/health.svg)](https://phpackages.com/packages/lrezek-arachnid4laravel)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
