-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
43 lines (43 loc) · 957 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
40
41
42
43
{
"name": "yiithings/yii2-dotenv",
"description": "PHP DotEnv for Yii2 framework",
"type": "yii2-extension",
"keywords": ["yii2","extension","dotenv"],
"license": "MIT",
"authors": [
{
"name": "Panlatent",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"yiisoft/yii2": "*",
"vlucas/phpdotenv": "^5.3"
},
"autoload": {
"psr-4": {
"yiithings\\dotenv\\": "src/"
},
"files": ["src/autoload.php"]
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0|^7.0|^8.0"
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}