-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.35 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
{
"name": "hungthai1401/laravel-application-version",
"description": "Simple way to get app market version information from Google Play store or Apple App Store",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "application", "version", "app store", "apple store", "google play"],
"authors": [
{
"name": "Nguyen Hung Thai",
"email": "[email protected]"
}
],
"homepage": "https://github.com/hungthai1401/laravel-application-version",
"require": {
"php": ">=7.1",
"ext-json": "*",
"illuminate/support": "^5.5|^6",
"guzzlehttp/guzzle": "^6.5",
"symfony/dom-crawler": "^5.0",
"symfony/css-selector": "^4.3|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"HT\\ApplicationVersion\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HT\\ApplicationVersion\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"HT\\ApplicationVersion\\Providers\\ServiceProvider"
],
"aliases": {
"ApplicationVersion": "HT\\ApplicationVersion\\Facades\\Facade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}