-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 889 Bytes
/
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
{
"name": "enjoys/dotenv",
"description": "Registers environment variables from a .env file",
"keywords": [
"environment",
"env",
"dotenv"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Enjoys\\Dotenv\\": "src/"
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^5.15",
"infection/infection": "^0.26",
"symfony/var-dumper": "^v6.0"
},
"scripts": {
"psalm": "psalm",
"infection": "XDEBUG_MODE=coverage infection -j2 --configuration=infection.json",
"test": "phpunit",
"static": [
"@test",
"@psalm"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}