-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
58 lines (58 loc) · 1.39 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": "astrotomic/php-deepface",
"description": "A PHP adapter for the python deepface framework.",
"license": "MIT",
"keywords": [
"facial-recognition",
"face-recognition",
"openface",
"facenet",
"face-analysis",
"facial-expression-recognition",
"emotion-recognition",
"age-prediction",
"gender-prediction",
"deepid",
"vgg-face",
"deepface",
"arcface",
"race-classification"
],
"authors": [
{
"name": "Tom Herrmann",
"email": "gummibeer@astrotomic.info",
"homepage": "https://astrotomic.info",
"role": "Developer"
}
],
"homepage": "https://github.com/Gummibeer/php-deepface",
"support": {
"issues": "https://github.com/Gummibeer/php-deepface/issues"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-spl": "*",
"symfony/process": "^6.0|^7.0"
},
"require-dev": {
"laravel/pint": "^1.13"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Astrotomic\\DeepFace\\": "src"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"fix": "@php vendor/bin/pint"
}
}