-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.97 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
{
"name": "textcontrol/textcontrol-laminas-reportingcloud",
"description": "Laminas Module (formerly Zend Framework 3 Module) for ReportingCloud Web API. Authored and supported by Text Control GmbH.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"reporting cloud",
"reportingcloud",
"lamina",
"module"
],
"require": {
"php": "^8.3",
"laminas/laminas-mvc": "^3.3",
"laminas/laminas-servicemanager": "^3.12",
"laminas/laminas-view": "^2.20",
"psr/container": "^1.0 || ^2.0",
"textcontrol/textcontrol-reportingcloud": "^2.0"
},
"require-dev": {
"ctw/ctw-qa": "^4.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^10.0",
"symfony/var-dumper": "^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"TextControl\\Laminas\\ReportingCloud\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TextControlTest\\Laminas\\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"
}
}