-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.81 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.81 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
{
"type": "project",
"require": {
"php": "^8.0",
"automattic/jetpack-autoloader": "^3.1",
"chillerlan/php-qrcode": "^5",
"oblak/serbian-validators": "^1",
"oblak/wp-plugin-installer": "^2.1",
"x-wp/asset-loader": "^1.1",
"x-wp/di": "^1.0",
"x-wp/helper-functions": "^1.18",
"x-wp/helper-woocommerce": "^1.13",
"x-wp/wc-template-customizer": "^1.0"
},
"require-dev": {
"filp/whoops": "^2.16",
"oblak/wordpress-coding-standard": "^1.1.1",
"php-stubs/woocommerce-stubs": "^9.0",
"php-stubs/wordpress-stubs": "^6.5",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"swissspidy/phpstan-no-private": "^0.2.0",
"symfony/var-dumper": "^5.4",
"szepeviktor/phpstan-wordpress": "^1.3",
"x-wp/whoops": "^1.0"
},
"autoload": {
"psr-4": {
"Oblak\\WCSRB\\": "lib/"
},
"classmap": [
"lib/Gateway/",
"lib/QR/"
],
"files": [
"lib/Functions/wcsrb-address-field-fns.php",
"lib/Functions/wcsrb-helpers.php",
"lib/Functions/wcsrb-payment-slip.php",
"lib/Functions/wcsrb-settings.php"
]
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"classmap-authoritative": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0"
},
"sort-packages": true
},
"scripts": {
"generate-pot": [
"cd ~/projects/srw && ddev exec wp i18n make-pot wp-content/plugins/serbian-addons-for-woocommerce wp-content/plugins/serbian-addons-for-woocommerce/languages/serbian-addons-for-woocommerce.pot"
]
}
}