├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── docs └── Color.md ├── doctrine └── mapping │ └── Money.Money.php ├── phpunit.xml ├── src ├── Color.php ├── DateRange.php ├── EmailAddress.php ├── FullName.php ├── GeoPoint.php ├── IpAddress.php └── IpRange.php └── tests ├── ColorTest.php ├── DateRangeTest.php ├── EmailAddressTest.php ├── FullNameTest.php ├── GeoPointTest.php ├── IpAddressTest.php └── IpRangeTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/Color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/docs/Color.md -------------------------------------------------------------------------------- /doctrine/mapping/Money.Money.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/doctrine/mapping/Money.Money.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/src/Color.php -------------------------------------------------------------------------------- /src/DateRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/src/DateRange.php -------------------------------------------------------------------------------- /src/EmailAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/src/EmailAddress.php -------------------------------------------------------------------------------- /src/FullName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/src/FullName.php -------------------------------------------------------------------------------- /src/GeoPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/src/GeoPoint.php -------------------------------------------------------------------------------- /src/IpAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/src/IpAddress.php -------------------------------------------------------------------------------- /src/IpRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/src/IpRange.php -------------------------------------------------------------------------------- /tests/ColorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/tests/ColorTest.php -------------------------------------------------------------------------------- /tests/DateRangeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/tests/DateRangeTest.php -------------------------------------------------------------------------------- /tests/EmailAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/tests/EmailAddressTest.php -------------------------------------------------------------------------------- /tests/FullNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/tests/FullNameTest.php -------------------------------------------------------------------------------- /tests/GeoPointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/tests/GeoPointTest.php -------------------------------------------------------------------------------- /tests/IpAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/tests/IpAddressTest.php -------------------------------------------------------------------------------- /tests/IpRangeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biberlabs/ddd-embeddables/HEAD/tests/IpRangeTest.php --------------------------------------------------------------------------------