-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.2 KB
/
composer.json
File metadata and controls
47 lines (47 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
42
43
44
45
46
47
{
"name": "newsdataio/newsdataapi",
"type": "library",
"description": "Official PHP client (SDK) for the Newsdata.io News API — fetch real-time, historical, crypto, and stock-market news via REST with validation, retries, and error handling.",
"keywords": ["news", "newsdata", "latest", "archive", "crypto", "market", "sources", "count", "historical", "api", "sdk"],
"license": "MIT",
"homepage": "https://newsdata.io",
"authors": [
{
"name": "Newsdata",
"email": "contact@newsdata.io",
"homepage": "https://newsdata.io",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/newsdataapi/php-client",
"issues": "https://github.com/newsdataapi/php-client/issues"
},
"require": {
"php": "^7.3 || ^8.0",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9 || ^10"
},
"suggest": {
"psr/log": "Allows attaching a PSR-3 logger via NewsdataApi::setLogger()"
},
"autoload": {
"psr-4": {
"NewsdataIO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NewsdataIO\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
}
}