-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question : Can we still use all artisan command? #10
Comments
Any solution? I assume since the folder structure is changed there should be some additional guidelines to artisan where to create the model. P.S. "psr-4": {
"App\\": "app/",
"Api\\": "api/",
"Infrastructure\\": "infrastructure/"
} |
@esbenp seems to have abandoned the project. The idea of the project is really cool but there are too many gaps. Artisan no longer working, where do users put other API's? I assume a new folder but how does one connect between different models then? Can one still define Eloquent relations if models are separated from each other? Etc. |
@Jasperrr91 If you are familiar with Laravel the project is a good starting point since you can easily workaround glitches. But it's a bad point to learn due to the glitches. If I knew about the problems together with hm... not support, abandoned development, I'd not start from it. But it's to late for me. So resuming.
Rename infrastrucuture folder to app folder Change namespace/use paths in all files to respect new app folder. Another way is just to keep app folder for newly generated by artisan files but not to use the folder.
As far as I understand this should not be a problem is you add proper use directives. |
Same here. I only just stumbled upon this issue after I started my project. Artisan commands such as make:model and app:name are broken with the "Unable to detect application namespace." exception being thrown. |
I also had |
When I tried make model from artisan command :
php artisan make:model SomeModel
then I got an error on console :
[RuntimeException] Unable to detect application namespace.
The text was updated successfully, but these errors were encountered: