fivesqrd / atlas-laravel
A Laravel 5 service provider for including the Atlas library.
Installs: 1 200
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=5.5.9
- fivesqrd/atlas-foundation: >=3.2.5
Requires (Dev)
- phpunit/phpunit: ~4.0|~5.0
This package is auto-updated.
Last update: 2025-03-25 16:21:22 UTC
README
A Laravel service provider for the Atlas library
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
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
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: http://github.com/Five-Squared/Atlas