ZF2: autoloading libraries without namespaces
Previously I have only been using third party libraries that use namespaces together with Zend Framework 2. Now I need to use a library that does not use namespaces, and I cannot seem to make it work. I installed it via Composer, and it is installed fine into the vendor directory. I am trying to use it as follows: $obj = new \SEOstats(); The result is a fatal error indicating that the class could not be found. I have tried to manually configure the StandardAutoloader , but so far without any luck. I thought that the autoloading would be done for me automatically when installing through