erichard / SublimePHPCompanion

A Sublime Text plugin that provides cool stuff for PHP 5.3+ coding session.
MIT License
932 stars 115 forks source link

PSR-4 #134

Closed mastir closed 4 years ago

mastir commented 4 years ago

How to use PSR-4 support in projects without composer?

mastir commented 4 years ago

ok, solved by placing into all root folders composer.json:

{
    "autoload": {
        "psr-4": { "": "" }
    }
}

shouldn't it be default behavior?

mastir commented 4 years ago

Here is simple fallback for projects without composer. https://github.com/erichard/SublimePHPCompanion/pull/135