├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Helpers │ ├── ReceitaFederal.php │ └── Sintegra.php ├── Laravel │ ├── ReceitaFederalFacade.php │ ├── ServicesProvider.php │ └── SintegraFacade.php ├── Miscellany │ ├── ClientHttp.php │ ├── Curl.php │ ├── Exceptions │ │ ├── ErrorFoundData.php │ │ ├── ImageNotFound.php │ │ ├── InvalidCaptcha.php │ │ ├── InvalidInputs.php │ │ ├── InvalidService.php │ │ ├── NoCaptchaResponse.php │ │ ├── NoSelectorsConfigured.php │ │ ├── NoServiceCall.php │ │ └── NoServiceResponse.php │ ├── Image.php │ └── Interfaces │ │ ├── CrawlerInterface.php │ │ ├── SearchInterface.php │ │ └── ServiceInterface.php ├── ReceitaFederal │ ├── Search.php │ └── Services │ │ └── Portais │ │ └── AN │ │ ├── Crawler.php │ │ ├── Search.php │ │ └── Service.php └── Sintegra │ ├── Search.php │ └── Services │ └── Portais │ └── SP │ ├── Crawler.php │ ├── Search.php │ └── Service.php └── tests ├── ReceitaFederal └── AN │ ├── data.html │ ├── testConfigureService.php │ ├── testCrawlerHtmlData.php │ ├── testGetCaptcha.php │ ├── testGetCookie.php │ ├── testGetParams.php │ ├── testHelpers.php │ └── testInvalidCaptcha.php ├── Sintegra └── SP │ ├── data.html │ ├── testConfigureService.php │ ├── testCrawlerHtmlData.php │ ├── testGetCaptcha.php │ ├── testGetCookie.php │ ├── testGetParams.php │ ├── testHelpers.php │ └── testInvalidSequenceRequest.php └── TestCase.php /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Helpers/ReceitaFederal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Helpers/ReceitaFederal.php -------------------------------------------------------------------------------- /src/Helpers/Sintegra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Helpers/Sintegra.php -------------------------------------------------------------------------------- /src/Laravel/ReceitaFederalFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Laravel/ReceitaFederalFacade.php -------------------------------------------------------------------------------- /src/Laravel/ServicesProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Laravel/ServicesProvider.php -------------------------------------------------------------------------------- /src/Laravel/SintegraFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Laravel/SintegraFacade.php -------------------------------------------------------------------------------- /src/Miscellany/ClientHttp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/ClientHttp.php -------------------------------------------------------------------------------- /src/Miscellany/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/Curl.php -------------------------------------------------------------------------------- /src/Miscellany/Exceptions/ErrorFoundData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/Exceptions/ErrorFoundData.php -------------------------------------------------------------------------------- /src/Miscellany/Exceptions/ImageNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/Exceptions/ImageNotFound.php -------------------------------------------------------------------------------- /src/Miscellany/Exceptions/InvalidCaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/Exceptions/InvalidCaptcha.php -------------------------------------------------------------------------------- /src/Miscellany/Exceptions/InvalidInputs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/Exceptions/InvalidInputs.php -------------------------------------------------------------------------------- /src/Miscellany/Exceptions/InvalidService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/Exceptions/InvalidService.php -------------------------------------------------------------------------------- /src/Miscellany/Exceptions/NoCaptchaResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/Exceptions/NoCaptchaResponse.php -------------------------------------------------------------------------------- /src/Miscellany/Exceptions/NoSelectorsConfigured.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/Exceptions/NoSelectorsConfigured.php -------------------------------------------------------------------------------- /src/Miscellany/Exceptions/NoServiceCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/Exceptions/NoServiceCall.php -------------------------------------------------------------------------------- /src/Miscellany/Exceptions/NoServiceResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorb2ss/zServices/HEAD/src/Miscellany/Exceptions/NoServiceResponse.php -------------------------------------------------------------------------------- /src/Miscellany/Image.php: -------------------------------------------------------------------------------- 1 |