Unknown Namespace ----------------- Example PHP: ``` Unknown namespace 'Acme\Foo\Bar' This exception occurs when the provided namespace isn't declared or isn't accessible based on items are _are_ declared in `composer.json`. In the given example, `Acme` is declared to map to `src/` in `composer.json`, so PSR4 would mandate that `src/Foo/Bar` is a valid path for a directory. However, that directory could not be located, and therefore the provided namespace is unknown. If you discover that this exception is raised and Composer _can_ autoload classes found in the namespace, please submit an issue.