Skip to content

Commit

Permalink
modified: app/providers/providers.php
Browse files Browse the repository at this point in the history
  • Loading branch information
juancristobalgd1 committed Mar 1, 2024
1 parent 8576640 commit 523f8f3
Showing 1 changed file with 24 additions and 14 deletions.
38 changes: 24 additions & 14 deletions app/providers/providers.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
<?php

return [
/**
* ---------------------------------------------------------------
* RAXM
* ---------------------------------------------------------------
*
* Raxm is a livewire-based library for providing a development
* experience similar to that of single-page applications
* (SPA), but without the need to write complex JavaScript
* code. It allows you to create interactive user interfaces by
* updating user interface components in response to user
* actions.
*/
'raxm' => Axm\Raxm\Raxm::class,

/**
---------------------------------------------------------------
APP PROVIDERS
---------------------------------------------------------------
*
* Here will be registered the classes of the providers that will
* be loaded at the start of the system, these will only be stored
* in the application container and will be consumed on demand.
**/
'app' => App::class,
'config' => Config::class,
'session' => Session\Session::class,
'request' => Http\Request::class,
'response' => Http\Response::class,
'router' => Http\Router::class,
'view' => Views\View::class,
'controller' => App\Controllers\BaseController::class,
'database' => Database\Database::class,
'validator' => Validation\Validator::class,
'auth' => Auth\Auth::class,
'console' => Console\ConsoleApplication::class,
'raxm' => Axm\Raxm\Raxm::class,
// 'event' => EventManager::class,
// 'cache' => Cache\Cache::class,
];

0 comments on commit 523f8f3

Please sign in to comment.