-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
102 lines (102 loc) · 2.76 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "hellocoop/wordpress",
"type": "wordpress-plugin",
"license": "GPL-2.0-only",
"description": "Free and simple to setup plugin provides registration and login with the Hellō Wallet. Users choose from popular social login, email, or phone.",
"homepage": "https://github.com/hellocoop/wordpress",
"authors": [
{
"name": "Marius Scurtescu",
"email": "[email protected]",
"homepage": "https://www.hello.coop/"
}
],
"keywords": [
"wordpress",
"openid"
],
"support": {
"issues": "https://github.com/hellocoop/wordpress/issues"
},
"config": {
"platform": {
"php": "7.4"
},
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true,
"phpro/grumphp": true
}
},
"require": {
"php": ">=7.4",
"composer/installers": "~1.0|~2.0",
"ext-json": "*",
"ext-http": "*"
},
"require-dev": {
"php": ">=7.4",
"brain/monkey": "^2.4",
"dealerdirect/phpcodesniffer-composer-installer": "~0.7",
"johnpbloch/wordpress-core": "~6.4.1",
"johnpbloch/wordpress-core-installer": "^2.0",
"mockery/mockery": "^1.3",
"php-stubs/wordpress-stubs": "~6.4.1",
"phpcompatibility/php-compatibility": "dev-develop as 9.5.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpcsstandards/phpcsutils": "1.x-dev as 1.0",
"phpro/grumphp": "^1.5",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.6",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpunit": "^9",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.6",
"szepeviktor/phpstan-wordpress": "^1.1",
"wp-coding-standards/wpcs": "^2.2",
"wp-phpunit/wp-phpunit": "~6.3.1"
},
"autoload-dev": {
"classmap": [
"wordpress/"
]
},
"autoload": {
"classmap": [
"hello-login.php",
"includes/hello-login-client.php",
"includes/hello-login-client-wrapper.php",
"includes/hello-login-login-form.php",
"includes/hello-login-option-logger.php",
"includes/hello-login-option-settings.php",
"includes/hello-login-settings-page.php",
"includes/hello-login-util.php",
"includes/Hello_Login_Events.php"
]
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"post-install-cmd": [
"@install-codestandards"
],
"post-update-cmd": [
"@install-codestandards"
],
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf",
"phpstan": "vendor/bin/phpstan",
"lint": "@phpcs --report=full",
"lint-fix": "@phpcbf",
"analyze": "@phpstan analyze"
},
"extra": {
"wordpress-install-dir": "wordpress",
"phpcodesniffer-search-depth": 5
}
}