mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-04 04:04:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			346 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			346 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Project main config page (common properties)
 | 
						|
 *
 | 
						|
 * @author Pierre HUBERT
 | 
						|
 */
 | 
						|
 | 
						|
class Config {
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Application version
 | 
						|
	 */
 | 
						|
	const VERSION = "0.1";
 | 
						|
 | 
						|
	/**
 | 
						|
	 * API access and credentials
 | 
						|
	 */
 | 
						|
	const API_URL = "http://devweb.local/comunic/api/";
 | 
						|
	const API_SERVICE_NAME = "ComunicWeb";
 | 
						|
	const API_SERVICE_TOKEN = "12XU67pJUlnNQ";
 | 
						|
 | 
						|
} |