Replies: 1 comment 2 replies
-
I don't have this issue. How are you registering Here's an example that works for me. Application.php namespace App;
class Application extends \Illuminate\Foundation\Application
{
protected $namespace = 'App\\';
} app.php use App\Application;
$app = new Application(
$_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
);
$app->useAppPath($app->basePath('src/App')); Also, I did a package that move classes around to approach a DDD alike architecture shown in Laravel Beyond Crud. Maybe you can find some useful information or it could be a good start. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm trying to re-structure the Laravel and extend the "Laravel Application" by implementing the
Illuminate\Contracts\Foundation\Application
contract. Trying to registerLaravel Ignition
with myLaravel Application
concrete but there is a direct dependency in theSpatie\LaravelIgnition\IgnitionServiceProvider
. I apologize for the submitted issue if it was implemented consciously.Beta Was this translation helpful? Give feedback.
All reactions