-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·29 lines (29 loc) · 845 Bytes
/
composer.json
File metadata and controls
executable file
·29 lines (29 loc) · 845 Bytes
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
{
"name": "nhrst/smartsync-table",
"description": "A WordPress plugin to fetch data from a remote API, display it via a custom block, and manage it in the admin area.",
"type": "wordpress-plugin",
"license": "GPLv2",
"authors": [
{
"name": "Nazmul Hasan Robin",
"email": "robin.sust08@gmail.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Nhrst\\SmartsyncTable\\": "includes/"
},
"files": [ "includes/functions.php" ]
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.9",
"wp-coding-standards/wpcs": "dev-develop",
"phpcsstandards/phpcsutils": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}