-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.91 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.91 KB
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": "automattic/post-queue",
"type": "wordpress-plugin",
"description": "A WordPress plugin designed to help you manage and schedule your blog posts efficiently. It allows you to configure the number of posts to publish per day, set start and end times for publishing, and pause or resume the queue as needed.",
"license": "GPL-2.0-or-later",
"require-dev": {
"a8cteam51/team51-configs": "dev-trunk",
"wp-coding-standards/wpcs": "^3",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "^8.5",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"psr-4": {
"Post_Queue\\": "includes/"
}
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/a8cteam51/team51-configs"
}
],
"scripts": {
"wp": "vendor/bin/wp",
"phpunit": "vendor/bin/phpunit",
"generate-autoloader": "@composer dump-autoload -o",
"format:php": "phpcbf --standard=./.phpcs.xml --basepath=. . -v",
"lint:php": "phpcs --runtime-set ignore_warnings_on_exit true --standard=./.phpcs.xml --basepath=. . -v",
"internationalize": [
"@makepot",
"@updatepo",
"@makejson"
],
"makepot": "wp i18n make-pot .",
"updatepo": "wp i18n update-po ./languages/post-queue.pot",
"makejson": "wp i18n make-json ./languages --pretty-print --no-purge",
"makemo": "wp i18n make-mo ./languages",
"packages-install": "@composer install --ignore-platform-reqs --no-interaction",
"packages-update": [
"@composer clear-cache",
"@composer update --prefer-stable --no-interaction"
]
}
}