-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
37 lines (37 loc) · 926 Bytes
/
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
{
"name": "alcohol/iso4217",
"description": "ISO 4217 PHP Library",
"keywords": ["ISO 4217", "ISO", "4217", "currencies", "library"],
"homepage": "http://alcohol.github.io/iso4217/",
"license": "MIT",
"authors": [{
"name": "Rob Bast",
"email": "[email protected]"
}],
"support": {
"issues": "https://github.com/alcohol/iso4217/issues",
"source": "https://github.com/alcohol/iso4217"
},
"require": {
"php": "^7.4 || ^8.0"
},
"autoload": {
"psr-4": {
"Alcohol\\": "."
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "tools/phpstan/vendor/bin/phpstan",
"php-cs-fixer": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff",
"php-cs-fixer-fix": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-main": "4.x-dev"
}
}
}