-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
91 lines (91 loc) · 1.92 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
86
87
88
89
90
91
{
"name": "cdek/woocommerce-delivery-integration",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Ilya Klementiev",
"email": "i.klementev@cdek.ru",
"role": "Creator"
},
{
"name": "Alex V",
"email": "a.viarvelskii@cdek.ru",
"role": "Maintainer"
},
{
"name": "Demin",
"email": "demin.sv@cdek.ru",
"role": "Contributor"
},
{
"name": "Darya Polyakova",
"role": "Supporter"
},
{
"name": "Vika Melnikova",
"role": "Supporter"
}
],
"support": {
"email": "integrator@cdek.ru",
"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",
"composer/installers": "~2.0",
"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,
"allow-plugins": {
"composer/installers": true
},
"platform": {
"php": "7.4"
}
},
"archive": {
"exclude": [
"blueprint",
".*",
"src/Frontend",
"node_modules",
"vendor/composer/installers",
"composer.*",
"package.json",
"yarn.lock",
"webpack.config.js",
"sonar-project.properties",
"guide"
]
},
"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
}
]
}