-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.67 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
{
"name": "threadi/personio-integration-light",
"version": "4.1.0",
"description": "This plugin supports the embedding of Personio in WordPress.",
"authors": [
{
"name": "Thomas Zwirner",
"email": "[email protected]"
}
],
"type": "wordpress-plugin",
"homepage": "https://laolaweb.com",
"minimum-stability": "stable",
"scripts": {
"post-install-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs,vendor/phpcsstandards/phpcsutils,vendor/phpcsstandards/phpcsextra,vendor/sirbrillig/phpcs-variable-analysis,vendor/automattic/vipwpcs"
],
"post-update-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs,vendor/phpcsstandards/phpcsutils,vendor/phpcsstandards/phpcsextra,vendor/sirbrillig/phpcs-variable-analysis,vendor/automattic/vipwpcs"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"classmap-authoritative": true,
"apcu-autoloader": true,
"prepend-autoloader": false,
"platform-check": false
},
"autoload": {
"psr-4": {
"PersonioIntegrationLight\\": "app/"
}
},
"require": {
"php": "^8.1",
"threadi/easy-dialog-for-wordpress": "^1.0.0",
"threadi/easy-setup-for-wordpress": "^1.0.1"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.1.0",
"pronamic/wp-documentor": "^1.3",
"matthiasmullie/minify": "^1.3",
"automattic/vipwpcs": "^3.0"
}
}