-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.62 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
{
"name": "piotrkreft/config",
"type": "library",
"description": "Component for fetching, merging, and validating configuration from various sources",
"license": "MIT",
"authors": [
{
"name": "Piotr Kreft",
"email": "[email protected]"
}
],
"bin": ["bin/pk-config"],
"require": {
"php": ">=7.2.5",
"symfony/config": "^4.2|^5.0",
"symfony/console": "^3.4|^4.0|^5.0",
"symfony/dependency-injection": "^4.0|^5.0",
"symfony/yaml": "^4.0|^5.0",
"symfony/polyfill-php80": "^1.15"
},
"require-dev": {
"aws/aws-sdk-php": "^3.0",
"composer/package-versions-deprecated": "^1.1",
"piotrkreft/ci": "^0.4",
"symfony/http-kernel": "^4.0|^5.0",
"symfony/framework-bundle": "^4.0|^5.0"
},
"suggest": {
"aws/aws-sdk-php": "For using AWS Simple Systems Manager parameters",
"symfony/http-kernel": "For using the component as Symfony Bundle"
},
"autoload": {
"psr-4": {
"PK\\Config\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PK\\Tests\\Config\\": "tests/"
}
},
"minimum-stability": "dev",
"scripts": {
"test": [
"vendor/bin/pk-tests --cache-dir=. run"
],
"fix": [
"vendor/bin/pk-tests --cache-dir=. fix"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"ocramius/package-versions": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}