├── .codeclimate.yml ├── .github ├── CHANGELOG.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .styleci.yml ├── README.md ├── composer.json ├── phpunit.xml ├── src └── bubbstore │ └── Correios │ ├── CorreiosQuote.php │ ├── CorreiosTracking.php │ ├── Exceptions │ ├── CorreiosQuoteException.php │ ├── CorreiosTrackingException.php │ └── ZipcodeException.php │ └── Zipcode.php └── tests └── CorreiosTest.php /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.github/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/.github/CHANGELOG.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | .DS_Store 3 | vendor 4 | index.php 5 | build -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/bubbstore/Correios/CorreiosQuote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/src/bubbstore/Correios/CorreiosQuote.php -------------------------------------------------------------------------------- /src/bubbstore/Correios/CorreiosTracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/src/bubbstore/Correios/CorreiosTracking.php -------------------------------------------------------------------------------- /src/bubbstore/Correios/Exceptions/CorreiosQuoteException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/src/bubbstore/Correios/Exceptions/CorreiosQuoteException.php -------------------------------------------------------------------------------- /src/bubbstore/Correios/Exceptions/CorreiosTrackingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/src/bubbstore/Correios/Exceptions/CorreiosTrackingException.php -------------------------------------------------------------------------------- /src/bubbstore/Correios/Exceptions/ZipcodeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/src/bubbstore/Correios/Exceptions/ZipcodeException.php -------------------------------------------------------------------------------- /src/bubbstore/Correios/Zipcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/src/bubbstore/Correios/Zipcode.php -------------------------------------------------------------------------------- /tests/CorreiosTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bubbstore/correios/HEAD/tests/CorreiosTest.php --------------------------------------------------------------------------------