-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.33 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.33 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
{
"name": "openfinancy/api-client-common",
"description": "Common API client components for OpenFinancy API clients",
"type": "library",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.4",
"symfony/http-client": "^7.3",
"symfony/cache-contracts": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.86",
"phpmd/phpmd": "^2.15",
"phpro/grumphp": "^2.14",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^12.4.3"
},
"autoload": {
"psr-4": {
"OpenFinancy\\ApiClient\\Common\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenFinancy\\ApiClient\\Common\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
},
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"test:coverage": "vendor/bin/phpunit --coverage-text",
"analyse": "vendor/bin/phpstan analyse -c rulesets/phpstan.neon",
"lint": "vendor/bin/php-cs-fixer fix --dry-run --diff --allow-risky=yes --config=rulesets/php-cs-fixer.php",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes --config=rulesets/php-cs-fixer.php"
}
}