-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 963 Bytes
/
composer.json
File metadata and controls
48 lines (48 loc) · 963 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
45
46
47
48
{
"name": "chillerlan/php-dotenv",
"description": "A simple .env loader - PHP 8.1+",
"homepage": "https://github.com/chillerlan/php-dotenv",
"license": "MIT",
"type": "library",
"minimum-stability": "stable",
"keywords": [
"dotenv", "env", "helper"
],
"authors": [
{
"name": "Smiley",
"email": "smiley@chillerlan.net",
"homepage": "https://github.com/codemasher"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-dotenv/issues",
"source": "https://github.com/chillerlan/php-dotenv"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"phan/phan": "^5.4",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"chillerlan\\DotEnv\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\DotEnvTest\\": "tests/"
}
},
"scripts": {
"phpunit": "@php vendor/bin/phpunit",
"phan": "@php vendor/bin/phan"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true
}
}