-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "helhum/dotenv-connector",
"type": "composer-plugin",
"license": "MIT",
"description": "Makes it possible to set environment variables for composer projects.",
"keywords": [
"composer", "env", "12factor", "dotenv"
],
"homepage": "https://github.com/helhum/dotenv-connector",
"authors": [
{
"name": "Helmut Hummel",
"email": "info@helhum.io"
}
],
"autoload": {
"psr-4": {
"Helhum\\DotEnvConnector\\": "src/"
}
},
"require": {
"php": ">=7.4",
"composer-plugin-api": "^1.0 || ^2.0",
"symfony/dotenv": "^5.1 || ^6.4 || ^7.0"
},
"require-dev": {
"composer/composer": "^1.0 || ^2.0",
"phpunit/phpunit": "^8 || ^9",
"mikey179/vfsstream": "^1.6.0",
"composer/semver": "^1.0 || ^2.0 || ^3.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"friendsofphp/php-cs-fixer": "^3.87"
},
"extra": {
"class": "Helhum\\DotEnvConnector\\Plugin",
"branch-alias": {
"dev-latest": "3.x-dev"
}
}
}