Skip to content

Repository files navigation

Codeangel Security Framework for PHP

Build Status

##Installation

With Composer: You can install with composer, Simply add to your composer.json

{"require": {"codeangel/security": "1.*@alpha"}}

Manually: Just clone the repository, add the path to your include_path and then define a PSR-0 autolaoder

git clone https://github.com/cythrawll/CodeAngel-Security.git
set_include_path('/path/to/codeangel/library/src'.PATH_SEPARATOR.get_include_path());
functioncodeagelAutoLoader($classname) {
$className = ltrim($className, '\\');
$filename = str_replace('\\', DIRECTORY_SEPARATOR, $classname).'.php';
require$filename;
}
spl_autoload_register('codeangelAutoLoader');

##Requirements

  • PHP >= 5.3
  • openssl extension (required)
  • mcrypt extension (recommended)
  • PDO (recommended)

##Documentation

About

Security Framework for PHP

Resources

Stars

7 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages