-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.44 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "marekskopal/twelvedata",
"type": "library",
"description": "TwelveData API client library",
"homepage": "https://www.fingather.com",
"license": "MIT",
"authors": [
{
"name": "Marek Skopal",
"homepage": "https://www.marekskopal.cz"
}
],
"require": {
"php": ">=8.3",
"php-http/discovery": "^1.19",
"psr/http-client": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpunit/phpunit": "^10.2",
"spatie/ray": "^1.39",
"slevomat/coding-standard": "^8.14",
"phpstan/phpstan-strict-rules": "^2.0",
"php-http/guzzle7-adapter": "^1.0"
},
"suggest": {
"nyholm/psr7": "PSR-7 message implementation",
"symfony/http-client": "HTTP client"
},
"autoload": {
"psr-4": {
"MarekSkopal\\TwelveData\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MarekSkopal\\TwelveData\\Tests\\": [
"tests/"
]
}
},
"config": {
"platform": {
"php": "8.3"
},
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}