This repository was archived by the owner on Sep 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·62 lines (62 loc) · 1.8 KB
/
composer.json
File metadata and controls
executable file
·62 lines (62 loc) · 1.8 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
{
"name": "textcontrol/txtextcontrol-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.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ctw/ctw-http": "^3.0",
"guzzlehttp/guzzle": "^7.0",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"fakerphp/faker": "^1.14",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-strict-rules": "^1.3",
"phpunit/phpunit": "^9.5",
"riimu/kit-phpencoder": "^2.4",
"smalot/pdfparser": "^0.14",
"squizlabs/php_codesniffer": "^3.6",
"symfony/var-dumper": "^6.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"TxTextControl\\ReportingCloud\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TxTextControlTest\\ReportingCloud\\": "test/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"git-pre-commit": [],
"git-pre-push": [],
"phpcbf": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpstan": "rm -fr build/phpstan && mkdir -p build/phpstan && vendor/bin/phpstan analyse --error-format=raw | tee build/phpstan/output.txt",
"phpstan-baseline": "vendor/bin/phpstan analyse --generate-baseline",
"qa": [
"@phpcbf",
"@phpcs",
"@phpstan",
"@test"
],
"test": "vendor/bin/phpunit"
}
}