├── .circleci └── config.yml ├── .editorconfig ├── .github ├── CHANGELOG.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── LICENSE.md ├── Makefile ├── README.md ├── codecov.yml ├── composer.json ├── phpunit.xml └── src ├── Client.php ├── Contracts ├── FreightInterface.php └── ZipCodeInterface.php ├── PackageType.php ├── Service.php ├── Services ├── Freight.php └── ZipCode.php └── WebService.php /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/.github/CHANGELOG.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/codecov.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Contracts/FreightInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/src/Contracts/FreightInterface.php -------------------------------------------------------------------------------- /src/Contracts/ZipCodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/src/Contracts/ZipCodeInterface.php -------------------------------------------------------------------------------- /src/PackageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/src/PackageType.php -------------------------------------------------------------------------------- /src/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/src/Service.php -------------------------------------------------------------------------------- /src/Services/Freight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/src/Services/Freight.php -------------------------------------------------------------------------------- /src/Services/ZipCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/src/Services/ZipCode.php -------------------------------------------------------------------------------- /src/WebService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingluscas/correios-php/HEAD/src/WebService.php --------------------------------------------------------------------------------