Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-06T04:22:27.000Z (almost 7 years ago)
- Last Synced: 2024-09-30T13:42:58.917Z (3 months ago)
- Topics: enterprise, phalcon, php, php7, plugin, techpivot
- Language: PHP
- Size: 32.2 KB
- Stars: 9
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Phalcon Enterprise
[![Scrutinizer](https://img.shields.io/scrutinizer/g/techpivot/phalcon-enterprise.svg?maxAge=2592000&label=Scrutinizer&style=flat-square)](https://scrutinizer-ci.com/g/techpivot/phalcon-enterprise)
[![Latest Version](https://img.shields.io/packagist/v/techpivot/phalcon-enterprise.svg?style=flat-square)](https://packagist.org/packages/techpivot/phalcon-enterprise)
[![Total Downloads](https://img.shields.io/packagist/dt/techpivot/phalcon-enterprise.svg?style=flat-square)](https://packagist.org/packages/techpivot/phalcon-enterprise)
[![Software License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](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)