-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.41 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "trustedlogin/client",
"type": "library",
"description": "Easily and securely log in to your customers sites when providing support.",
"keywords": [
"login",
"security",
"support"
],
"homepage": "https://www.trustedlogin.com",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "TrustedLogin",
"email": "support@trustedlogin.com",
"homepage": "https://www.trustedlogin.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/build-sass"
],
"autoload": {
"psr-4": {
"TrustedLogin\\": "src/"
}
},
"require-dev": {
"php": ">=5.3.0",
"ext-curl": "*",
"ext-json": "*",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"phpstan/extension-installer": "^1.3",
"yoast/phpunit-polyfills": "^1.0.0"
},
"scripts": {
"format": "vendor/bin/phpcbf --standard=.phpcs.xml.dist --report-summary --report-source",
"lint": "vendor/bin/phpcs --standard=.phpcs.xml.dist",
"phpstan": [
"vendor/bin/phpstan analyse --memory-limit=2048M"
],
"test": "phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}