├── .github └── workflows │ └── ci.yml ├── .sensiolabs.yml ├── CHANGELOG.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── VERSION.txt ├── bootstrap.php ├── composer.json ├── phpcs.xml ├── phpstan-baseline.neon ├── phpstan.neon └── src ├── Ibpt.php ├── Rest.php └── RestInterface.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfephp-org/sped-ibpt/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.sensiolabs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfephp-org/sped-ibpt/HEAD/.sensiolabs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfephp-org/sped-ibpt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfephp-org/sped-ibpt/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfephp-org/sped-ibpt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfephp-org/sped-ibpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfephp-org/sped-ibpt/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.0.x-dev -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- 1 |