├── .gitignore ├── README.md ├── composer.json ├── phpunit.xml └── src └── BUBB └── Correios ├── CorreiosQuote.php ├── CorreiosTracking.php ├── Exceptions ├── CorreiosQuoteException.php ├── CorreiosTrackingException.php └── ZipcodeException.php └── Zipcode.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | .DS_Store 3 | vendor 4 | index.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbwebstudio/bubb-correios/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbwebstudio/bubb-correios/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BUBB/Correios/CorreiosQuote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbwebstudio/bubb-correios/HEAD/src/BUBB/Correios/CorreiosQuote.php -------------------------------------------------------------------------------- /src/BUBB/Correios/CorreiosTracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbwebstudio/bubb-correios/HEAD/src/BUBB/Correios/CorreiosTracking.php -------------------------------------------------------------------------------- /src/BUBB/Correios/Exceptions/CorreiosQuoteException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbwebstudio/bubb-correios/HEAD/src/BUBB/Correios/Exceptions/CorreiosQuoteException.php -------------------------------------------------------------------------------- /src/BUBB/Correios/Exceptions/CorreiosTrackingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbwebstudio/bubb-correios/HEAD/src/BUBB/Correios/Exceptions/CorreiosTrackingException.php -------------------------------------------------------------------------------- /src/BUBB/Correios/Exceptions/ZipcodeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbwebstudio/bubb-correios/HEAD/src/BUBB/Correios/Exceptions/ZipcodeException.php -------------------------------------------------------------------------------- /src/BUBB/Correios/Zipcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbwebstudio/bubb-correios/HEAD/src/BUBB/Correios/Zipcode.php --------------------------------------------------------------------------------