forked from cdek-it/wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 1.77 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "cdek/woocommerce-delivery-integration",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Ilya Klementiev",
"email": "[email protected]",
"role": "Creator"
},
{
"name": "Alex V",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Demin",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Darya Polyakova",
"role": "Supporter"
},
{
"name": "Vika Melnikova",
"role": "Supporter"
}
],
"support": {
"email": "[email protected]",
"docs": "https://github.com/cdek-it/wordpress/wiki",
"source": "https://github.com/cdek-it/wordpress",
"issues": "https://github.com/cdek-it/wordpress/issues",
"forum": "https://github.com/cdek-it/wordpress/discussions"
},
"autoload": {
"psr-4": {
"Cdek\\": "src/"
}
},
"require": {
"php": "^7.4",
"giggsey/libphonenumber-for-php": "^8.13"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"wp-cli/i18n-command": "^2.5"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.4"
}
},
"archive": {
"exclude": [
"blueprint",
".*",
"src/Frontend",
"node_modules",
"vendor/composer/installers",
"composer.*",
"package.json",
"yarn.lock",
"webpack.config.js"
]
},
"scripts": {
"dumplang": [
"vendor/bin/wp --allow-root make-mo lang lang",
"vendor/bin/wp --allow-root make-json --no-purge lang lang"
]
},
"repositories": [
{
"type": "composer",
"url": "https://repo.cdek.ru/repository/cdek-php"
},
{
"packagist.org": false
}
]
}