-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.07 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
{
"name": "nofrixion/moneymoov-php",
"description": "NoFrixion MoneyMoov PHP Library",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Nofrixion\\": "src/"
}
},
"authors": [
{
"name": "NoFrixion Development Team"
},
{
"name": "Andreas Tasch",
"email": "[email protected]"
},
{
"name": "Wouter Samaey",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-bcmath": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"vimeo/psalm": "^5.7"
},
"scripts": {
"cs-check": [
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes --using-cache=no --verbose --dry-run"
],
"cs-fix": [
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes --using-cache=no"
],
"psalm": [
"vendor/bin/psalm"
]
}
}