Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 602 Bytes

File metadata and controls

35 lines (23 loc) · 602 Bytes

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