-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
55 lines (55 loc) · 1.52 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
53
54
55
{
"name": "imunc/iplacard",
"description": "iPlacard by IMUNC",
"minimum-stability": "stable",
"version": "2.4.0-dev",
"homepage": "http://iplacard.com",
"license": "Dual-licensed proprietary",
"authors": [
{
"name": "Kaijia Feng",
"email": "[email protected]",
"homepage": "https://www.kaijia.me"
}
],
"require": {
"imunc/iplacard-3rdparty": "2.4.*",
"codeigniter/framework": "3.1.*",
"codeigniter/translations": "3.1.*",
"phpoffice/phpspreadsheet": "1.7.*"
},
"repositories": [
{
"type":"package",
"package": {
"name": "imunc/iplacard-3rdparty",
"version": "master",
"source": {
"url": "https://github.com/fengkaijia/iplacard-3rdparty.git",
"type": "git",
"reference": "master"
}
}
},
{
"type":"package",
"package": {
"name": "codeigniter/translations",
"version": "3.1.10",
"source": {
"url": "https://github.com/bcit-ci/codeigniter3-translations.git",
"type": "git",
"reference": "3.1.10"
}
}
}
],
"scripts": {
"pre-autoload-dump": [
"rm -Rf static/{css,js,fonts,img}",
"cp -R vendor/imunc/iplacard-3rdparty/css vendor/imunc/iplacard-3rdparty/js vendor/imunc/iplacard-3rdparty/fonts vendor/imunc/iplacard-3rdparty/img static/",
"cp -R vendor/codeigniter/translations/language/simplified-chinese vendor/codeigniter/framework/system/language/",
"mkdir -p data/0/avatar/ data/0/delete/ data/0/dir/ data/0/document/ data/0/invoice/ data/0/log/ temp/0/download/ temp/0/upload/avatar/ temp/0/upload/document/"
]
}
}