-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 745 Bytes
/
Copy pathcomposer.json
File metadata and controls
39 lines (39 loc) · 745 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
{
"name": "nexus633/processenv",
"description": "parse .env files to load variables to $_ENV and/or $_SERVER automatically",
"keywords": [
"env",
"dotenv",
"environment",
"pars"
],
"type": "library",
"license": "GPL-3.0-or-later",
"time": "2023-10-23",
"readme": "README.md",
"autoload": {
"classmap": [
"src/"
],
"psr-4": {
"Nexus633\\Processenv\\": "src/"
}
},
"authors": [
{
"name": "Andre Rohlf",
"email": "A.Rohlf@genx-hosting.de",
"homepage": "https://genx-hosting.de",
"role": "Developer"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}