-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
41 lines (39 loc) · 910 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
36
37
38
39
40
41
{
"name": "captn3m0/pincode",
"description": "A simple regex based validator for PIN codes in India",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Nemo",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PIN\\": "src/"
}
},
"archive": {
"exclude": [
"/tests",
"/regex.txt",
"/.editorconfig",
"/phpunit.xml",
"/.npmignore",
"/package.json",
"/pincode-regex.js",
"/src/generate.js",
"/src/index.js",
"/pyproject.toml",
"/src/pincode/__init__.py",
"/pincode-validator.gemspec",
"/bin",
"/src/pincode_validator.rb"
]
},
"require": {},
"require-dev": {
"phpunit/phpunit": "^9.0 || ^8.0 || ^10.0"
}
}