generated from Crell/php-project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
48 lines (48 loc) · 1.32 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
{
"name": "crell/envmapper",
"description": "A simple, fast mapper from environment variables to classed objects.",
"keywords": [
"Environment",
"Map"
],
"homepage": "https://github.com/Crell/EnvMapper",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Larry Garfield",
"email": "larry@garfieldtech.com",
"homepage": "http://www.garfieldtech.com/",
"role": "Developer"
}
],
"require": {
"php": "~8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpbench/phpbench": "^1.2",
"phpstan/phpstan": "^1.10"
},
"suggest": {
"crell/serde": "A full and robust serialization library. It can do much more advanced manipulation when reading in env vars if EnvMapper is insufficient for your needs."
},
"autoload": {
"psr-4": {
"Crell\\EnvMapper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Crell\\EnvMapper\\": "tests",
"Crell\\EnvMapper\\Benchmarks\\": "benchmarks"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan",
"all-checks": [
"phpunit",
"@phpstan"
],
"benchmarks": "vendor/bin/phpbench run benchmarks --report=aggregate"
}
}