-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
60 lines (60 loc) · 1.75 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
56
57
58
59
60
{
"name": "h4kuna/exchange",
"type": "library",
"description": "Exchange between currencies.",
"homepage": "https://github.com/h4kuna/exchange",
"license": "MIT",
"authors": [
{
"name": "Milan Matějček",
"email": "milan.matejcek@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"h4kuna/critical-cache": "^v1.0",
"malkusch/lock": "^2.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/psr7": "^2.4",
"h4kuna/dir": "^0.1.2",
"mockery/mockery": "^1.6",
"nette/caching": "^3.2",
"nette/tester": "^2.5",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"tracy/tracy": "^2.10"
},
"autoload": {
"psr-4": {
"h4kuna\\Exchange\\": "src"
}
},
"suggest": {
"guzzlehttp/guzzle": "As default implementation for PSR standards.",
"guzzlehttp/psr7": "Minimum ^2.4 for guzzle.",
"h4kuna/dir": "If you want to use build-in factory.",
"nette/caching": "If you have not own PSR-6 implementation.",
"ext-simplexml": "If you want to use h4kuna\\Exchange\\Driver\\Ecb or h4kuna\\Exchange\\Driver\\RB."
},
"autoload-dev": {
"psr-4": {
"h4kuna\\Exchange\\Tests\\": "tests/src",
"h4kuna\\Exchange\\Fixtures\\": "tests/Fixtures"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"stan": "vendor/bin/phpstan analyse",
"tests": "rm -r tests/temp/* ; vendor/bin/tester --colors 1 -s -C tests/src",
"coverage": "rm -r tests/temp/* ; vendor/bin/tester --coverage coverage.html --coverage-src src/ --colors 1 -s -C tests/src"
}
}