forked from TextControl/txtextcontrol-reportingcloud-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·57 lines (57 loc) · 1.54 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.54 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
{
"name": "textcontrol/txtextcontrol-reportingcloud",
"type": "library",
"description": "PHP SDK for ReportingCloud Web API. Authored and supported by Text Control GmbH.",
"keywords": [
"reporting cloud",
"reportingcloud"
],
"license": "BSD-3-Clause",
"require": {
"php": "^7.4 || ^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ctw/ctw-http": "^1.0",
"guzzlehttp/guzzle": "^6.5 || ^7.0"
},
"require-dev": {
"fakerphp/faker": "^1.14",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^9.5",
"riimu/kit-phpencoder": "^2.4",
"smalot/pdfparser": "^0.14",
"squizlabs/php_codesniffer": "^3.6",
"symfony/var-dumper": "^5.3"
},
"autoload": {
"psr-4": {
"TxTextControl\\ReportingCloud\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TxTextControlTest\\ReportingCloud\\": "test/"
}
},
"scripts": {
"git-pre-commit": [
"@phpcbf",
"@phpcs"
],
"git-pre-push": [
"@phpstan"
],
"phpcbf": "php vendor/bin/phpcbf",
"phpcs": "php vendor/bin/phpcs",
"phpstan": "php vendor/bin/phpstan analyse --configuration=phpstan.neon",
"qa": [
"@phpcbf",
"@phpcs",
"@phpstan"
],
"test": "vendor/bin/phpunit"
}
}