kitpages / simple-edm-bundle
Symfony SimpleEdmBundle
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- doctrine/orm: *
- kitpages/data-grid-bundle: *
- kitpages/file-system-bundle: dev-master
- symfony/framework-bundle: *
- twig/twig: >=1.8.0
Requires (Dev)
- beberlei/doctrineextensions: dev-master
- doctrine/doctrine-bundle: *
- doctrine/orm: *
- kitpages/data-grid-bundle: *
- kitpages/file-system-bundle: dev-master
- twig/twig: >=1.8.0
This package is auto-updated.
Last update: 2020-01-10 14:41:31 UTC
README
This is an electronic document manager for symfony.
Installation
use composer update
add the new Bundle in app/appKernel.php
You need to create a table in the database : launch command: php app/console doctrine:schema:update
Step1: AppKernel.php Add the following entries to your autoloader: $bundles = array( ... new Kitpages\SimpleEdmBundle\KitpagesSimpleEdmBundle(), new Kitpages\FileSystemBundle\KitpagesFileSystemBundle(), new Kitpages\DataGridBundle\KitpagesDataGridBundle(), );
Configuration example kitpagesFileSystemBundle
kitpages_file_system: file_system_list: kitpagesSimpleEdm: local: directory_public: %kernel.root_dir%/../web directory_private: %kernel.root_dir% base_url: %base_url%
- you should add something like that in your security.yml : role_hierarchy: ROLE_ADMIN: [ROLE_USER, ROLE_SIMPLEEDM_WRITER] ROLE_SIMPLEEDM_WRITER: ROLE_SIMPLEEDM_READER