fidesio / isidore-bundle
Symfony bundle for Isidore API
Installs: 254
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 8
Forks: 2
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.5.0
- ext-curl: *
- ext-fileinfo: *
- ext-json: *
- ext-openssl: *
- cakephp/utility: 3.1.*
- doctrine/cache: 1.6.*
- snc/redis-bundle: ^2.1
- symfony/framework-bundle: ^2.3
- symfony/security-bundle: ^2.3
README
Installation
Step 1: Download FidesioIsidoreBundle using composer
{ "require": { "fidesio/isidore-bundle": "dev-master" } }
Now tell composer to download the bundle by running the command:
$ composer update fidesio/isidore-bundle
Step 2: Enable the bundle
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Fidesio\IsidoreBundle\FidesioIsidoreBundle(), ); }
Basic Usage
# app/config/config.yml fidesio_isidore: client: url: http://url.to.isidore.app # Isidore URL login: api_login # Isidore login password: api_password # Isidore api password auth_basic_user: auth_basic_user # Application Basic Authorization `user` if needed / not required auth_basic_pass: auth_basic_pass # Application Basic Authorization `password` if needed / not required cache: enable: true|false type: file|redis redis: redis://localhost:6379/3 # redis DSN