-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
51 lines (51 loc) · 1.6 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
{
"name": "codewithkyrian/whisper.php",
"description": "PHP bindings for OpenAI Whisper made possible by whisper.cpp",
"type": "platform-package",
"require": {
"php": "^8.1",
"ext-ffi": "*",
"psr/log": "^3.0",
"codewithkyrian/platform-package-installer": "^1.0"
},
"require-dev": {
"symfony/var-dumper": "^6.4.11|^7.1.5",
"pestphp/pest": "^2.36.0|^3.5.0",
"mockery/mockery": "^1.6",
"laravel/pint": "^1.18"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Codewithkyrian\\Whisper\\": "src/"
},
"files": [
"src/Utils.php"
]
},
"scripts": {
"test": "vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage"
},
"authors": [
{
"name": "Kyrian Obikwelu",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"codewithkyrian/platform-package-installer": true
}
},
"extra": {
"platform-urls": {
"linux-x86_64": "https://github.com/Codewithkyrian/whisper.php/releases/download/{version}/dist-linux-x86_64.tar.gz",
"linux-arm64": "https://github.com/Codewithkyrian/whisper.php/releases/download/{version}/dist-linux-arm64.tar.gz",
"darwin-x86_64": "https://github.com/Codewithkyrian/whisper.php/releases/download/{version}/dist-darwin-x86_64.tar.gz",
"darwin-arm64": "https://github.com/Codewithkyrian/whisper.php/releases/download/{version}/dist-darwin-arm64.tar.gz",
"windows-x86_64": "https://github.com/Codewithkyrian/whisper.php/releases/download/{version}/dist-windows-x86_64.zip"
}
}
}