-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (59 loc) · 1.61 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "obsidian-forms/obsidian-forms",
"type": "wordpress-plugin",
"description": "A powerful block-based form builder for WordPress.",
"homepage": "https://obsidianforms.com",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Obsidian Forms",
"homepage": "https://obsidianforms.com/"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*"
},
"require-dev": {
"johnpbloch/wordpress-core": "6.5.*",
"wp-cli/i18n-command": "^2.6",
"wp-coding-standards/wpcs": "^3",
"phpcompatibility/phpcompatibility-wp": "*",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Obsidian_Forms\\": "src/"
},
"classmap": [
"models/"
]
},
"autoload-dev": {
},
"scripts": {
"generate-autoloader": "@composer dump-autoload -o",
"format:php": "phpcbf --standard=./.phpcs.xml --basepath=. . -v",
"lint:php": "phpcs --standard=./.phpcs.xml --basepath=. . -v",
"internationalize": [
"@makepot",
"@updatepo",
"@makejson"
],
"makepot": "wp i18n make-pot .",
"updatepo": "wp i18n update-po ./languages/obsidian-forms.pot",
"makejson": "wp i18n make-json ./languages --pretty-print --no-purge",
"makemo": "wp i18n make-mo ./languages",
"packages-install": "@composer install --ignore-platform-reqs --no-interaction",
"packages-update": [
"@composer clear-cache",
"@composer update --prefer-stable --no-interaction"
]
},
"config": {
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}