-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
54 lines (54 loc) · 1.41 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
{
"name": "rtcamp/login-with-google",
"description": "WordPress plugin to let users login with google.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"homepage": "https://github.com/rtCamp/login-with-google",
"require": {
"php": ">=7.1",
"pimple/pimple": "3.3.*"
},
"require-dev": {
"10up/wp_mock": "^0.4.2",
"automattic/vipwpcs": "^2.3",
"civicrm/composer-downloads-plugin": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"php-stubs/wordpress-stubs": "^6.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"wp-coding-standards/wpcs": "^2.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"RtCamp\\GoogleLogin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RtCamp\\GoogleLogin\\Tests\\": "tests/php"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"civicrm/composer-downloads-plugin": true
},
"sort-packages": true
},
"extra": {
"downloads": {
"phpstan": {
"path": "vendor/bin/phpstan",
"type": "phar",
"url": "https://github.com/phpstan/phpstan/releases/latest/download/phpstan.phar"
}
}
},
"scripts": {
"analyze": "if [ -z $TEST_SKIP_PHPSTAN ]; then phpstan --version; phpstan analyze --ansi --memory-limit=2G; fi"
}
}