-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 838 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 838 Bytes
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
{
"name": "tokenly/tokenly-wp-plugin",
"require": {
"phpunit/phpunit": "^9",
"tokenly/hmac-auth": "dev-master",
"tokenly/api-client": "dev-master",
"tokenly/tokenpass-client": "dev-main",
"php-di/php-di": "^6.3",
"twig/twig": "^3",
"doctrine/annotations": "^1.13"
},
"autoload": {
"psr-4": {
"Tokenly\\Wp\\": "app/"
}
},
"autoload-dev": {
"files": [
"config/kint.php"
]
},
"repositories": [
{
"type": "path",
"url": "libs/tokenly/tokenpass-client"
}
],
"config": {
"platform": {
"php": "7.3.5"
}
},
"version": "dev-master",
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/phpcompatibility-wp": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"kint-php/kint": "^3.3"
}
}