https://github.com/techpivot/phalcon-enterprise
Provides extended enterprise functionality for the Phalcon PHP framework.
https://github.com/techpivot/phalcon-enterprise
enterprise phalcon php php7 plugin techpivot
Last synced: 3 months ago
JSON representation
Provides extended enterprise functionality for the Phalcon PHP framework.
- Host: GitHub
- URL: https://github.com/techpivot/phalcon-enterprise
- Owner: techpivot
- License: mit
- Created: 2016-05-18T23:52:02.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-02-06T04:22:27.000Z (over 7 years ago)
- Last Synced: 2025-03-24T15:11:21.942Z (4 months ago)
- Topics: enterprise, phalcon, php, php7, plugin, techpivot
- Language: PHP
- Size: 32.2 KB
- Stars: 8
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Phalcon Enterprise
[](https://scrutinizer-ci.com/g/techpivot/phalcon-enterprise)
[](https://packagist.org/packages/techpivot/phalcon-enterprise)
[](https://packagist.org/packages/techpivot/phalcon-enterprise)
[](https://raw.githubusercontent.com/techpivot/phalcon-enterprise/master/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:
```json
"require": {
"techpivot/phalcon-enterprise": "^2.1"
}
```2. Run the `composer update` or `composer install` as necessary for your project.
3. Include in your project loader using Composer autoloading or Phalcon's autoloader:* **Phalcon Autoloader**
```php
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**
```php
require_once 'vendor/autoload.php';
```## Plugins, Adapters, & Extensions
### Dispatcher Plugins
#### AjaxRouteHandler
#### CamelizeActionName
#### IndexRedirector
#### NotFoundHandler## References
* [Phalcon PHP Framework](https://phalconphp.com)
* [Phalcon Incubator](https://github.com/phalcon/incubator)
* [TechPivot](https://www.techpivot.net)