|
@@ -0,0 +1,41 @@
|
|
|
+# AuditBundle
|
|
|
+
|
|
|
+Bundle para Auditoría
|
|
|
+
|
|
|
+- [Installation](#installation)
|
|
|
+
|
|
|
+## Installation
|
|
|
+
|
|
|
+**composer.json**:
|
|
|
+
|
|
|
+```javascript
|
|
|
+"repositories": [
|
|
|
+ {
|
|
|
+ "type": "vcs",
|
|
|
+ "url": "ssh://git@200.50.168.30:222/VendorSoftwareFlowdat3/AuditBundle.git"
|
|
|
+ }
|
|
|
+],
|
|
|
+"require": {
|
|
|
+ "ik/audit-bundle": "dev-master"
|
|
|
+},
|
|
|
+```
|
|
|
+
|
|
|
+**app/AppKernel.php**:
|
|
|
+
|
|
|
+```php
|
|
|
+public function registerBundles()
|
|
|
+{
|
|
|
+ $bundles = [
|
|
|
+ new AuditBundle\AuditBundle(),
|
|
|
+ ];
|
|
|
+ .
|
|
|
+ .
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+**app/config/config.yml**:
|
|
|
+
|
|
|
+```yml
|
|
|
+imports:
|
|
|
+ - { resource: "@AuditBundle/Resources/config/services.yml" }
|
|
|
+```
|