forked from reducktion/socrates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.47 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "reducktion/socrates",
"description": "A package to validate, and extract citizen information from, national identification numbers.",
"keywords": [
"php",
"laravel",
"validation",
"identification",
"citizen",
"passport",
"citizenship",
"nationality"
],
"license": "MIT",
"authors": [
{
"name": "Alexandre Olival",
"email": "[email protected]",
"homepage": "https://www.alexandreolival.me",
"role": "Developer"
},
{
"name": "Joao Cruz",
"email": "[email protected]",
"homepage": "https://joaofscruz.github.io",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"nesbot/carbon": "^2.35.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^8.5",
"orchestra/testbench": "^4.6"
},
"autoload": {
"psr-4": {
"Reducktion\\Socrates\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Reducktion\\Socrates\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Reducktion\\Socrates\\Laravel\\SocratesServiceProvider"
],
"aliases": {
"Socrates": "Reducktion\\Socrates\\Laravel\\Facades\\Socrates"
}
}
}
}