stratdes / vo
Generic ValueObjects library
Installs: 4 688
Dependents: 2
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: >=8.0
- ramsey/uuid: >=3.9.3
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2025-03-29 00:50:51 UTC
README
StraTDeS VO library
StraTDeS VO is a library containing some standard value objects ready to use.
Installation
To install the library just run:
composer require stratdes/vo
Usage
Using this library is quite straightforward. All the Value Objects have a named constructor, usually create or fromValue.
Some examples:
use StraTDeS\VO\Single\Currency; use StraTDeS\VO\Single\Money; use StraTDeS\VO\Single\Name; use StraTDeS\VO\Single\Description; use StraTDeS\VO\Single\PhoneNumber; $name = Name::fromValue("John Smith"); $description = Description::fromValue("This is a description"); $money = Money::create( 20034, Currency::fromValue(Currency::USD) ); $phoneNumber = PhoneNumber::create("34", "938140000");
You can use collections, also. For example, for a collection of Emails, you have:
use StraTDeS\VO\Collection\EmailCollection; use StraTDeS\VO\Single\Email; $emailCollection = EmailCollection::create(); $emailCollection->add(Email::fromValue('email1@mail.com')); $emailCollection->add(Email::fromValue('email2@mail.com')); $emailCollection->add(Email::fromValue('email3@mail.com')); foreach($emailCollection as $email) { echo $email->value() . "\n\r"; }
Issues
If you find some issue in the library, please feel free to open an issue here on Github.