-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
50 lines (50 loc) · 1.33 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
{
"name": "iamsayan/wp-last-modified-info",
"description": "Ultimate Last Modified Plugin for WordPress with Gutenberg Block Integration. It is possible to use shortcodes to display last modified info anywhere on a WordPress site running 4.7 and beyond.",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Sayan Datta",
"email": "iamsayan@protonmail.com",
"homepage": "https://www.sayandatta.co.in",
"role": "Developer"
}
],
"support": {
"email": "iamsayan@protonmail.com"
},
"funding": [
{
"type": "Paypal",
"url": "https://paypal.me/iamsayan"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Wplmi\\": "./inc"
},
"files": [
"functions.php"
]
},
"scripts": {
"build": [
"composer dump-autoload"
],
"analyze": [
"clear",
"vendor/bin/phpstan analyze inc wp-last-modified-info.php"
],
"pot" : [
"wp i18n make-pot . languages/wp-last-modified-info.pot --exclude=\"/vendor,/assets,/blocks\""
]
},
"config": {
"optimize-autoloader": true
},
"require": {
"deliciousbrains/wp-background-processing": "^1.0"
}
}