forked from beezwax/WP-Publish-to-Apple-News
-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
37 lines (37 loc) · 1.19 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
{
"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",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"scripts": {
"phpcbf" : "phpcbf .",
"phpcs" : "phpcs .",
"phpunit" : "phpunit",
"phpstan": "phpstan --memory-limit=1024M",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
],
"test-release": "rsync -rc --exclude-from=.distignore ./ ~/Desktop/publish-to-apple-news/ --delete --delete-excluded"
},
"config": {
"allow-plugins": {
"alleyinteractive/composer-wordpress-autoloader": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}