<?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';
|