-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.3 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "tiqr/tiqr-server-libphp",
"description": "php library for tiqr authentication.",
"type": "library",
"license": "BSD-3-Clause",
"require": {
"php": "^8.2",
"ext-gd": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"psr/log": "^3.0",
"psr/cache": "^3.0",
"edamov/pushok": "^0.16.0",
"chillerlan/php-qrcode": "^3.4",
"google/apiclient": "^2.14",
"symfony/cache": "^6.4|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"ext-pdo_sqlite": "*",
"mockery/mockery": "^1.6",
"phpmd/phpmd": "^2.15",
"squizlabs/php_codesniffer": "^3.7"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
}
},
"scripts": {
"test": [
"@static-analysis",
"@phpunit",
"@security-tests"
],
"static-analysis": "./ci/qa/static-analysis",
"phpunit": "./ci/qa/phpunit",
"security-tests": "./ci/qa/security-tests",
"pre-autoload-dump": "Google\\Task\\Composer::cleanup"
},
"autoload": {
"classmap": [ "library/tiqr/Tiqr" ]
},
"extra": {
"google/apiclient-services": [
""
]
}
}