-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
49 lines (49 loc) · 1.4 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
{
"name": "iamsayan/wp-auto-republish",
"description": "The WP Auto Republish plugin helps revive old posts by resetting the publish date to the current date. This will push old posts to your front page, the top of archive pages, and back into RSS feeds. Ideal for sites with a large repository of evergreen content.",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Sayan Datta",
"email": "[email protected]",
"homepage": "https://sayandatta.in",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"funding": [
{
"type": "Paypal",
"url": "https://paypal.me/iamsayan"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"RevivePress\\": "includes/"
},
"files": [
"vendor/woocommerce/action-scheduler/action-scheduler.php",
"functions.php"
]
},
"scripts": {
"build": [
"composer dump-autoload --no-dev",
"composer pot"
],
"pot" : [
"wp i18n make-pot . languages/wp-auto-republish.pot --exclude=\"/vendor,/assets\""
]
},
"config": {
"optimize-autoloader": true
},
"require": {
"woocommerce/action-scheduler": "^3.1",
"freemius/wordpress-sdk": "^2.10"
}
}