-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1019 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
{
"name": "thangnm93/yii2-decomposer",
"description": "A Yii2 package to decompose your installed packages, their dependencies, your app & server environment",
"license": "MIT",
"type": "yii2-extension",
"keywords": [
"yii2",
"thangnm93",
"decomposer",
"yii2 decomposer"
],
"homepage": "https://github.com/thangnm93/yii2-decomposer",
"support": {
"issues": "https://github.com/thangnm93/yii2-decomposer/issues",
"source": "https://github.com/thangnm93/yii2-decomposer"
},
"authors": [
{
"name": "Thang Nguyen",
"email": "contact@thangnm.info"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"yiisoft/yii2": ">=2.0.13"
},
"require-dev": {
"phpunit/phpunit": "<7",
"yiisoft/yii2-dev": ">=2.0.13"
},
"autoload": {
"psr-4": {
"thangnm93\\decomposer\\": "src/",
"thangnm93\\decomposer\\tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true
}
}