-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
30 lines (30 loc) · 932 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
{
"name": "pavankataria/laravel-ota-distribution-ios",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/pavankataria/laravel-ota-distribution-ios"
}
],
"description": "This package creates the html download views and routes required for both uploading ios builds and the creation of manifest files ready for downloading the ios builds.",
"keywords": ["laravel", "ota", "ios", "distribution", "over the air", "ipa"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pavan Kataria",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.5.9",
"illuminate/support": "8.*",
"nesbot/carbon": "^2.53.1"
},
"autoload": {
"psr-4" : {
"PavanKataria\\OtaDistributionIos\\" : "src/"
}
}
}