PHP Classes

File: consts

Recommend this page to a friend!
  Classes of Fernando Val   Springy   consts   Download  
File: consts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Springy
Microframework for Web application development
Author: By
Last change:
Date: 27 days ago
Size: 472 bytes
 

Contents

Class file image Download
<?php // Name of the application const APP_NAME = 'Springy'; // Version of the application const APP_VERSION = '1.0.0'; // Code name of the application const APP_CODE_NAME = ''; // Application directories paths const APP_PATH = __DIR__ . '/app'; const CONFIG_DIR = __DIR__ . '/conf'; const MIGRATION_DIR = __DIR__ . '/migration'; const PROJECT_ROOT = __DIR__; const VAR_DIR = __DIR__ . '/var'; const CACHE_DIR = VAR_DIR . '/cache'; const WEB_ROOT = __DIR__ . '/public';