-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/gabriel-logan/multiform-val…
- Loading branch information
Showing
3 changed files
with
59 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |