├── .gitattributes ├── .gitignore ├── README.md ├── composer.json ├── src ├── Clients │ ├── Client.php │ ├── CurlClient.php │ └── GuzzleClient.php ├── Helpers │ └── Helper.php ├── Interfaces │ ├── Arrayable.php │ └── Xmlable.php ├── Models │ ├── Nota.php │ ├── NotaCabecalho.php │ ├── NotaItem.php │ └── NotaItens.php ├── Services │ ├── Autenticacao.php │ ├── BaseService.php │ ├── CacSp.php │ └── DbExplorerSp.php ├── SwServiceInvoker.php └── Traits │ ├── JsonRequest.php │ └── XmlRequest.php └── tests └── test.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/Clients/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Clients/Client.php -------------------------------------------------------------------------------- /src/Clients/CurlClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Clients/CurlClient.php -------------------------------------------------------------------------------- /src/Clients/GuzzleClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Clients/GuzzleClient.php -------------------------------------------------------------------------------- /src/Helpers/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Helpers/Helper.php -------------------------------------------------------------------------------- /src/Interfaces/Arrayable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Interfaces/Arrayable.php -------------------------------------------------------------------------------- /src/Interfaces/Xmlable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Interfaces/Xmlable.php -------------------------------------------------------------------------------- /src/Models/Nota.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Models/Nota.php -------------------------------------------------------------------------------- /src/Models/NotaCabecalho.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Models/NotaCabecalho.php -------------------------------------------------------------------------------- /src/Models/NotaItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Models/NotaItem.php -------------------------------------------------------------------------------- /src/Models/NotaItens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Models/NotaItens.php -------------------------------------------------------------------------------- /src/Services/Autenticacao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Services/Autenticacao.php -------------------------------------------------------------------------------- /src/Services/BaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Services/BaseService.php -------------------------------------------------------------------------------- /src/Services/CacSp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Services/CacSp.php -------------------------------------------------------------------------------- /src/Services/DbExplorerSp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Services/DbExplorerSp.php -------------------------------------------------------------------------------- /src/SwServiceInvoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/SwServiceInvoker.php -------------------------------------------------------------------------------- /src/Traits/JsonRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Traits/JsonRequest.php -------------------------------------------------------------------------------- /src/Traits/XmlRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/src/Traits/XmlRequest.php -------------------------------------------------------------------------------- /tests/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillyMaciel/sankhya-php/HEAD/tests/test.php --------------------------------------------------------------------------------