├── .github └── FUNDING.yml ├── .gitignore ├── .htaccess ├── Api ├── Correios.php ├── CorreiosService.php ├── obj.php └── siglas_rastreio.json ├── Docs └── api_correios.postman_collection.json ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── config.php └── index.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [luannsr12] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/.htaccess -------------------------------------------------------------------------------- /Api/Correios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/Api/Correios.php -------------------------------------------------------------------------------- /Api/CorreiosService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/Api/CorreiosService.php -------------------------------------------------------------------------------- /Api/obj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/Api/obj.php -------------------------------------------------------------------------------- /Api/siglas_rastreio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/Api/siglas_rastreio.json -------------------------------------------------------------------------------- /Docs/api_correios.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/Docs/api_correios.postman_collection.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/composer.lock -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/config.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luannsr12/api-correios/HEAD/index.php --------------------------------------------------------------------------------