eihmels / integer-value-objects
some Value Objects
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:libary
Requires
- php: ^7.4
- beberlei/assert: ^3.3
- slevomat/coding-standard: ^6.4
- tm/tooly-composer-script: ^1.4
This package is auto-updated.
Last update: 2025-03-24 00:52:46 UTC
README
inspired by https://martinfowler.com/bliki/ValueObject.html
In this Package there are a bunch of Integer Value Objects with some validations. you can inherit this base Values to adapt it to your wishes.
Install
composer require eihmels/integer-value-objects
ValueObjects
all Value Objects Inherite from NumberInterface. In this Interface are some basic functions defined. take a look into src/NumberInterface.php.
You are not allowed to change the values after initializing.
Basic Integer
src/Integer.php
example:
$one = Integer:create(1);
Natural Number
src/NaturalNumber.php
A natural Number is a Positive Integer.
example:
$one = NaturalNumber:create(1);
0 isn't a valid NaturalNumber. if you define 0 to natural numbers use NaturalNumbersWithNull.
example:
$null = NaturalNumberWithNull:create(0);
Codequality Tools
run phpUnit
php ./vendor/bin/phpunit.phar --configuration ./phpunit.xml
php ./vendor/bin/phpunit.phar --coverage-html ./coverage-report
run phpstan
php ./vendor/bin/phpcs.phar --standard=./ruleset.xml ./src/*/
php ./vendor/bin/phpcs.phar --standard=./ruleset.xml ./tests/*
run phpstan
php ./vendor/bin/phpstan.phar analyse -l max ./src/