-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
46 lines (46 loc) · 1.31 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
{
"name": "werk365/identitydocuments",
"description": "Package to parse identity documents like passports",
"license": "GPL-3.0-or-later",
"version": "2.0.5",
"authors": [
{
"name": "Hergen Dillema",
"email": "[email protected]",
"homepage": "https://365werk.nl"
}
],
"homepage": "https://github.com/werk365/identitydocuments",
"keywords": ["Laravel", "IdentityDocuments", "MRZ", "Passport"],
"require": {
"google/cloud-vision": "^1.3",
"intervention/image": "^2.5",
"illuminate/support": "~5|~6|~7|~8|~9"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3|~4",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"Werk365\\IdentityDocuments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Werk365\\IdentityDocuments\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Werk365\\IdentityDocuments\\IdentityDocumentsServiceProvider"
],
"aliases": {
"IdentityDocuments": "werk365\\IdentityDocuments\\Facades\\IdentityDocuments"
}
}
}
}