├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── code │ └── community │ │ └── PedroTeixeira │ │ └── Correios │ │ ├── Block │ │ └── Adminhtml │ │ │ └── System │ │ │ └── Config │ │ │ └── Form │ │ │ └── Button.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Cache.php │ │ ├── Carrier │ │ │ └── CorreiosMethod.php │ │ ├── Http │ │ │ └── Client │ │ │ │ └── Adapter │ │ │ │ └── Socket.php │ │ ├── Observer.php │ │ ├── Postmethod.php │ │ ├── Resource │ │ │ ├── Postmethod.php │ │ │ └── Postmethod │ │ │ │ └── Collection.php │ │ ├── Sigepweb.php │ │ ├── Source │ │ │ ├── CacheMode.php │ │ │ ├── PostMethods.php │ │ │ └── WeightType.php │ │ ├── Sro.php │ │ └── Sro │ │ │ ├── Object.php │ │ │ └── Object │ │ │ └── Collection.php │ │ ├── controllers │ │ └── Adminhtml │ │ │ └── SigepwebController.php │ │ ├── etc │ │ ├── config.xml │ │ └── system.xml │ │ └── sql │ │ └── pedroteixeira_correios_setup │ │ ├── install-4.0.0.php │ │ ├── install-4.4.0.php │ │ ├── install-4.5.0.php │ │ ├── install-4.6.0.php │ │ ├── install-4.7.0.php │ │ ├── install-4.8.0.php │ │ ├── install-4.8.1.php │ │ ├── install-4.9.0.php │ │ ├── upgrade-4.0.0-4.1.0.php │ │ ├── upgrade-4.1.0-4.2.0.php │ │ ├── upgrade-4.2.0-4.3.0.php │ │ ├── upgrade-4.3.0-4.4.0.php │ │ ├── upgrade-4.4.0-4.5.0.php │ │ ├── upgrade-4.5.0-4.6.0.php │ │ ├── upgrade-4.6.0-4.7.0.php │ │ ├── upgrade-4.7.0-4.7.1.php │ │ ├── upgrade-4.7.1-4.7.2.php │ │ ├── upgrade-4.7.2-4.8.0.php │ │ ├── upgrade-4.8.0-4.8.1.php │ │ └── upgrade-4.8.1-4.9.0.php ├── etc │ └── modules │ │ └── PedroTeixeira_Correios.xml └── locale │ └── pt_BR │ └── PedroTeixeira_Correios.csv ├── composer.json ├── composer.lock ├── lib └── Correios │ ├── Rastro.php │ └── Rastro │ ├── BuscaEventos.php │ ├── BuscaEventosLista.php │ ├── BuscaEventosListaResponse.php │ ├── BuscaEventosResponse.php │ ├── Destinos.php │ ├── EnderecoMobile.php │ ├── Eventos.php │ ├── Objeto.php │ └── Sroxml.php ├── modman └── ruleset.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /bin/ 3 | /composer.phar 4 | .idea/ 5 | .DS_Store -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Block/Adminhtml/System/Config/Form/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Block/Adminhtml/System/Config/Form/Button.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Cache.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Carrier/CorreiosMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Carrier/CorreiosMethod.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Http/Client/Adapter/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Http/Client/Adapter/Socket.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Postmethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Postmethod.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Resource/Postmethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Resource/Postmethod.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Resource/Postmethod/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Resource/Postmethod/Collection.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Sigepweb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Sigepweb.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Source/CacheMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Source/CacheMode.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Source/PostMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Source/PostMethods.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Source/WeightType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Source/WeightType.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Sro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Sro.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Sro/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Sro/Object.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/Model/Sro/Object/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/Model/Sro/Object/Collection.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/controllers/Adminhtml/SigepwebController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/controllers/Adminhtml/SigepwebController.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/etc/system.xml -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.0.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.0.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.4.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.4.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.5.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.5.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.6.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.6.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.7.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.7.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.8.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.8.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.8.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.8.1.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.9.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/install-4.9.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.0.0-4.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.0.0-4.1.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.1.0-4.2.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.1.0-4.2.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.2.0-4.3.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.2.0-4.3.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.3.0-4.4.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.3.0-4.4.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.4.0-4.5.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.4.0-4.5.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.5.0-4.6.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.5.0-4.6.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.6.0-4.7.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.6.0-4.7.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.7.0-4.7.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.7.0-4.7.1.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.7.1-4.7.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.7.1-4.7.2.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.7.2-4.8.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.7.2-4.8.0.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.8.0-4.8.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.8.0-4.8.1.php -------------------------------------------------------------------------------- /app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.8.1-4.9.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/code/community/PedroTeixeira/Correios/sql/pedroteixeira_correios_setup/upgrade-4.8.1-4.9.0.php -------------------------------------------------------------------------------- /app/etc/modules/PedroTeixeira_Correios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/etc/modules/PedroTeixeira_Correios.xml -------------------------------------------------------------------------------- /app/locale/pt_BR/PedroTeixeira_Correios.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/app/locale/pt_BR/PedroTeixeira_Correios.csv -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/composer.lock -------------------------------------------------------------------------------- /lib/Correios/Rastro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/lib/Correios/Rastro.php -------------------------------------------------------------------------------- /lib/Correios/Rastro/BuscaEventos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/lib/Correios/Rastro/BuscaEventos.php -------------------------------------------------------------------------------- /lib/Correios/Rastro/BuscaEventosLista.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/lib/Correios/Rastro/BuscaEventosLista.php -------------------------------------------------------------------------------- /lib/Correios/Rastro/BuscaEventosListaResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/lib/Correios/Rastro/BuscaEventosListaResponse.php -------------------------------------------------------------------------------- /lib/Correios/Rastro/BuscaEventosResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/lib/Correios/Rastro/BuscaEventosResponse.php -------------------------------------------------------------------------------- /lib/Correios/Rastro/Destinos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/lib/Correios/Rastro/Destinos.php -------------------------------------------------------------------------------- /lib/Correios/Rastro/EnderecoMobile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/lib/Correios/Rastro/EnderecoMobile.php -------------------------------------------------------------------------------- /lib/Correios/Rastro/Eventos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/lib/Correios/Rastro/Eventos.php -------------------------------------------------------------------------------- /lib/Correios/Rastro/Objeto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/lib/Correios/Rastro/Objeto.php -------------------------------------------------------------------------------- /lib/Correios/Rastro/Sroxml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/lib/Correios/Rastro/Sroxml.php -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/modman -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedro-teixeira/correios/HEAD/ruleset.xml --------------------------------------------------------------------------------