├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── COPYING ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── UrlCrypt │ └── UrlCrypt.php └── tests └── UrlCrypt └── UrlCryptTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | coverage 3 | .DS_Store 4 | vendor/ 5 | bin/ 6 | composer.lock 7 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrapalo/URLcrypt/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrapalo/URLcrypt/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrapalo/URLcrypt/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrapalo/URLcrypt/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrapalo/URLcrypt/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrapalo/URLcrypt/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/UrlCrypt/UrlCrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrapalo/URLcrypt/HEAD/src/UrlCrypt/UrlCrypt.php -------------------------------------------------------------------------------- /tests/UrlCrypt/UrlCryptTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrapalo/URLcrypt/HEAD/tests/UrlCrypt/UrlCryptTest.php --------------------------------------------------------------------------------