Skip to content

alienfernandez/phady

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Phady Framework

Phady Framework is a web framework based on Phalcon framework, it extends some Phalcon classes written in Zephir language to provide additional functionality. With the Phady Dev-Tools you can have a good completion of code, it is located in https://github.com/alienfernandez/phady-devtools and you need install to your favorite IDE

##Currently it provides classes for:

  • Caching
  • Configuration reading
  • Kernel classes for Web MVC and console applications
  • Database access adapters
  • HTTP request processing
  • Email retrieving
  • Message queuing
  • Request routing
  • Multiple security aspect handling
  • Miscellaneous utilities

##Example how you run the application with Phady Framework:

use Phady\Core\KernelMvc;
try {
    $modules = [[
        "common" => ["className" => "App\Common\Module", "path" => __DIR__ . "/../src/common/Module.php"]
       ]
    ];
    $environment = "dev"; //dev or prod
    $mode = "mvc"; //mvc or cli
    $appCore = new KernelMvc($environment, false, "mvc", $modules);
    //Handle the request
    echo $appCore->getApplication()->handle()->getContent();
} catch (Phalcon\Exception $e) {
    echo $e->getMessage();
} catch (PDOException $e) {
    echo $e->getMessage();
}

License

About

Phady Framework is written in Zephir Language and created as an extension of Phalcon Framework, It has console modules, security system based in the security system of Symfony 2 Framework and util. It is in Alpha versions

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors