-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 2.05 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 2.05 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "spojenet/csas-accountsapi",
"description": "API for managing production accounts.",
"keywords": [
"openapitools",
"openapi-generator",
"openapi",
"php",
"sdk",
"rest",
"api",
"csas",
"Česká Spořitelna",
"Spořka"
],
"homepage": "https://www.csas.cz/content/dam/cz/csas/www_csas_cz/dokumenty/obecne/how-to-connect-to-api-of-cs.pdf",
"license": "MIT",
"authors": [
{
"name": "Vítězslav Dvořák",
"email": "vitezslav.dvorak@spojenet.cz",
"homepage": "https://spojenet.cz/"
}
],
"require": {
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.10",
"guzzlehttp/psr7": "^2.9.0",
"vitexsoftware/ease-core": "^1.50"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^3.94",
"ergebnis/composer-normalize": "^2.50",
"ergebnis/php-cs-fixer-config": "^6.60",
"phpstan/phpstan-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"SpojeNet\\CSas\\": "lib/",
"SpojeNet\\CSas\\Accounts\\": "lib/Accounts/",
"SpojeNet\\CSas\\Modes\\": "lib/Model/"
}
},
"autoload-dev": {
"psr-4": {
"SpojeNet\\CSas\\Test\\": "test/",
"SpojeNet\\CSas\\Test\\Accounts\\": "test/Accounts/",
"SpojeNet\\CSas\\Test\\Model\\": "test/Model/"
}
},
"scripts": {
"regenerate": [
"npx openapi-generator-cli generate -i openapi.yml -g php --git-user-id Spoje-NET --git-repo-id php-csas-webapi -c .openapi-generator/config.yaml",
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --diff --verbose --allow-risky=yes"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"type": "library"
}