-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.14 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "yivic/manhphuc-dev-base",
"description": "Building CMS follows the model of MVC for Development of Yivic",
"type": "project",
"authors": [
{
"name": "Phuc Nguyen",
"email": "[email protected]"
},
{
"name": "Yivic",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/manhphuc/yivic-libs-project"
},
{
"type": "git",
"url": "https://github.com/manhphuc/yivic-admin-theme"
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"yivic/yivic-libs-project": "dev-main",
"yivic/yivic-admin-theme": "dev-main",
"composer/installers": "^1.4",
"php": ">=7.2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-types": ["project-lib", "project-theme"],
"installer-paths": {
"libs/": ["type:project-libs"],
"public/template/admin/{$name}/": ["type:project-theme"]
}
},
"autoload": {
"psr-4": {
"yivic\\ManhPhucDevBase\\": ""
}
}
}