-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.43 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
{
"name": "m165437/igc2kmz-php",
"description": "PHP wrapper for Python script igc2kmz, an IGC to Google Earth converter. ",
"keywords": [
"paragliding",
"Google Earth",
"igc",
"kmz",
"kml",
"laravel"
],
"license": "MIT",
"authors": [
{
"name": "Michael Schmidt-Voigt",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"illuminate/support": "5.5.x|5.6.x|5.7.x|5.8.x",
"php": "^7.1.3",
"symfony/process": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"m165437/igc2kmz-installer": "^1.0"
},
"autoload": {
"psr-4": {
"M165437\\Igc2KmzPhp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"M165437\\Igc2KmzPhp\\Tests\\": "tests"
}
},
"scripts": {
"clean": "rm -rf vendor/ ext/ composer.lock",
"test": "vendor/bin/phpunit",
"quicktest": "vendor/bin/phpunit --no-coverage",
"install-igc2kmz": "M165437\\Igc2Kmz\\Installer::installIgc2Kmz",
"post-install-cmd": [
"@install-igc2kmz"
],
"post-update-cmd": [
"@install-igc2kmz"
]
},
"extra": {
"laravel": {
"providers": [
"M165437\\Igc2KmzPhp\\Igc2KmzServiceProvider"
]
}
}
}