-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·66 lines (66 loc) · 1.94 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
{
"name": "textcontrol/textcontrol-reportingcloud",
"description": "PHP SDK for ReportingCloud Web API. Authored and supported by Text Control GmbH.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"reporting cloud",
"reportingcloud"
],
"require": {
"php": "^8.3",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ctw/ctw-http": "^4.0",
"guzzlehttp/guzzle": "^7.0",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"ctw/ctw-qa": "^4.0",
"fakerphp/faker": "^1.14",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^10.0",
"riimu/kit-phpencoder": "^2.4",
"smalot/pdfparser": "^0.14",
"symfony/var-dumper": "^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"TextControl\\ReportingCloud\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TextControlTest\\ReportingCloud\\": "test/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"ecs": "php vendor/bin/ecs --clear-cache",
"ecs-fix": "php vendor/bin/ecs --clear-cache --fix",
"phpstan": "d=build/phpstan ; rm -fr $d ; mkdir -p $d ; php vendor/bin/phpstan analyse --error-format=raw | tee $d/output.txt",
"phpstan-baseline": "php vendor/bin/phpstan analyse --generate-baseline",
"qa": [
"@rector",
"@ecs",
"@phpstan"
],
"qa-fix": [
"@rector-fix",
"@ecs-fix",
"@phpstan",
"@test"
],
"rector": "php vendor/bin/rector process --clear-cache --dry-run",
"rector-fix": "php vendor/bin/rector process --clear-cache",
"test": "php vendor/bin/phpunit"
}
}