├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── ArrayAssertions.php ├── CountryAssertions.php ├── EmailAssertions.php ├── GeographicAssertions.php ├── HashidAssertions.php ├── LanguageAssertions.php ├── Laravel ├── BladeAssertions.php ├── CollectionAssertions.php ├── HashidAssertions.php └── ModelAssertions.php ├── NullableTypeAssertions.php ├── PathAssertions.php ├── PhoneNumberAssertions.php ├── StringLengthAssertions.php ├── UrlAssertions.php └── UuidAssertions.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | /.phpunit.result.cache -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/composer.json -------------------------------------------------------------------------------- /src/ArrayAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/ArrayAssertions.php -------------------------------------------------------------------------------- /src/CountryAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/CountryAssertions.php -------------------------------------------------------------------------------- /src/EmailAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/EmailAssertions.php -------------------------------------------------------------------------------- /src/GeographicAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/GeographicAssertions.php -------------------------------------------------------------------------------- /src/HashidAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/HashidAssertions.php -------------------------------------------------------------------------------- /src/LanguageAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/LanguageAssertions.php -------------------------------------------------------------------------------- /src/Laravel/BladeAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/Laravel/BladeAssertions.php -------------------------------------------------------------------------------- /src/Laravel/CollectionAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/Laravel/CollectionAssertions.php -------------------------------------------------------------------------------- /src/Laravel/HashidAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/Laravel/HashidAssertions.php -------------------------------------------------------------------------------- /src/Laravel/ModelAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/Laravel/ModelAssertions.php -------------------------------------------------------------------------------- /src/NullableTypeAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/NullableTypeAssertions.php -------------------------------------------------------------------------------- /src/PathAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/PathAssertions.php -------------------------------------------------------------------------------- /src/PhoneNumberAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/PhoneNumberAssertions.php -------------------------------------------------------------------------------- /src/StringLengthAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/StringLengthAssertions.php -------------------------------------------------------------------------------- /src/UrlAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/UrlAssertions.php -------------------------------------------------------------------------------- /src/UuidAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astrotomic/phpunit-assertions/HEAD/src/UuidAssertions.php --------------------------------------------------------------------------------