forked from alleyinteractive/apple-news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.32 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
{
"name" : "alleyinteractive/apple-news",
"description": "The 'Publish to Apple News' plugin enables WordPress sites with approved Apple News channels to publish content directly on Apple News.",
"homepage" : "https://github.com/alleyinteractive/apple-news",
"type" : "wordpress-plugin",
"license" : "GPL-3.0-or-later",
"require" : {
"composer/installers": "^1.12.0",
"php": ">=8.0"
},
"require-dev": {
"alleyinteractive/alley-coding-standards": "^2.0.1",
"mantle-framework/testkit": "^0.12.7",
"phpspec/prophecy": "^1.17.0",
"yoast/phpunit-polyfills": "^2.0"
},
"scripts": {
"phpcbf" : "phpcbf .",
"phpcs" : "phpcs .",
"phpunit" : "phpunit",
"test": [
"@phpcs",
"@phpunit"
]
},
"config": {
"allow-plugins": {
"alleyinteractive/composer-wordpress-autoloader": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"archive": {
"exclude": [
"*.xml",
"*.dist",
"*.cache",
".phpcs.xml",
".editorconfig",
".gitignore",
".distignore",
".deployignore",
".github/",
".phpcs/",
".phpstan/",
"plugin-build/",
"tests/",
"publish-to-apple-news.zip",
"!vendor/",
"!.wordpress-org/"
]
}
}