Files
ecowitt2weewx/composer.json

54 lines
1.5 KiB
JSON

{
"name": "comes/ecowitt2weewx",
"description": "Ecowitt2Weewx is a PHP application that converts Ecowitt weather station data to Weewx weather station data.",
"keywords": ["ecowitt", "weewx", "cli"],
"homepage": "https://github.com/comes/ecowitt2weewx",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/comes/ecowitt2weewx/issues",
"source": "https://github.com/comes/ecowitt2weewx"
},
"authors": [
{
"name": "Jeremias Wolff",
"email": "github@jeremias.dev"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5",
"illuminate/http": "^10.0",
"laravel-zero/framework": "^10.0.2",
"nunomaduro/termwind": "^1.15.1"
},
"require-dev": {
"laravel/pint": "^1.8",
"mockery/mockery": "^1.5.1",
"pestphp/pest": "^2.5"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": ["ecowitt2weewx"]
}