├── .editorconfig ├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── composer.lock ├── phpcs.xml ├── phpunit.xml ├── src ├── Pimaco.php ├── Tag.php └── Tags │ ├── Barcode.php │ ├── Img.php │ ├── P.php │ └── QrCode.php ├── templates ├── 3080.json ├── 3081.json ├── 3082.json ├── 3180.json ├── 3181.json ├── 3182.json ├── 5580A.json ├── 5580M.json ├── 5580V.json ├── 6080.json ├── 6081.json ├── 6082.json ├── 6083.json ├── 6084.json ├── 6085.json ├── 6086.json ├── 6087.json ├── 6088.json ├── 6089.json ├── 6092.json ├── 6093.json ├── 6094.json ├── 6095.json ├── 6180.json ├── 6181.json ├── 6182.json ├── 6183.json ├── 6184.json ├── 6185.json ├── 6187.json ├── 62580.json ├── 62581.json ├── 62582.json ├── 6280.json ├── 6281.json ├── 6282.json ├── 6283.json ├── 6284.json ├── 6285.json ├── 6286.json ├── 6287.json ├── 6288.json ├── 6293.json ├── 7088.json ├── 7089.json ├── 7188.json ├── 8096.json ├── 8098.json ├── 8099F.json ├── 8099L.json ├── 8196.json ├── 8296.json ├── A4048.json ├── A4049.json ├── A4050.json ├── A4051.json ├── A4054.json ├── A4054R.json ├── A4055.json ├── A4056.json ├── A4056R.json ├── A4060.json ├── A4062.json ├── A4063.json ├── A4063R.json ├── A4067.json ├── A4248.json ├── A4249.json ├── A4250.json ├── A4251.json ├── A4254.json ├── A4255.json ├── A4256.json ├── A4260.json ├── A4261.json ├── A4262.json ├── A4263.json ├── A4264.json ├── A4265.json ├── A4267.json ├── A4268.json ├── A4348.json ├── A4349.json ├── A4350.json ├── A4351.json ├── A4354.json ├── A4355.json ├── A4356.json ├── A4360.json ├── A4361.json ├── A4362.json ├── A4363.json ├── A4364.json ├── A4365.json ├── A4367.json ├── A4368.json └── BOOP100x40.json └── tests ├── src ├── PimacoTest.php ├── TagTest.php └── Tags │ ├── ImgTest.php │ └── PTest.php ├── templates ├── teste.json └── teste2.json └── teste.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .idea/ 3 | example/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/composer.lock -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Pimaco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/src/Pimaco.php -------------------------------------------------------------------------------- /src/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/src/Tag.php -------------------------------------------------------------------------------- /src/Tags/Barcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/src/Tags/Barcode.php -------------------------------------------------------------------------------- /src/Tags/Img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/src/Tags/Img.php -------------------------------------------------------------------------------- /src/Tags/P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/src/Tags/P.php -------------------------------------------------------------------------------- /src/Tags/QrCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/src/Tags/QrCode.php -------------------------------------------------------------------------------- /templates/3080.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/3080.json -------------------------------------------------------------------------------- /templates/3081.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/3081.json -------------------------------------------------------------------------------- /templates/3082.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/3082.json -------------------------------------------------------------------------------- /templates/3180.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/3180.json -------------------------------------------------------------------------------- /templates/3181.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/3181.json -------------------------------------------------------------------------------- /templates/3182.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/3182.json -------------------------------------------------------------------------------- /templates/5580A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/5580A.json -------------------------------------------------------------------------------- /templates/5580M.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/5580M.json -------------------------------------------------------------------------------- /templates/5580V.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/5580V.json -------------------------------------------------------------------------------- /templates/6080.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6080.json -------------------------------------------------------------------------------- /templates/6081.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6081.json -------------------------------------------------------------------------------- /templates/6082.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6082.json -------------------------------------------------------------------------------- /templates/6083.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6083.json -------------------------------------------------------------------------------- /templates/6084.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6084.json -------------------------------------------------------------------------------- /templates/6085.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6085.json -------------------------------------------------------------------------------- /templates/6086.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6086.json -------------------------------------------------------------------------------- /templates/6087.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6087.json -------------------------------------------------------------------------------- /templates/6088.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6088.json -------------------------------------------------------------------------------- /templates/6089.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6089.json -------------------------------------------------------------------------------- /templates/6092.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6092.json -------------------------------------------------------------------------------- /templates/6093.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6093.json -------------------------------------------------------------------------------- /templates/6094.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6094.json -------------------------------------------------------------------------------- /templates/6095.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6095.json -------------------------------------------------------------------------------- /templates/6180.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6180.json -------------------------------------------------------------------------------- /templates/6181.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6181.json -------------------------------------------------------------------------------- /templates/6182.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6182.json -------------------------------------------------------------------------------- /templates/6183.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6183.json -------------------------------------------------------------------------------- /templates/6184.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6184.json -------------------------------------------------------------------------------- /templates/6185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6185.json -------------------------------------------------------------------------------- /templates/6187.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6187.json -------------------------------------------------------------------------------- /templates/62580.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/62580.json -------------------------------------------------------------------------------- /templates/62581.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/62581.json -------------------------------------------------------------------------------- /templates/62582.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/62582.json -------------------------------------------------------------------------------- /templates/6280.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6280.json -------------------------------------------------------------------------------- /templates/6281.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6281.json -------------------------------------------------------------------------------- /templates/6282.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6282.json -------------------------------------------------------------------------------- /templates/6283.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6283.json -------------------------------------------------------------------------------- /templates/6284.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6284.json -------------------------------------------------------------------------------- /templates/6285.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6285.json -------------------------------------------------------------------------------- /templates/6286.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6286.json -------------------------------------------------------------------------------- /templates/6287.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6287.json -------------------------------------------------------------------------------- /templates/6288.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6288.json -------------------------------------------------------------------------------- /templates/6293.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/6293.json -------------------------------------------------------------------------------- /templates/7088.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/7088.json -------------------------------------------------------------------------------- /templates/7089.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/7089.json -------------------------------------------------------------------------------- /templates/7188.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/7188.json -------------------------------------------------------------------------------- /templates/8096.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/8096.json -------------------------------------------------------------------------------- /templates/8098.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/8098.json -------------------------------------------------------------------------------- /templates/8099F.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/8099F.json -------------------------------------------------------------------------------- /templates/8099L.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/8099L.json -------------------------------------------------------------------------------- /templates/8196.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/8196.json -------------------------------------------------------------------------------- /templates/8296.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/8296.json -------------------------------------------------------------------------------- /templates/A4048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4048.json -------------------------------------------------------------------------------- /templates/A4049.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4049.json -------------------------------------------------------------------------------- /templates/A4050.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4050.json -------------------------------------------------------------------------------- /templates/A4051.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4051.json -------------------------------------------------------------------------------- /templates/A4054.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4054.json -------------------------------------------------------------------------------- /templates/A4054R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4054R.json -------------------------------------------------------------------------------- /templates/A4055.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4055.json -------------------------------------------------------------------------------- /templates/A4056.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4056.json -------------------------------------------------------------------------------- /templates/A4056R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4056R.json -------------------------------------------------------------------------------- /templates/A4060.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4060.json -------------------------------------------------------------------------------- /templates/A4062.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4062.json -------------------------------------------------------------------------------- /templates/A4063.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4063.json -------------------------------------------------------------------------------- /templates/A4063R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4063R.json -------------------------------------------------------------------------------- /templates/A4067.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4067.json -------------------------------------------------------------------------------- /templates/A4248.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4248.json -------------------------------------------------------------------------------- /templates/A4249.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4249.json -------------------------------------------------------------------------------- /templates/A4250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4250.json -------------------------------------------------------------------------------- /templates/A4251.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4251.json -------------------------------------------------------------------------------- /templates/A4254.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4254.json -------------------------------------------------------------------------------- /templates/A4255.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4255.json -------------------------------------------------------------------------------- /templates/A4256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4256.json -------------------------------------------------------------------------------- /templates/A4260.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4260.json -------------------------------------------------------------------------------- /templates/A4261.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4261.json -------------------------------------------------------------------------------- /templates/A4262.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4262.json -------------------------------------------------------------------------------- /templates/A4263.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4263.json -------------------------------------------------------------------------------- /templates/A4264.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4264.json -------------------------------------------------------------------------------- /templates/A4265.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4265.json -------------------------------------------------------------------------------- /templates/A4267.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4267.json -------------------------------------------------------------------------------- /templates/A4268.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4268.json -------------------------------------------------------------------------------- /templates/A4348.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4348.json -------------------------------------------------------------------------------- /templates/A4349.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4349.json -------------------------------------------------------------------------------- /templates/A4350.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4350.json -------------------------------------------------------------------------------- /templates/A4351.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4351.json -------------------------------------------------------------------------------- /templates/A4354.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4354.json -------------------------------------------------------------------------------- /templates/A4355.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4355.json -------------------------------------------------------------------------------- /templates/A4356.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4356.json -------------------------------------------------------------------------------- /templates/A4360.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4360.json -------------------------------------------------------------------------------- /templates/A4361.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4361.json -------------------------------------------------------------------------------- /templates/A4362.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4362.json -------------------------------------------------------------------------------- /templates/A4363.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4363.json -------------------------------------------------------------------------------- /templates/A4364.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4364.json -------------------------------------------------------------------------------- /templates/A4365.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4365.json -------------------------------------------------------------------------------- /templates/A4367.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4367.json -------------------------------------------------------------------------------- /templates/A4368.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/A4368.json -------------------------------------------------------------------------------- /templates/BOOP100x40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/templates/BOOP100x40.json -------------------------------------------------------------------------------- /tests/src/PimacoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/tests/src/PimacoTest.php -------------------------------------------------------------------------------- /tests/src/TagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/tests/src/TagTest.php -------------------------------------------------------------------------------- /tests/src/Tags/ImgTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/tests/src/Tags/ImgTest.php -------------------------------------------------------------------------------- /tests/src/Tags/PTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/tests/src/Tags/PTest.php -------------------------------------------------------------------------------- /tests/templates/teste.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/tests/templates/teste.json -------------------------------------------------------------------------------- /tests/templates/teste2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/tests/templates/teste2.json -------------------------------------------------------------------------------- /tests/teste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PronerInformatica/phppimaco/HEAD/tests/teste.png --------------------------------------------------------------------------------