-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 902 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 902 Bytes
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
{
"name": "stefna/config",
"description": "Lightweight config loader with type safety",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andreas Sundqvist",
"email": "andreas@stefna.is"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"psr/container": "^2.0",
"stefna/ds-collection": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"stefna/codestyle": "^1.15",
"phpstan/phpstan": "^1.10",
"bnf/phpstan-psr-container": "^1.0",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan-phpunit": "^1.1",
"tomasvotruba/type-coverage": "^1.0",
"phpstan/extension-installer": "^1.2"
},
"autoload": {
"psr-4": {
"Stefna\\Config\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stefna\\Config\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}