-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
38 lines (38 loc) · 1 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
{
"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.2",
"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": "^5",
"mikey179/vfsstream": "^1.6.0",
"composer/semver": "^1.0 || ^2.0 || ^3.0"
},
"extra": {
"class": "Helhum\\DotEnvConnector\\Plugin",
"branch-alias": {
"dev-latest": "3.x-dev"
}
}
}