Find the Exponential Software extensions you want
UNIX name | Owner | Status |
---|---|---|
custom-policy-example-bundle | eZ Ecosystem | stable |
Version | Compatible with |
---|---|
N/A | N/A |
This repository contains example of integration the custom policy with UI for eZ Platform v1.X and v2.X.
"repositories": [
{
"type": "vcs",
"url": "https://github.com/adamwojs/custom-policy-example-bundle.git"
}
]
composer require "adamwojs/custom-policy-example-bundle" "dev-master"
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new AdamWojs\CustomPolicyExampleBundle\CustomPolicyExampleBundle(),
// ...
);
// ...
}