-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 843 Bytes
/
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": "czachor/polish-id-validators",
"description": "PHP library based on Symfony Validator Component to validate various medical identification numbers used in Poland.",
"keywords": ["Symfony", "Validator", "PWZ", "Poland"],
"license": "MIT",
"authors": [
{
"name": "czachor",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Czachor\\PolishIdValidators\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Czachor\\Tests\\PolishIdValidators\\": "tests"
}
},
"require": {
"php": "^7.2|^8.0",
"ronanguilloux/isocodes": "^2.3",
"symfony/translation": "^5.0|^6.0",
"symfony/validator": "^5.0|^6.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.2"
},
"config": {
"sort-packages": true
}
}