cubicmushroom / value-objects-bundle
Symfony bundle to integrate value objects from the nicolopignatelli/valueobjects package
Installs: 151
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
pkg:composer/cubicmushroom/value-objects-bundle
Requires
- cubicmushroom/valueobjects: ^3.0
- symfony/symfony: ^2.7
Requires (Dev)
- phpspec/phpspec: ^2.3
- phpunit/phpunit: ^4.8
This package is auto-updated.
Last update: 2025-10-28 20:54:30 UTC
README
Symfony bundle to integrate value objects from the nicolopignatelli/valueobjects package
Usage instructions
- 
Install via composer... $ composer require cubicmushroom/value-objects-bundle {version}
- 
Register the bundle with Symfony in the app/AppKernel.phpfile...class AppKernel extends Kernel { public function registerBundles() { $bundles = [ // ... new \CubicMushroom\Symfony\ValueObjectsBundle\CMValueObjectsBundle(), // ... ]; } }
Which version do I use?
This Package's minor releases follow along with those of the Symfony framework, i.e. 2.7.x should be installed for Symfony 2.7.x projects, 2.8.x should be installed for Symfony 2.8.x projects, etc.