-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 900 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
{
"name": "afaya/edge-tts",
"description": "Edge TTS is a PHP package that allows access to the online text-to-speech service used by Microsoft Edge without the need for Microsoft Edge, Windows, or an API key.",
"version": "1.2.9",
"type": "library",
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "https://github.com/andresayac/edge-tts"
},
"require": {
"php": ">=8.1",
"symfony/console": "^6.4 || ^7.1",
"ratchet/pawl": "^0.4.1",
"ramsey/uuid": "^4.7",
"react/event-loop": "^1.5"
},
"autoload": {
"psr-4": {
"Afaya\\EdgeTTS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Afaya\\EdgeTTS\\Tests\\": "tests/"
}
},
"bin": [
"src/Cli/edge-tts"
],
"require-dev": {
"phpunit/phpunit": "^9.6"
}
}