-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.69 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.69 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
55
56
57
{
"name": "modelslab/php",
"description": "PHP SDK for ModelsLab API - AI-powered image, video, audio, and 3D generation services",
"type": "library",
"license": "MIT",
"version": "1.2.0",
"keywords": ["modelslab", "ai", "sdk", "api", "php", "machine-learning", "text-to-speech", "image-generation", "video-generation", "3d-generation"],
"homepage": "https://modelslab.com",
"support": {
"email": "support@modelslab.com",
"docs": "https://modelslab.com/docs",
"source": "https://github.com/modelslab/php-sdk"
},
"authors": [
{
"name": "ModelsLab Team",
"email": "support@modelslab.com",
"homepage": "https://modelslab.com"
},
{
"name": "Anurag Kanade",
"email": "anurag@modelslab.com"
}
],
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"ModelsLab\\": "src/ModelsLab/"
},
"files": [
"src/ModelsLab/Schemas/Audio.php",
"src/ModelsLab/Schemas/Deepfake.php",
"src/ModelsLab/Schemas/Community.php",
"src/ModelsLab/Schemas/ImageEditing.php",
"src/ModelsLab/Schemas/Interior.php",
"src/ModelsLab/Schemas/Realtime.php",
"src/ModelsLab/Schemas/ThreeD.php",
"src/ModelsLab/Schemas/Video.php"
]
},
"autoload-dev": {
"psr-4": {
"ModelsLab\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "stable",
"prefer-stable": true
}