-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
63 lines (63 loc) · 1.75 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
{
"name": "codeinwp/tweet-old-post",
"description": "Tweet Old Post for WordPress. ",
"keywords": [
"wordpress",
"share"
],
"homepage": "https://themeisle.com/plugins/tweet-old-post/",
"license": "GPL-2.0+",
"authors": [
{
"name": "ThemeIsle Team",
"email": "[email protected]",
"homepage": "https://themeisle.com"
}
],
"type": "wordpress-plugin",
"support": {
"issues": "https://github.com/Codeinwp/tweet-old-post/issues",
"source": "https://github.com/Codeinwp/tweet-old-post"
},
"scripts": {
"build": "sh bin/dist.sh",
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs",
"format": "vendor/bin/phpcbf"
},
"autoload": {
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
],
"classmap": [
"cron-system/includes/class-rop-curl-methods.php",
"cron-system/includes/class-rop-helpers.php",
"cron-system/includes/class-debug-page.php",
"cron-system/rest-endpoints/class-rop-ping-system.php",
"cron-system/rest-endpoints/class-rop-system-base.php",
"cron-system/rest-endpoints/class-rop-debug-ping.php",
"cron-system/rest-endpoints/class-rop-registration-check.php",
"cron-system/class-rop-cron-core.php"
]
},
"require": {
"facebook/graph-sdk": "^5.7",
"abraham/twitteroauth": "^4.0",
"codeinwp/themeisle-sdk": "^3.3",
"vkcom/vk-php-sdk": "5.101.0"
},
"extra": {
"installer-disable": true
},
"require-dev": {
"wp-coding-standards/wpcs": "2.3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpunit/phpunit": "5.*",
"yoast/phpunit-polyfills": "^2.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}