techpivot / phalcon-enterprise
Provides extended enterprise functionality for the Phalcon PHP framework.
Fund package maintenance!
techpivot
Requires
- php: >=5.6.0
Requires (Dev)
- phalcon/devtools: ^3.0
- phpunit/phpunit: ^5.7
- techpivot/phalcon-ci-installer: ^1.0
README
techpivot/phalcon-enterprise is a set of tools, plugins, and components that provide extended enterprise functionality for the Phalcon PHP framework.
Installation via Composer
- Add the
techpivot/phalcon-enterprise
repository into the require section of yourcomposer.json
as follows:
"require": { "techpivot/phalcon-enterprise": "^2.1" }
-
Run the
composer update
orcomposer install
as necessary for your project. -
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';
-