idci / agreement-bundle
Symfony bundle to handle agreement management features general conditions
Installs: 287
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^5.5.9|>=7.0.8
- doctrine/doctrine-bundle: ^1.6
- ramsey/uuid-doctrine: ~1.0
- symfony/symfony: ^3.4
Requires (Dev)
- doctrine/orm: ^2.5
- phpunit/phpunit: ^5.0
This package is auto-updated.
Last update: 2024-10-24 21:55:44 UTC
README
AgreementBundle is a symfony bundle to manage agreement bundle like general conditions.
Installation
Add dependencies in your composer.json
file:
"require": { ... "idci/agreement-bundle": "~1.0" },
Install these new dependencies in your application using composer:
$ composer update
Register needed bundles in your application kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new IDCI\Bundle\AgreementBundle\IDCIAgreementBundle(), ); }
Import the bundle configuration:
# app/config/config.yml imports: - { resource: @IDCIAgreementBundle/Resources/config/config.yml }
Tests (using docker)
Install bundle dependencies:
$ make composer-update
To execute unit tests:
$ make phpunit