I'm having an issue where zend framework is not finding a zend json class.
In my index controller I have the line:
use Zend\Json\Server\Server;
In my index action when I try to create an instance of the json server class with the line:
$server = new Server();
I get the following fatal error:
PHP Fatal error: Class 'Zend\\Json\\Server\\Server' not found in /home/jonathan/code/issacrest/module/Application/src/Controller/IndexController.php on line 38
The error itself proves that the framework knows I'm trying to create an instance of the json server class so what gives?