Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed Jul 7, 2024
2 parents fc9c213 + 5c8f3c6 commit 3b27504
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
> [!NOTE]
> I accept help to make the version of the other programming languages.
> [🇧🇷 Leia em Português](README.pt.md)
# Multiform-validator

Multiform-validator is a comprehensive, multilanguage library designed to validate various form fields. It supports validation for fields such as email, phone, password, CPF (Brazilian Individual Taxpayer Registry), credit card numbers, and more, ensuring data integrity and security across different programming languages.
Expand Down
38 changes: 38 additions & 0 deletions README.pt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
> [!NOTE]
> Aceito ajuda para fazer a versão de outras linguagens de programação.
# Multiform-validator

Multiform-validator é uma biblioteca abrangente e multilíngue projetada para validar vários campos de formulário. Ele suporta validação para campos como e-mail, telefone, senha, CPF (Cadastro de Pessoa Física), números de cartão de crédito e muito mais, garantindo a integridade e segurança dos dados em diferentes linguagens de programação.

## Linguagens Suportadas

Esta biblioteca fornece funcionalidades de validação nas seguintes linguagens de programação:

- [TypeScript (TS/JS/NPM)](https://github.com/gabriel-logan/multiform-validator/tree/main/packages/typescript/README.md) (estável)
- [Java](https://github.com/gabriel-logan/multiform-validator/tree/main/packages/java/README.md) (em breve)
- [C#](https://github.com/gabriel-logan/multiform-validator/tree/main/packages/csharp/README.md) (em breve)
- [Python](https://github.com/gabriel-logan/multiform-validator/tree/main/packages/python/README.md) (estável)
- [PHP](https://github.com/gabriel-logan/multiform-validator/tree/main/packages/php/README.md) (em breve)

## Uso

Para instruções detalhadas de uso, consulte o arquivo README no diretório da linguagem de programação que você está usando. Por exemplo, os usuários de TypeScript podem encontrar as instruções de uso no [README do TypeScript](https://github.com/gabriel-logan/multiform-validator/tree/main/packages/typescript/README.md).

## Instalação

As instruções de instalação estão disponíveis no arquivo README do diretório da respectiva linguagem de programação.

## Contribuindo

Aceitamos contribuições! Por favor, consulte as diretrizes de contribuição antes de começar.

## Contribuidores

<a style="display: flex; justify-content: center;" href="https://github.com/gabriel-logan/multiform-validator/graphs/contributors">
<img src="https://contrib.rocks/image?repo=gabriel-logan/multiform-validator" />
</a>

## Licença

Este projeto é licenciado sob a Licença MIT.
24 changes: 19 additions & 5 deletions packages/java/settings.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
</settings>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">

<servers>
<server>
<id>github</id>
<configuration>
<httpHeaders>
<property>
<name>Authorization</name>
<value>Bearer ${env.GITHUB_TOKEN}</value>
</property>
</httpHeaders>
</configuration>
</server>
</servers>
</settings>

0 comments on commit 3b27504

Please sign in to comment.