-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.1 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.1 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
{
"name": "qase/php-commons",
"description": "Library with common classes for Qase PHP reporters",
"homepage": "https://qase.io",
"license": "Apache-2.0",
"type": "library",
"keywords": [
"qase",
"tms",
"reporter",
"common",
"php"
],
"authors": [
{
"name": "Qase Team",
"email": "support@qase.io"
}
],
"autoload": {
"psr-4": {
"Qase\\PhpCommons\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"qase/qase-api-client": "^1.1.0",
"qase/qase-api-v2-client": "^1.1.0",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^9 || ^10 || ^11"
},
"scripts": {
"test": "phpunit"
},
"version": "2.1.8",
"config": {
"platform": {
"php": "8.0"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}