-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.34 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.34 KB
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
{
"name": "digitalcorehub/laravel-elevenlabs",
"description": "Laravel package for ElevenLabs Text-to-Speech API integration",
"version": "0.4.0",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"elevenlabs",
"tts",
"text-to-speech",
"voice",
"audio"
],
"authors": [
{
"name": "DigitalCoreHub",
"email": "haymana.batuhan@gmail.com"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^12.0",
"illuminate/http": "^12.0",
"illuminate/filesystem": "^12.0"
},
"require-dev": {
"orchestra/testbench": "^10.0",
"phpunit/phpunit": "^11.0",
"laravel/pint": "^1.25"
},
"autoload": {
"psr-4": {
"DigitalCoreHub\\LaravelElevenLabs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigitalCoreHub\\LaravelElevenLabs\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"DigitalCoreHub\\LaravelElevenLabs\\ElevenLabsServiceProvider"
],
"aliases": {
"ElevenLabs": "DigitalCoreHub\\LaravelElevenLabs\\Facades\\ElevenLabs"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}