PHP code example of ocramius / ocra-service-manager
1. Go to this page and download the library: Download ocramius/ocra-service-manager library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ocramius / ocra-service-manager example snippets
// ...
'modules' => array(
// add OcraServiceManager and ZDT...
'ZendDeveloperTools',
'OcraServiceManager',
// ... and then your stuff
'MyOwnModule',
),
return array(
'ocra_service_manager' => array(
// Turn this on to disable dependencies view in Zend Developer Tools
'logged_service_manager' => true,
),
);