-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.95 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.95 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
58
59
60
61
{
"name": "runopencode/exchange-rate-nbs",
"description": "Plugin for 'runopencode/exchange-rate' library for fetching exchange rates from National Bank of Serbia.",
"keywords": [
"exchange rate", "national bank of serbia", "nbs"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Nikola Svitlica a.k.a TheCelavi",
"email": "thecelavi@gmail.com",
"homepage": "http://www.runopencode.com",
"role": "Project lead"
},
{
"name": "RunOpenCode members",
"email": "support@runopencode.com",
"homepage": "http://www.runopencode.com"
}
],
"autoload": {
"psr-4": {
"RunOpenCode\\ExchangeRate\\NationalBankOfSerbia\\": "src/RunOpenCode/ExchangeRate/NationalBankOfSerbia/"
}
},
"autoload-dev": {
"psr-4": {
"RunOpenCode\\ExchangeRate\\NationalBankOfSerbia\\Tests\\": "test/"
}
},
"require": {
"php": ">=7.0",
"psr/log": "1.*",
"guzzlehttp/guzzle": "^6.3",
"symfony/dom-crawler": "~2.8|~3.0",
"symfony/css-selector": "~2.8|~3.0",
"runopencode/sax": "~3.0",
"runopencode/exchange-rate": "^3.0",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"mockery/mockery": "~0.9|~1.0",
"squizlabs/php_codesniffer": "~2.0",
"phploc/phploc": "dev-master",
"pdepend/pdepend" : "~2.5",
"phpmd/phpmd" : "@stable",
"sebastian/phpcpd": "dev-master",
"theseer/phpdox": "dev-master",
"escapestudios/symfony2-coding-standard": "~2.0",
"phpstan/phpstan": "^1.10"
},
"suggest": {
"runopencode/exchange-rate-bundle": "Exchange rate Symfony bundle."
},
"scripts": {
"phpunit": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse -l 5 src test"
}
}