-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.67 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "rtcamp/login-with-google",
"description": "WordPress plugin to let users login with google.",
"license": "GPL 2.0",
"authors": [
{
"name": "rtCamp",
"email": "contact@rtcamp.com",
"homepage": "https://rtcamp.com/",
"role": "Developer"
},
{
"name": "Utkarsh Patel",
"email": "itismeutkarsh@gmail.com"
},
{
"name": "Paul Clark",
"role": "Developer"
},
{
"name": "Ankit Gade",
"email": "ankit.gade@rtcamp.com",
"homepage": "https://iamank.it/",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"pimple/pimple": "3.5.*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.12.2",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"wp-coding-standards/wpcs": "^3.1.0",
"sirbrillig/phpcs-variable-analysis": "^v2.12.0",
"automattic/vipwpcs": "^3.0.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.6",
"phpunit/phpunit": "9.6.33",
"10up/wp_mock": "1.1.0",
"wp-cli/i18n-command": "v2.6.5"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"RtCamp\\GoogleLogin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RtCamp\\GoogleLogin\\Tests\\": "tests/php"
}
},
"scripts": {
"cs": "@php ./vendor/bin/phpcs .",
"cs:fix": "@php ./vendor/bin/phpcbf .",
"tests:unit": "@php ./vendor/bin/phpunit tests/php/Unit/",
"qa": [
"@cs",
"@tests:unit"
],
"pot": "./vendor/bin/wp i18n make-pot . --exclude=\"assets/src,assets/node_modules,node_modules,tests,vendor\" ./languages/login-with-google.pot",
"build-plugin-zip": "./bin/build-plugin-zip.sh"
}
}