-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
36 lines (36 loc) · 1 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
{
"name": "wpscholar/stellar-places",
"description": "Stellar Places is an intuitive plugin for easily creating, managing and displaying locations using Google Maps.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Micah Wood",
"homepage": "https://wpscholar.com"
}
],
"require": {
"wp-forge/wp-plugin-check": "^1.0",
"wp-forge/wp-geo-query": "^1.0"
},
"require-dev": {
"wpscholar/phpcs-standards-wpscholar": "@stable",
"wp-cli/wp-cli-bundle": "@stable"
},
"scripts": {
"fix": [
"vendor/bin/phpcbf ."
],
"i18n": [
"vendor/bin/wp i18n make-pot . ./languages/stellar-places.pot --headers='{\"POT-Creation-Date\":null}' --exclude=assets"
],
"lint": [
"vendor/bin/phpcs . -s"
]
},
"scripts-descriptions": {
"fix": "Automatically fix coding standards issues where possible.",
"i18n": "Generate a .pot file for translation.",
"lint": "Check files against coding standards."
}
}