Skip to content

Commit 511f8a5

Browse files
committed
ajustes de changelog, etc..
1 parent 259d7b3 commit 511f8a5

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ composer.phar
77
docker-compose.yml
88
.phpcs-cache
99
.phpunit.result.cache
10-
phpunit.xml.dist
10+
phpunit.xml

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ nosso versionamento continua sendo [versionamento semântico](https://semver.org
1010
- Corrigido:
1111
- A documentação referente a validação de inscrição estadual;
1212
- O arquivo `composer.lock` foi removido do `.gitignore`;
13-
- A opção depreciada do composer `--no-suggest`, foi removida do workflow Github actions.
13+
- A opção depreciada do composer `--no-suggest`, foi removida do workflow Github actions.
1414
- Atualizado:
1515
- A versão mínima do PHP, e algumas dependências do projeto;
1616
- As classes de validação de formatos de documentos NIS e CNPJ;
1717
- O arquivo `phpunit.xml` foi adicionado ao `.gitignore`.
18-
- Removido: O arquivo `phpunit.xml`.
18+
- Removido:
19+
- O arquivo `phpunit.xml`;
20+
- O suporte a travisCI.
1921
- Adicionado:
2022
- O arquivo `phpunit.xml.dist`;
2123
- A possibilidade de rodar testes de unidade via comando `composer testdox`;

phpunit.xml.dist

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<php>
4+
<env name="XDEBUG_MODE" value="coverage"/>
5+
</php>
6+
<coverage processUncoveredFiles="true">
7+
<include>
8+
<directory>./src/</directory>
9+
</include>
10+
<report>
11+
<clover outputFile="build/logs/clover.xml"/>
12+
<html outputDirectory="build/logs/html" lowUpperBound="35" highLowerBound="70"/>
13+
</report>
14+
</coverage>
15+
<testsuites>
16+
<testsuite name="Package Test Suite">
17+
<directory suffix=".php">./tests/</directory>
18+
</testsuite>
19+
</testsuites>
20+
</phpunit>

0 commit comments

Comments
 (0)