-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
35 lines (35 loc) · 1.03 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "kiczort/polish-validator-bundle",
"description": "Symfony bundle with validators for Polish identification numbers: PESEL, NIP, REGON, PWZ.",
"keywords": ["polish validator", "pl validator", "pesel", "nip", "regon", "pwz", "symfony bundle", "validator", "symfony validator"],
"license": "MIT",
"authors": [
{
"name": "Grzegorz Koziński",
"email": "gkozinski@gmail.com"
}
],
"require": {
"php": ">=8.0",
"ext-intl": "*",
"kiczort/polish-validator": "^1.2",
"symfony/config" : "~6.1",
"symfony/http-kernel" : "~6.1",
"symfony/dependency-injection" : "~6.1",
"symfony/validator": "~6.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "~9.0",
"symfony/phpunit-bridge": "~6.1",
"symfony/intl": "^6.2"
},
"autoload": {
"psr-4": {
"Kiczort\\": "src/Kiczort/"
}
},
"config": {
"bin-dir": "bin"
}
}