-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.56 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
68
{
"name": "felix-arntz/wp-share-target",
"description": "Allows to share images and other content directly to a WordPress site through the Web Share Target API.",
"version": "1.0.0-beta.1",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"plugin",
"image",
"media",
"sharing",
"web",
"share target",
"api",
"progressive",
"pwa"
],
"homepage": "https://wordpress.org/plugins/share-target/",
"authors": [
{
"name": "Felix Arntz",
"email": "[email protected]",
"homepage": "https://felix-arntz.me"
}
],
"support": {
"issues": "https://github.com/felix-arntz/wp-share-target/issues"
},
"autoload": {
"psr-4": {
"Felix_Arntz\\WP_Share_Target\\": "inc"
}
},
"autoload-dev": {
"psr-4": {
"Felix_Arntz\\WP_Share_Target\\Tests\\PHPUnit\\Includes\\": "tests/phpunit/includes"
}
},
"config": {
"platform": {
"php": "7.0"
},
"sort-packages": true
},
"require": {
"php": ">=7.0",
"composer/installers": "^1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^6",
"roots/wordpress": ">=5.2",
"squizlabs/php_codesniffer": "^3.3",
"wp-coding-standards/wpcs": "^2",
"wp-phpunit/wp-phpunit": ">=5.2"
},
"extra": {
"wordpress-install-dir": "vendor/roots/wordpress"
},
"scripts": {
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpmd": "phpmd inc text phpmd.xml.dist",
"phpunit": "phpunit"
}
}