-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
30 lines (30 loc) · 869 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
{
"name": "ghostjat/darknet",
"description": "PHP bindings to the Darknet.",
"keywords": ["darknet","php", "ffi", "yolo", "yolov3", "yolov4", "yolo-tiny", "object-detection", "AI"],
"homepage": "https://github.com/ghostjat/php-darknet",
"license": "Apache-2.0",
"version": "0.1-alpha",
"authors": [
{
"name": "Shubham Chaudhary",
"email": "ghost.jat@gmail.com",
"role": "dev"
}
],
"support": {
"issues": "https://github.com/ghostjat/php-darknet/issues?state=open",
"source": "https://github.com/ghostjat/php-darknet"
},
"autoload": {
"psr-4": {
"darknet\\": "src/"
}
},
"require": {
"php": "^7.4|^8.0",
"ext-ffi": "*",
"cboden/ratchet": "^0.4.3"
},
"config":{"optimize-autoloader":true}
}