├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Cnab │ ├── Banco.php │ ├── CodigoCarteira.php │ ├── Especie.php │ ├── Factory.php │ ├── Format │ ├── Field.php │ ├── Identifier.php │ ├── Linha.php │ ├── Picture.php │ └── YamlLoad.php │ ├── Instrucao.php │ ├── Remessa │ ├── Cnab240 │ │ ├── Arquivo.php │ │ ├── Detalhe.php │ │ ├── HeaderArquivo.php │ │ ├── HeaderLote.php │ │ ├── SegmentoP.php │ │ ├── SegmentoQ.php │ │ ├── SegmentoR.php │ │ ├── TrailerArquivo.php │ │ └── TrailerLote.php │ ├── Cnab400 │ │ ├── Arquivo.php │ │ ├── Detalhe.php │ │ ├── DetalheMulta.php │ │ ├── Header.php │ │ └── Trailer.php │ └── IArquivo.php │ └── Retorno │ ├── Cnab240 │ ├── Arquivo.php │ ├── Detalhe.php │ ├── HeaderArquivo.php │ ├── HeaderLote.php │ ├── Lote.php │ ├── SegmentoT.php │ ├── SegmentoU.php │ ├── SegmentoW.php │ ├── TrailerArquivo.php │ └── TrailerLote.php │ ├── Cnab400 │ ├── Arquivo.php │ ├── Detalhe.php │ ├── Header.php │ └── Trailer.php │ ├── CodigoOcorrencia.php │ ├── IArquivo.php │ ├── IDetalhe.php │ └── Linha.php └── tests ├── Cnab ├── BancoTest.php ├── Format │ ├── LinhaTest.php │ ├── PictureTest.php │ └── YamlLoadTest.php ├── Remessa │ ├── Cnab240 │ │ ├── BancoDoBrasilTest.php │ │ └── CaixaTest.php │ └── Cnab400 │ │ └── ArquivoTest.php └── Retorno │ ├── Cnab240 │ └── ArquivoTest.php │ ├── Cnab400 │ └── ArquivoTest.php │ └── CodigoOcorrenciaTest.php ├── bootstrap.php ├── exemplo_gerar_teste.php └── fixtures ├── cnab240 ├── retorno_bb.ret ├── retorno_cnab240_caixa.ret └── retorno_santander.ret └── cnab400 ├── retorno-cb030400-bradesco.ret ├── retorno-cnab400-bb.ret └── retorno-cnab400-itau.ret /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Cnab/Banco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Banco.php -------------------------------------------------------------------------------- /src/Cnab/CodigoCarteira.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/CodigoCarteira.php -------------------------------------------------------------------------------- /src/Cnab/Especie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Especie.php -------------------------------------------------------------------------------- /src/Cnab/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Factory.php -------------------------------------------------------------------------------- /src/Cnab/Format/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Format/Field.php -------------------------------------------------------------------------------- /src/Cnab/Format/Identifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Format/Identifier.php -------------------------------------------------------------------------------- /src/Cnab/Format/Linha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Format/Linha.php -------------------------------------------------------------------------------- /src/Cnab/Format/Picture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Format/Picture.php -------------------------------------------------------------------------------- /src/Cnab/Format/YamlLoad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Format/YamlLoad.php -------------------------------------------------------------------------------- /src/Cnab/Instrucao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Instrucao.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Arquivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab240/Arquivo.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Detalhe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab240/Detalhe.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/HeaderArquivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab240/HeaderArquivo.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/HeaderLote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab240/HeaderLote.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/SegmentoP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab240/SegmentoP.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/SegmentoQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab240/SegmentoQ.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/SegmentoR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab240/SegmentoR.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/TrailerArquivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab240/TrailerArquivo.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/TrailerLote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab240/TrailerLote.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Arquivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab400/Arquivo.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Detalhe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab400/Detalhe.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/DetalheMulta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab400/DetalheMulta.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab400/Header.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Trailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/Cnab400/Trailer.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/IArquivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Remessa/IArquivo.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Arquivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab240/Arquivo.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Detalhe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab240/Detalhe.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/HeaderArquivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab240/HeaderArquivo.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/HeaderLote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab240/HeaderLote.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Lote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab240/Lote.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/SegmentoT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab240/SegmentoT.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/SegmentoU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab240/SegmentoU.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/SegmentoW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab240/SegmentoW.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/TrailerArquivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab240/TrailerArquivo.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/TrailerLote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab240/TrailerLote.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Arquivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab400/Arquivo.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Detalhe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab400/Detalhe.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab400/Header.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Trailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Cnab400/Trailer.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/CodigoOcorrencia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/CodigoOcorrencia.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/IArquivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/IArquivo.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/IDetalhe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/IDetalhe.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Linha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/src/Cnab/Retorno/Linha.php -------------------------------------------------------------------------------- /tests/Cnab/BancoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/Cnab/BancoTest.php -------------------------------------------------------------------------------- /tests/Cnab/Format/LinhaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/Cnab/Format/LinhaTest.php -------------------------------------------------------------------------------- /tests/Cnab/Format/PictureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/Cnab/Format/PictureTest.php -------------------------------------------------------------------------------- /tests/Cnab/Format/YamlLoadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/Cnab/Format/YamlLoadTest.php -------------------------------------------------------------------------------- /tests/Cnab/Remessa/Cnab240/BancoDoBrasilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/Cnab/Remessa/Cnab240/BancoDoBrasilTest.php -------------------------------------------------------------------------------- /tests/Cnab/Remessa/Cnab240/CaixaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/Cnab/Remessa/Cnab240/CaixaTest.php -------------------------------------------------------------------------------- /tests/Cnab/Remessa/Cnab400/ArquivoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/Cnab/Remessa/Cnab400/ArquivoTest.php -------------------------------------------------------------------------------- /tests/Cnab/Retorno/Cnab240/ArquivoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/Cnab/Retorno/Cnab240/ArquivoTest.php -------------------------------------------------------------------------------- /tests/Cnab/Retorno/Cnab400/ArquivoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/Cnab/Retorno/Cnab400/ArquivoTest.php -------------------------------------------------------------------------------- /tests/Cnab/Retorno/CodigoOcorrenciaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/Cnab/Retorno/CodigoOcorrenciaTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/exemplo_gerar_teste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/exemplo_gerar_teste.php -------------------------------------------------------------------------------- /tests/fixtures/cnab240/retorno_bb.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/fixtures/cnab240/retorno_bb.ret -------------------------------------------------------------------------------- /tests/fixtures/cnab240/retorno_cnab240_caixa.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/fixtures/cnab240/retorno_cnab240_caixa.ret -------------------------------------------------------------------------------- /tests/fixtures/cnab240/retorno_santander.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/fixtures/cnab240/retorno_santander.ret -------------------------------------------------------------------------------- /tests/fixtures/cnab400/retorno-cb030400-bradesco.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/fixtures/cnab400/retorno-cb030400-bradesco.ret -------------------------------------------------------------------------------- /tests/fixtures/cnab400/retorno-cnab400-bb.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/fixtures/cnab400/retorno-cnab400-bb.ret -------------------------------------------------------------------------------- /tests/fixtures/cnab400/retorno-cnab400-itau.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersondanilo/CnabPHP/HEAD/tests/fixtures/cnab400/retorno-cnab400-itau.ret --------------------------------------------------------------------------------