├── Autoload.php ├── DAO.class.php ├── LICENSE ├── Model ├── Badge.class.php ├── DAOInterface.class.php ├── Entity.class.php ├── Event.class.php ├── Level.class.php ├── UserAlert.class.php ├── UserBadge.class.php ├── UserEvent.class.php ├── UserLog.class.php └── UserScore.class.php ├── PHPGamification.class.php ├── README.md ├── Sample ├── MyOtherClass.php └── index.php ├── composer.json └── database ├── MySqlWorkbench_Model.mwb ├── MySqlWorkbench_Model.mwb.bak └── database.sql /Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Autoload.php -------------------------------------------------------------------------------- /DAO.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/DAO.class.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/Badge.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Model/Badge.class.php -------------------------------------------------------------------------------- /Model/DAOInterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Model/DAOInterface.class.php -------------------------------------------------------------------------------- /Model/Entity.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Model/Entity.class.php -------------------------------------------------------------------------------- /Model/Event.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Model/Event.class.php -------------------------------------------------------------------------------- /Model/Level.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Model/Level.class.php -------------------------------------------------------------------------------- /Model/UserAlert.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Model/UserAlert.class.php -------------------------------------------------------------------------------- /Model/UserBadge.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Model/UserBadge.class.php -------------------------------------------------------------------------------- /Model/UserEvent.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Model/UserEvent.class.php -------------------------------------------------------------------------------- /Model/UserLog.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Model/UserLog.class.php -------------------------------------------------------------------------------- /Model/UserScore.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Model/UserScore.class.php -------------------------------------------------------------------------------- /PHPGamification.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/PHPGamification.class.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/README.md -------------------------------------------------------------------------------- /Sample/MyOtherClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Sample/MyOtherClass.php -------------------------------------------------------------------------------- /Sample/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/Sample/index.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/composer.json -------------------------------------------------------------------------------- /database/MySqlWorkbench_Model.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/database/MySqlWorkbench_Model.mwb -------------------------------------------------------------------------------- /database/MySqlWorkbench_Model.mwb.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/database/MySqlWorkbench_Model.mwb.bak -------------------------------------------------------------------------------- /database/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiagoGouvea/PHPGamification/HEAD/database/database.sql --------------------------------------------------------------------------------