-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.2 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
{
"name": "iamsayan/advanced-cron-scheduler",
"description": "The Advanced Cron Scheduler plugin helps to easily migrate Native WordPress Cron to the Action Scheduler Library",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Sayan Datta",
"email": "[email protected]",
"homepage": "http://www.sayandatta.co.in",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"funding": [
{
"type": "Paypal",
"url": "https://paypal.me/iamsayan"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"ACSWP\\Plugin\\": "./includes"
},
"files": [ "vendor/woocommerce/action-scheduler/action-scheduler.php" ]
},
"scripts": {
"build": [
"composer dump-autoload",
"composer pot"
],
"pot" : [
"wp i18n make-pot . languages/migrate-wp-cron-to-action-scheduler.pot --exclude=\"/vendor\""
]
},
"config": {
"optimize-autoloader": true
},
"require": {
"woocommerce/action-scheduler": "^3.4"
}
}