-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.2 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "converthub/php-examples",
"description": "PHP examples for ConvertHub API - File conversion service",
"keywords": ["converthub", "api", "file conversion", "pdf", "image", "document"],
"homepage": "https://converthub.com/api",
"license": "MIT",
"authors": [
{
"name": "ConvertHub",
"email": "support@converthub.com",
"homepage": "https://converthub.com"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"vlucas/phpdotenv": "^5.0"
},
"suggest": {
"guzzlehttp/guzzle": "For more advanced HTTP client features",
"vlucas/phpdotenv": "For better environment variable management",
"monolog/monolog": "For advanced logging in webhook handlers"
},
"autoload": {
"psr-4": {
"ConvertHub\\Examples\\": "src/"
}
},
"scripts": {
"test-api": "php simple-convert/convert.php test.pdf docx",
"list-formats": "php format-discovery/list-formats.php"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}