23 lines
		
	
	
		
			579 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			579 B
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| /**
 | |
|  * This makes our life easier when dealing with paths. Everything is relative
 | |
|  * to the application root now.
 | |
|  */
 | |
| chdir(dirname(__DIR__));
 | |
| 
 | |
| // Decline static file requests back to the PHP built-in webserver
 | |
| if (php_sapi_name() === 'cli-server' && is_file(__DIR__ . parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH))) {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * Default Timezone
 | |
|  */
 | |
| date_default_timezone_set('Europe/Luxembourg');
 | |
| 
 | |
| // Setup autoloading
 | |
| require 'init_autoloader.php';
 | |
| 
 | |
| // Run the application!
 | |
| Zend\Mvc\Application::init(require 'config/application.config.php')->run();
 |