forked from julianxhokaxhiu/LineageOTA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.37 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
56
57
58
59
60
{
"name": "julianxhokaxhiu/lineage-ota",
"description": "A simple OTA REST Server for LineageOS OTA Updater System Application",
"version": "2.7.0",
"type": "project",
"keywords": [
"android",
"cyanogenmod",
"lineageos",
"ota",
"rest",
"php"
],
"homepage": "https://github.com/julianxhokaxhiu/LineageOTA",
"license": "MIT",
"authors": [
{
"name": "Julian Xhokaxhiu",
"email": "[email protected]",
"homepage": "http://julianxhokaxhiu.com",
"role": "Creator/Lead Developer"
}
],
"repositories": [
{
"type":"package",
"package": {
"name": "julianxhokaxhiu/DotNotation",
"version": "master",
"source": {
"url": "https://gist.github.com/a6098de64195f604f56a.git",
"type": "git",
"reference":"master"
},
"autoload": {
"classmap": ["."]
}
}
}
],
"require": {
"mikecao/flight": "1.*",
"julianxhokaxhiu/DotNotation": "dev-master",
"ext-zip": "*"
},
"autoload": {
"psr-4": {
"JX\\CmOta\\": "src/"
}
},
"replace": {
"julianxhokaxhiu/cyanogenmod-ota":"2.*"
},
"suggest": {
"ext-zip": "This extension is usually enabled, if not make sure it is. LineageOTA requires it to run."
},
"scripts": {
"serve": "php -S 0.0.0.0:8000"
}
}