-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 loc) · 836 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
38
39
40
{
"name": "rikudou/iban",
"type": "library",
"description": "Library for working with IBANs",
"homepage": "https://github.com/RikudouSage/IBAN",
"keywords": [
"iban"
],
"license": "WTFPL",
"authors": [
{
"name": "Dominik Chrástecký",
"email": "dominik@chrastecky.cz"
}
],
"require": {
"php": "^7.3 | ^8.0"
},
"autoload": {
"psr-4": {
"Rikudou\\Iban\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rikudou\\Iban\\Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12.63",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "^9"
},
"scripts": {
"fixer": "php-cs-fixer fix src --verbose",
"phpstan": "phpstan analyse --level=max src",
"phpunit": "phpunit"
}
}