-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.25 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.25 KB
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
{
"name": "thewunder/conphigure",
"type": "library",
"description": "Framework Agnostic Configuration Library",
"keywords": [
"settings",
"config",
"configuration",
"json",
"yaml",
"ini"
],
"homepage": "https://github.com/thewunder/conphigure",
"license": "MIT",
"authors": [
{
"name": "Michael O'Connell",
"email": "wundbread@gmail.com",
"homepage": "https://github.com/thewunder",
"role": "Developer"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"rector/rector": "^1.0",
"symfony/yaml": "^6.0|^7.0|^8.0",
"vlucas/phpdotenv": "^4.2 || ^5.0"
},
"suggest": {
"symfony/yaml": "^6.0|^7.0|^8.0",
"vlucas/phpdotenv": "^4.2 || ^5.0",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*"
},
"autoload": {
"psr-4": {
"Conphigure\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Conphigure\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}