Skip to content

ddtraceweb/socool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Socool Framework

you must have session in database for use session with socool framework.

need PHP 5.4 or +

example with mysql :

CREATE TABLE IF NOT EXISTS `session` (
  `session_id` varchar(255) NOT NULL,
  `session_value` text NOT NULL,
  `session_time` int(11) NOT NULL,
  PRIMARY KEY (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Install SoCool Framework By Composer :

getcomposer.org

php composer.phar create-project socool/socool path/ 1.0.7

For Assets Css and Js, I recommand to use "Bower"

http://bower.io/

cd web/assets/components
bower update