├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Exceptions │ ├── IsEmpty.php │ └── IsNull.php ├── Helper.php └── Jusibe.php └── tests └── JusibeTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Exceptions/IsEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/src/Exceptions/IsEmpty.php -------------------------------------------------------------------------------- /src/Exceptions/IsNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/src/Exceptions/IsNull.php -------------------------------------------------------------------------------- /src/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/src/Helper.php -------------------------------------------------------------------------------- /src/Jusibe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/src/Jusibe.php -------------------------------------------------------------------------------- /tests/JusibeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicodeveloper/jusibe-php-lib/HEAD/tests/JusibeTest.php --------------------------------------------------------------------------------