-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
99 lines (99 loc) · 2.82 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
99
{
"name": "league/configuration",
"description": "A simplified and structured way to provide configuration in your PHP project.",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Colin O'Dell",
"email": "colinodell@gmail.com",
"homepage": "https://www.colinodell.com",
"role": "Lead Developer"
},
{
"name": "Mark Halliwell",
"email": "mark@unicorn.fail",
"role": "Contributor"
}
],
"support": {
"docs": "https://github.com/league/configuration/blob/HEAD/README.md",
"issues": "https://github.com/league/configuration/issues",
"rss": "https://github.com/league/configuration/releases.atom",
"source": "https://github.com/league/configuration"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2.5 || ^8.0",
"ext-mbstring": "*",
"dflydev/dot-access-data": "^3.0",
"nette/schema": "^1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.42",
"phpunit/phpunit": "^8.5.8",
"scrutinizer/ocular": "^1.5",
"sempro/phpunit-pretty-print": "^1.4",
"squizlabs/php_codesniffer": "^3.5",
"unleashedtech/php-coding-standard": "^2.5",
"vimeo/psalm": "^3.14"
},
"conflict": {
"scrutinizer/ocular": "1.7.*",
"vimeo/psalm": "3.15.0"
},
"autoload": {
"psr-4": {
"League\\Configuration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"League\\Configuration\\Tests\\Unit\\": "tests/unit"
}
},
"archive": {
"exclude": [
"/.editorconfig",
"/.github",
"/.gitattributes",
"/.gitignore",
"/.scrutinizer.yml",
"/tests",
"/php*.dist",
"/psalm.xml",
"/scripts"
]
},
"scripts": {
"fix": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "./scripts/phpunit --no-coverage --colors=always",
"phpunit-coverage": "./scripts/phpunit --colors=always",
"psalm": "vendor/bin/psalm --config=psalm.xml --output-format=phpstorm --show-info=true --stats --threads=4",
"test": [
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit"
],
"test-coverage": [
"@putenv XDEBUG_MODE=coverage",
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit-coverage"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}