-
Notifications
You must be signed in to change notification settings - Fork 66
/
composer.json
48 lines (48 loc) · 1.35 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": "bukashk0zzz/yml-generator",
"description": "YML (Yandex Market Language) file generator",
"keywords": ["yml", "yandex", "market", "yml-generator"],
"homepage": "https://github.com/Bukashk0zzz/YmlGenerator",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Denis Golubovskiy",
"email": "[email protected]",
"role": "Creator"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Bukashk0zzz/YmlGenerator/issues"
},
"require": {
"php": ">=5.6.1",
"ext-simplexml": "*",
"ext-xmlwriter": "*"
},
"require-dev": {
"ext-dom": "*",
"phpunit/phpunit": "^5.0",
"fzaninotto/faker": "^1.6",
"friendsofphp/php-cs-fixer": "^2.3",
"escapestudios/symfony2-coding-standard": "^3.0",
"phpcompatibility/php-compatibility": "^9.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
},
"autoload": {
"psr-4": {
"Bukashk0zzz\\YmlGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bukashk0zzz\\YmlGenerator\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}