-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modified: app/providers/providers.php
- Loading branch information
1 parent
8576640
commit 523f8f3
Showing
1 changed file
with
24 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
]; |