namespace.nvim
namespace.nvim copied to clipboard
Doesn't respect composer's psr-4 settings
Hi,
With a composer setup:
"autoload": {
"psr-4": {
"App\\": "src/",
"Other\\SomeBundle\\": "lib/SomeBundle/src/"
}
}
I end up with following when adding namespace to a class:
namespace Lib\SomeBundle\Src\Entity;
Is there any simple way, how to correctly use custom psr-4 namespaces?
Btw. awesome plugin