PHPackages                             fivesqrd/atlas-laravel - 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. [Framework](/categories/framework)
4. /
5. fivesqrd/atlas-laravel

ActiveLibrary[Framework](/categories/framework)

fivesqrd/atlas-laravel
======================

A Laravel 5 service provider for including the Atlas library.

v1.2(4y ago)01.2kMITPHPPHP &gt;=5.5.9

Since May 17Pushed 4y ago1 watchersCompare

[ Source](https://github.com/fivesqrd/atlas-laravel)[ Packagist](https://packagist.org/packages/fivesqrd/atlas-laravel)[ RSS](/packages/fivesqrd-atlas-laravel/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (2)Versions (4)Used By (0)

Atlas-Laravel
=============

[](#atlas-laravel)

A Laravel service provider for the Atlas library

Install
-------

[](#install)

`composer require fivesqrd/atlas-laravel`

Composer will automaticall register the provider and facade. If not:

In config/app.php register the Atlas Service Provider in the "providers" array:

```
    'providers' => array(
        // ...
        Atlas\Laravel\ServiceProvider::class,
    )

```

In config/app.php add the Atlas facade under "aliases":

```
    'aliases' => array(
        // ...
        'Atlas' => Atlas\Laravel\AtlasFacade::class,
    )

```

Config
------

[](#config)

The config should be automatically created from the composer install. If not, run `php artisan vendor:publish`

Atlas uses 'DB\_DATABASE', 'DB\_USERNAME' and 'DB\_PASSWORD' values defined in the .env config file.

Usage
-----

[](#usage)

Atlas facade is now available can be instantiated throughout the application like this:

```
\Atlas::model(App\Model\User::class)
  ->isActive(true)
  ->query()
  ->fetch()->all();

```

```
$user = \Atlas::model(App\Model\User::class)->fetch(1);

```

```
\Atlas::save($user);

```

```
\Atlas::relation($user)->tickets()->fetch()->all();

```

More usage examples for the Atlas API are avilable on the Atlas repo:

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~704 days

Total

3

Last Release

1510d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7326f7193078067ab21d775e45c06241d8cc03548c6c3191146d840f2e8277ba?d=identicon)[christianjburger](/maintainers/christianjburger)

---

Top Contributors

[![christianjburger](https://avatars.githubusercontent.com/u/43279?v=4)](https://github.com/christianjburger "christianjburger (16 commits)")

---

Tags

laravellaravellaravel 5

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/fivesqrd-atlas-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/fivesqrd-atlas-laravel/health.svg)](https://phpackages.com/packages/fivesqrd-atlas-laravel)
```

###  Alternatives

[hemp/presenter

Easy Model Presenters in Laravel

247592.6k1](/packages/hemp-presenter)[rahulalam31/laravel-abuse-ip

Block ip address of all spammer's around the world.

27431.5k](/packages/rahulalam31-laravel-abuse-ip)

PHPackages © 2026

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