techpivot/phalcon-enterprise

Provides extended enterprise functionality for the Phalcon PHP framework.

2.1.5 2018-02-06 04:20 UTC

This package is auto-updated.

Last update: 2024-04-08 08:27:08 UTC


README

Scrutinizer Latest Version Total Downloads Software License

techpivot/phalcon-enterprise is a set of tools, plugins, and components that provide extended enterprise functionality for the Phalcon PHP framework.

Installation via Composer

  1. Add the techpivot/phalcon-enterprise repository into the require section of your composer.json as follows:
"require": {
    "techpivot/phalcon-enterprise": "^2.1"
}
  1. Run the composer update or composer install as necessary for your project.

  2. Include in your project loader using Composer autoloading or Phalcon's autoloader:

    • Phalcon Autoloader

      use Phalcon\Loader;
      
      $loader = new Loader();
      $loader->registerNamespaces([
          // Your custom namespaces ...
      
          // Include TechPivot\Phalcon\Enterprise
          'TechPivot\Phalcon\Enterprise' => 'vendor/techpivot/phalcon-enterprise/src',
      ]);
      $loader->register();
    • Composer Autoloader

      require_once 'vendor/autoload.php';

Plugins, Adapters, & Extensions

Dispatcher Plugins

AjaxRouteHandler

CamelizeActionName

IndexRedirector

NotFoundHandler

References