forked from niraj-shah/laravel-azure-face-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 856 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
{
"name": "inquid/laravel-azure-face-api",
"description": "Laravel package to access Azure Cognitive Face APIs and do Facial Recognition",
"type": "library",
"keywords": [
"face",
"laravel",
"azure"
],
"require": {
"php": "^7.1.3|^8.0",
"guzzlehttp/guzzle": "~6.0|~7.0",
"nesbot/carbon": "^2.23"
},
"license": "MIT",
"authors": [
{
"name": "Niraj Shah",
"email": "[email protected]"
},
{
"name": "Inquid",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"AzureFace\\": "src/AzureFace/"
}
},
"extra": {
"laravel": {
"providers": [
"AzureFace\\AzureFaceServiceProvider"
]
}
}
}