-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
48 lines (48 loc) · 1.05 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": "corpsepk/yii2-yandex-market-yml",
"description": "Yii2 module for automatically generation Yandex.Market YML",
"keywords": ["yii2", "yml", "yandex.market", "module"],
"type": "yii2-extension",
"license": "MIT",
"support": {
"source": "https://github.com/corpsepk/yii2-yandex-market-yml",
"issues": "https://github.com/corpsepk/yii2-yandex-market-yml/issues"
},
"authors": [
{
"name": "Alexsandr Khramov",
"homepage" : "https://github.com/corpsepk"
}
],
"require": {
"ext-xmlwriter": "*",
"php": ">=8.1",
"yiisoft/yii2": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"corpsepk\\yml\\": "src"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"process-timeout": 1800,
"fxp-asset": {
"installer-paths": {
"npm-asset-library": "vendor/npm-asset",
"bower-asset-library": "vendor/bower-asset"
}
},
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}