├── .github ├── tag.sh └── workflows │ ├── ci-cd-tag.yml │ └── ci-cd-tests.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── phpunit.xml.bak ├── src ├── Correios.php ├── Exceptions │ ├── ApiRequestException.php │ ├── InvalidCepException.php │ ├── InvalidCorreiosServiceCode.php │ ├── MissingProductParamException.php │ └── SameCepException.php ├── Helpers │ ├── Cep.php │ └── Settings.php ├── Includes │ ├── Cep.php │ ├── Product.php │ ├── Settings.php │ └── Traits │ │ └── CepHandler.php └── Services │ ├── AbstractRequest.php │ ├── Address │ └── Cep.php │ ├── Authorization │ └── Authentication.php │ ├── Date │ └── Date.php │ ├── Price │ └── Price.php │ └── Tracking │ └── Tracking.php └── tests ├── .gitkeep └── Unit ├── CorreiosTest.php ├── Helpers ├── CepTest.php └── SettingsTest.php ├── Includes ├── CepTest.php ├── ProductTest.php └── SettingsTest.php └── Services ├── Address └── CepTest.php ├── Authorization └── AuthenticationTest.php ├── Date └── DateTest.php ├── Price └── PriceTest.php └── Tracking └── TrackingTest.php /.github/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/.github/tag.sh -------------------------------------------------------------------------------- /.github/workflows/ci-cd-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/.github/workflows/ci-cd-tag.yml -------------------------------------------------------------------------------- /.github/workflows/ci-cd-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/.github/workflows/ci-cd-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /phpunit.xml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/phpunit.xml.bak -------------------------------------------------------------------------------- /src/Correios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Correios.php -------------------------------------------------------------------------------- /src/Exceptions/ApiRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Exceptions/ApiRequestException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidCepException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Exceptions/InvalidCepException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidCorreiosServiceCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Exceptions/InvalidCorreiosServiceCode.php -------------------------------------------------------------------------------- /src/Exceptions/MissingProductParamException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Exceptions/MissingProductParamException.php -------------------------------------------------------------------------------- /src/Exceptions/SameCepException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Exceptions/SameCepException.php -------------------------------------------------------------------------------- /src/Helpers/Cep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Helpers/Cep.php -------------------------------------------------------------------------------- /src/Helpers/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Helpers/Settings.php -------------------------------------------------------------------------------- /src/Includes/Cep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Includes/Cep.php -------------------------------------------------------------------------------- /src/Includes/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Includes/Product.php -------------------------------------------------------------------------------- /src/Includes/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Includes/Settings.php -------------------------------------------------------------------------------- /src/Includes/Traits/CepHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Includes/Traits/CepHandler.php -------------------------------------------------------------------------------- /src/Services/AbstractRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Services/AbstractRequest.php -------------------------------------------------------------------------------- /src/Services/Address/Cep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Services/Address/Cep.php -------------------------------------------------------------------------------- /src/Services/Authorization/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Services/Authorization/Authentication.php -------------------------------------------------------------------------------- /src/Services/Date/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Services/Date/Date.php -------------------------------------------------------------------------------- /src/Services/Price/Price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Services/Price/Price.php -------------------------------------------------------------------------------- /src/Services/Tracking/Tracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/src/Services/Tracking/Tracking.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Unit/CorreiosTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/CorreiosTest.php -------------------------------------------------------------------------------- /tests/Unit/Helpers/CepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/Helpers/CepTest.php -------------------------------------------------------------------------------- /tests/Unit/Helpers/SettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/Helpers/SettingsTest.php -------------------------------------------------------------------------------- /tests/Unit/Includes/CepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/Includes/CepTest.php -------------------------------------------------------------------------------- /tests/Unit/Includes/ProductTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/Includes/ProductTest.php -------------------------------------------------------------------------------- /tests/Unit/Includes/SettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/Includes/SettingsTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/Address/CepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/Services/Address/CepTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/Authorization/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/Services/Authorization/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/Date/DateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/Services/Date/DateTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/Price/PriceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/Services/Price/PriceTest.php -------------------------------------------------------------------------------- /tests/Unit/Services/Tracking/TrackingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devaguia/correios-php/HEAD/tests/Unit/Services/Tracking/TrackingTest.php --------------------------------------------------------------------------------