-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (51 loc) · 1.21 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
{
"name": "rebilly/money",
"description": "Implementation of the Money Value Object",
"license": "MIT",
"keywords": ["money", "currency"],
"homepage": "https://github.com/rebilly/money/",
"authors": [
{
"name": "Rebilly",
"homepage": "https://github.com/rebilly"
}
],
"minimum-stability": "stable",
"config": {
"sort-packages": true
},
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"vimeo/psalm": "^4.10"
},
"autoload": {
"psr-4": {
"Money\\": ["src"]
}
},
"autoload-dev": {
"psr-4": {
"Money\\": ["tests"]
}
},
"suggest": {},
"scripts": {
"test-unit": "phpunit",
"show-coverage": "phpunit --coverage-text=php://stdout",
"test-code": "psalm --threads=1 --no-cache --find-dead-code=always --show-info=false",
"fix-cs": "php-cs-fixer fix --config=.php_cs -v --using-cache=no --ansi",
"test-cs": "php-cs-fixer fix --dry-run --config=.php_cs -v --using-cache=no --ansi",
"test": [
"@test-cs",
"@test-code",
"@test-unit"
]
}
}