raspap-webgui/composer.json

32 lines
946 B
JSON
Raw Permalink Normal View History

{
2021-02-03 10:07:15 +01:00
"name": "raspap/raspap-webgui",
"description": "Simple wireless AP setup and mangement for Debian-based devices",
"license": "GPL-3.0",
2020-05-16 12:46:01 +02:00
"homepage": "https://raspap.com/",
"keywords": ["raspberrypi", "debian", "armbian", "wifi"],
"type": "raspap-core",
2020-05-16 13:05:56 +02:00
"authors": [
{
"name": "RaspAP Team",
"email": "billzimmerman@gmail.com",
"homepage": "https://raspap.com/"
}
],
2020-05-16 12:46:01 +02:00
"require": {
2020-05-16 12:54:35 +02:00
"php": "^7.0"
2020-05-16 12:46:01 +02:00
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2.0",
"phpcompatibility/php-compatibility": "^9.3.5",
"squizlabs/php_codesniffer": "^3.5.5"
},
"scripts": {
"lint": "parallel-lint . --exclude vendor",
"phpcs": "phpcs -p -s --config-set installed_paths vendor/phpcompatibility/php-compatibility .",
"test": [
"composer lint",
"composer phpcs"
]
}
}