'wip'
This commit is contained in:
73
composer.json
Normal file
73
composer.json
Normal file
@@ -0,0 +1,73 @@
|
||||
{
|
||||
"name": "gonoware/laravel-maps",
|
||||
"description": "A Laravel 5 package to add Google Maps to your application",
|
||||
"keywords": [
|
||||
"gonoware",
|
||||
"google",
|
||||
"maps",
|
||||
"laravel",
|
||||
"tracking"
|
||||
],
|
||||
"homepage": "https://gitlab.com/gonoware/laravel-maps",
|
||||
"support": {
|
||||
"issues": "https://gitlab.com/gonoware/laravel-maps/issues",
|
||||
"source": "https://gitlab.com/gonoware/laravel-maps"
|
||||
},
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Emanuel Mutschlechner",
|
||||
"email": "em@gonoware.com"
|
||||
},
|
||||
{
|
||||
"name": "Benedikt Tuschter",
|
||||
"email": "bt@gonoware.com"
|
||||
}
|
||||
],
|
||||
"type": "library",
|
||||
"require": {
|
||||
"php": ">=7.0.0|>=7.1.3",
|
||||
"illuminate/support": "^5.5|^5.6"
|
||||
},
|
||||
"require-dev": {
|
||||
"mockery/mockery": "^1.0",
|
||||
"phpunit/phpunit": "~6.0|~7.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"GoNoWare\\Maps\\": "src/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
},
|
||||
"laravel": {
|
||||
"providers": [
|
||||
"GoNoWare\\Maps\\MapsServiceProvider"
|
||||
]
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build-script": [
|
||||
"yarn install",
|
||||
"yarn run build"
|
||||
],
|
||||
"post-install-cmd": [
|
||||
"@build-script"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"@build-script"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"sort-packages": true
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
}
|
||||
Reference in New Issue
Block a user