-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
69 lines (69 loc) · 2 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "bedita/php-sdk",
"description": "BEdita PHP SDK",
"homepage": "https://www.bedita.com",
"type": "library",
"license": "MIT",
"support": {
},
"authors": [
{
"name": "ChannelWeb s.r.l.",
"email": "[email protected]",
"homepage": "https://www.channelweb.it"
},
{
"name": "Chia Lab s.r.l.",
"email": "[email protected]",
"homepage": "http://www.chialab.it"
}
],
"require": {
"php": ">=8.3",
"monolog/monolog": "^2",
"php-http/guzzle7-adapter": "^1.0",
"woohoolabs/yang": "^3.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^3.0",
"josegonzalez/dotenv": "2.*",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.0",
"psy/psysh": "@stable",
"vimeo/psalm": "^5.18"
},
"autoload": {
"psr-4": {
"BEdita\\SDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BEdita\\SDK\\Test\\": "tests/"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"cs-setup": [
"vendor/bin/phpcs --config-set installed_paths vendor/cakephp/cakephp-codesniffer",
"vendor/bin/phpcs --config-set default_standard CakePHP",
"vendor/bin/phpcs --config-set colors 1"
],
"cs-check": "vendor/bin/phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"cs-fix": "vendor/bin/phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"stan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit --colors=always",
"coverage": "vendor/bin/phpunit --colors=always --coverage-html coverage",
"update-dev": [
"@composer update",
"@cs-setup"
]
},
"prefer-stable": true,
"config": {
"sort-packages": true
}
}