-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.87 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.87 KB
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
{
"name": "silverassist/leadgen-app-form",
"description": "WordPress plugin that adds a shortcode to display LeadGen App forms with desktop-id and mobile-id parameters, featuring professional height controls and cross-platform integration",
"type": "wordpress-plugin",
"license": "PolyForm-Noncommercial-1.0.0",
"authors": [
{
"name": "Silver Assist",
"email": "info@silverassist.com",
"homepage": "http://silverassist.com/"
}
],
"require": {
"php": ">=8.2",
"composer/installers": "^1.0",
"silverassist/wp-github-updater": "^1.3",
"silverassist/wp-settings-hub": "^1.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"php-stubs/wordpress-stubs": "^6.6",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7 || ^4.0",
"szepeviktor/phpstan-wordpress": "^1.3 || ^2.0",
"wp-coding-standards/wpcs": "^3.0",
"arts/elementor-stubs": "^3.35"
},
"autoload": {
"psr-4": {
"LeadGenAppForm\\": "includes/",
"LeadGenAppForm\\Block\\": "includes/",
"LeadGenAppForm\\Elementor\\": "includes/elementor/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": "phpunit",
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpstan": "phpstan analyse --memory-limit=512M",
"lint": "find . -name '*.php' -not -path './vendor/*' -exec php -l {} \\;"
},
"support": {
"issues": "https://github.com/SilverAssist/leadgen-app-form/issues",
"source": "https://github.com/SilverAssist/leadgen-app-form"
},
"keywords": [
"wordpress",
"plugin",
"leadgen",
"forms",
"responsive",
"gutenberg",
"elementor",
"shortcode"
],
"extra": {
"installer-name": "leadgen-app-form"
}
}