This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
87 lines (87 loc) · 2.97 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "typisttech/remove-medium-cross-links",
"description": "Remove Medium cross links footer from WordPress posts",
"keywords": [
"wordpress",
"wp",
"plugin",
"medium"
],
"homepage": "https://typist.tech/projects/remove-medium-cross-links",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Typist Tech",
"email": "[email protected]",
"homepage": "https://typist.tech/"
},
{
"name": "Tang Rufus",
"email": "[email protected]",
"homepage": "https://typist.tech/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/TypistTech/remove-medium-cross-links/issues",
"forum": "https://wordpress.org/support/plugin/remove-medium-cross-links",
"source": "https://github.com/TypistTech/remove-medium-cross-links"
},
"require-dev": {
"jakoch/phantomjs-installer": "^2.1",
"lucatume/wp-browser": "^1.22",
"neronmoon/scriptsdev": "^0.1.2",
"site5/phantoman": "^2.0",
"wp-coding-standards/wpcs": "^0.14.0"
},
"scripts": {
"build": [
"rm -fr vendor",
"composer install --no-dev --prefer-dist --optimize-autoloader --no-suggest",
"yarn grunt addtextdomain",
"yarn grunt makepot",
"composer archive --format=zip --dir=release --file=remove-medium-cross-links"
],
"pre-tag": [
"composer update --no-suggest",
"yarn upgrade",
"yarn grunt version",
"yarn doctoc README.md",
"github_changelog_generator --no-verbose"
],
"check-style": "phpcs --standard=ruleset.xml --colors -p -s .",
"fix-style": "phpcbf --standard=ruleset.xml -p --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 .",
"install-dev-extra": [
"PhantomInstaller\\Installer::installPhantomJS",
"phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs"
],
"post-install-cmd": "yarn install",
"post-update-cmd": "yarn install",
"test": "codecept run",
"test-acceptance": "codecept run acceptance",
"test-functional": "codecept run functional",
"test-integration": "codecept run integration",
"test-unit": "codecept run unit",
"test-with-coverage": "codecept run --coverage --coverage-xml --coverage-html"
},
"config": {
"sort-packages": true
},
"extra": {
"scripts-dev": {
"post-install-cmd": "@install-dev-extra",
"post-update-cmd": "@install-dev-extra"
}
},
"archive": {
"exclude": [
"/*",
".*",
"!/languages",
"!/LICENSE",
"!/readme.txt",
"!/*.php"
]
}
}