-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (48 loc) · 1.33 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
{
"name": "empaphy/composer-yaml",
"type": "composer-plugin",
"description": "composer.yaml support for Composer",
"license": "MIT",
"keywords": ["composer", "yaml", "plugin", "composer.yaml", "composer.yml"],
"authors": [
{
"name": "Alwin Garside",
"email": "alwin@garsi.de",
"homepage": "https://www.yogarine.com"
}
],
"support": {
"issues": "https://github.com/empaphy/composer-yaml/issues",
"wiki": "https://github.com/empaphy/composer-yaml/wiki",
"source": "https://github.com/empaphy/composer-yaml/tree/main"
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"composer-plugin-api": ">=1.0",
"symfony/yaml": ">=5.0"
},
"require-dev": {
"composer/composer": ">=1.0",
"mikey179/vfsstream": "^1.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Empaphy\\Composer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Empaphy\\Composer\\Test\\": "tests/unit"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"class": "Empaphy\\Composer\\YamlPlugin"
}
}