Skip to content

Commit

Permalink
reconfigured to match plugin structure
Browse files Browse the repository at this point in the history
  • Loading branch information
BenRutlandWeb committed Feb 14, 2021
1 parent 896cbfe commit 53de575
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
"autoload": {
"psr-4": {
"Theme\\": "app/"
}
},
"files": [
"helpers.php"
]
},
"require": {
"php": "^7.3",
Expand Down
6 changes: 5 additions & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,13 @@
*
*/

$app->register(Radiate\Auth\AuthServiceProvider::class);
$app->register(Radiate\Mail\MailServiceProvider::class);
$app->register(Radiate\Routing\RoutingServiceProvider::class);
$app->register(Radiate\View\ViewServiceProvider::class);

$app->register(Theme\Providers\EventServiceProvider::class);
$app->register(Theme\Providers\RouteServiceProvider::class);
$app->register(Radiate\Mail\MailServiceProvider::class);


/**
Expand Down

0 comments on commit 53de575

Please sign in to comment.