-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
67 lines (67 loc) · 1.8 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
{
"name": "rtcamp/login-with-google",
"description": "WordPress plugin to let users login with google.",
"license": "GPL 2.0",
"authors": [
{
"name": "rtCamp",
"email": "[email protected]",
"homepage": "https://rtcamp.com/",
"role": "Developer"
},
{
"name": "Utkarsh Patel",
"email": "[email protected]"
},
{
"name": "Paul Clark",
"role": "Developer"
},
{
"name": "Ankit Gade",
"email": "[email protected]",
"homepage": "https://iamank.it/",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1",
"pimple/pimple": "3.3.*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"wp-coding-standards/wpcs": "^2.3",
"sirbrillig/phpcs-variable-analysis": "^v2.11.3",
"automattic/vipwpcs": "^2.3.3",
"phpcompatibility/phpcompatibility-wp": "^2.1.3",
"phpunit/phpunit": "9.5",
"10up/wp_mock": "0.4.2"
},
"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"
]
}
}