-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
98 lines (98 loc) · 2.39 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
92
93
94
95
96
97
98
{
"name": "sandrokeil/interop-config",
"description": "Provides interfaces and a concrete implementation to create instances depending on configuration via factory classes and ensures a valid config structure. It can also be used to auto discover factories and to create configuration files.",
"homepage": "https://github.com/sandrokeil/interop-config",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"php",
"config",
"interop",
"service",
"factory",
"options",
"interfaces",
"standard",
"configuration"
],
"config": {
"sort-packages": true
},
"authors": [
{
"name": "Sandro Keil",
"homepage": "https://sandro-keil.de",
"role": "maintainer"
}
],
"support": {
"issues": "https://github.com/sandrokeil/interop-config/issues",
"source": "https://github.com/sandrokeil/interop-config",
"docs": "http://sandrokeil.github.io/interop-config/"
},
"autoload": {
"psr-4": {
"Interop\\Config\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InteropTest\\Config\\": "test/",
"InteropBench\\Config\\": "benchmark/"
}
},
"require": {
"php": "^7.1 || ^8.0"
},
"require-dev": {
"bookdown/bookdown": "^1.1.0",
"malukenho/docheader": "^0.1.7",
"php-coveralls/php-coveralls": "^2.1",
"phpbench/phpbench": "^0.15",
"phpunit/phpunit": "^7.0.1 || ^9.3.8",
"squizlabs/php_codesniffer": "^3.0",
"webuni/commonmark-attributes-extension": "^0.5.0",
"webuni/commonmark-table-extension": "^0.6.1"
},
"suggest": {
"psr/container": "To retrieve config in your factories"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.1-dev",
"dev-develop": "2.2-dev"
}
},
"bin": [
"bin/interop-config"
],
"scripts": {
"check": [
"@cs",
"@docheader",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --no-coverage",
"test-coverage": "phpunit",
"docheader": "docheader check src/ test/ benchmark/",
"docs": "bookdown doc/bookdown.json",
"benchmark": "phpbench run -v --report=table"
},
"archive": {
"exclude": [
".coveralls.yml",
".scrutinizer.yml",
".travis.yml",
"benchmark",
"build",
"humbug.json.dist",
"phpbench.json.dist",
"phpunit.xml*",
"test"
]
}
}