-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
51 lines (51 loc) · 1.58 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
{
"name": "fumikito/gianism",
"description": "A plugin which makes your WordPress more social.",
"type": "wordpress-plugin",
"license": "GPL-2.0",
"authors": [
{
"name": "fumikito",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"lint": "phpcs --standard=phpcs.ruleset.xml .",
"fix": "phpcbf --standard=phpcs.ruleset.xml .",
"test": "phpunit",
"analyze": "phpstan analyze --memory-limit=2G",
"analyze:github": "phpstan analyze --memory-limit=2G --error-format=github"
},
"require": {
"php": ">=7.2",
"facebook/graph-sdk": "^5.4",
"abraham/twitteroauth": "2.0.0",
"google/apiclient": "^2.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.7",
"squizlabs/php_codesniffer": "^3.3.1",
"wp-coding-standards/wpcs": "^3.0",
"yoast/phpunit-polyfills": "^2.0",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpstan/phpstan": "^1.12",
"phpstan/extension-installer": "^1.4",
"szepeviktor/phpstan-wordpress": "^1.3",
"php-stubs/wp-cli-stubs": "^2.10",
"php-stubs/woocommerce-stubs": "^9.2",
"wp-cli/php-cli-tools": "^0.12.0"
},
"autoload": {
"psr-0": {
"Gianism": "app"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}