-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.28 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
{
"name": "sunnyphp/ttlock",
"type": "library",
"description": "TTLock SDK",
"minimum-stability": "stable",
"license": "WTFPL",
"readme": "readme.md",
"keywords": [
"ttlock",
"sdk",
"api"
],
"authors": [
{
"name": "Vitaliy Sunny",
"homepage": "https://github.com/sunnyphp"
}
],
"support": {
"issues": "https://github.com/sunnyphp/ttlock/issues"
},
"config": {
"platform": {
"php": "7.4"
},
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"suggest": {
"php-http/client-implementation": "Any compatible HTTP client (see https://docs.php-http.org/en/latest/clients.html)"
},
"require": {
"php": "^7.4 || ^8",
"ext-json": "*",
"php-http/discovery": "^1.19",
"symfony/polyfill-php80": "^1.28",
"webmozart/assert": "^1.11"
},
"require-dev": {
"nyholm/psr7": "^1.8",
"php-http/guzzle7-adapter": "^1.0",
"php-http/mock-client": "^1.6",
"phpunit/phpunit": "^9.6",
"rector/rector": "^0.18.10",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"SunnyPHP\\TTLock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SunnyPHP\\TTLock\\Test\\": "test/"
}
}
}