-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.32 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
{
"name": "enwikuna/enwikuna-license-manager-client",
"description": "Will help customers to manage their licenses provided by the Enwikuna License Manager and receive automatic updates via releases.",
"homepage": "https://agency.enwikuna.de",
"version": "1.0.0",
"license": [
"GPL-3.0-or-later"
],
"type": "wordpress-plugin",
"authors": [
{
"name": "Johannes F. Gmelin",
"email": "[email protected]",
"role": "Developer & CEO"
}
],
"autoload": {
"classmap": [
"includes/"
],
"psr-4": {
"Enwikuna\\Enwikuna_License_Manager_Client\\": [
"includes/"
]
}
},
"scripts": {
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf -p"
],
"php-cs-fixer-go-yoda": [
"php-cs-fixer fix ./ --rules=yoda_style"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": true,
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": ">=7.4",
"automattic/jetpack-constants": "*",
"defuse/php-encryption": "^2.3.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7.2",
"woocommerce/woocommerce-sniffs": "^0.1.3",
"friendsofphp/php-cs-fixer": ">=v3.15.1"
}
}