-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 942 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
{
"name": "realhood/assemblyai-php",
"description": "A PHP SDK for the AssemblyAI API, enabling speech-to-text transcription and real-time audio analysis functionalities.",
"version": "1.0.0",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Reza Aleyasin",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"guzzlehttp/guzzle": "^7.5",
"ratchet/pawl": "^0.3.5",
"react/event-loop": "^1.2",
"psr/log": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phake/phake": "^4.0",
"vlucas/phpdotenv": "^5.0"
},
"autoload": {
"psr-4": {
"Realhood\\AssemblyAI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Realhood\\AssemblyAI\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}