Initial commit
This commit is contained in:
commit
08a8a71c55
631 changed files with 139902 additions and 0 deletions
73
public/site/plugins/kql/composer.json
Executable file
73
public/site/plugins/kql/composer.json
Executable file
|
|
@ -0,0 +1,73 @@
|
|||
{
|
||||
"name": "getkirby/kql",
|
||||
"description": "Kirby Query Language",
|
||||
"license": "MIT",
|
||||
"type": "kirby-plugin",
|
||||
"version": "2.1.0",
|
||||
"keywords": [
|
||||
"kirby",
|
||||
"cms",
|
||||
"api",
|
||||
"json",
|
||||
"query",
|
||||
"headless"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Bastian Allgeier",
|
||||
"email": "bastian@getkirby.com"
|
||||
},
|
||||
{
|
||||
"name": "Nico Hoffmann",
|
||||
"email": "nico@getkirby.com"
|
||||
}
|
||||
],
|
||||
"homepage": "https://getkirby.com",
|
||||
"support": {
|
||||
"email": "support@getkirby.com",
|
||||
"issues": "https://github.com/getkirby/kql/issues",
|
||||
"forum": "https://forum.getkirby.com",
|
||||
"source": "https://github.com/getkirby/kql"
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.0.0 <8.3.0",
|
||||
"getkirby/cms": ">=3.8.2",
|
||||
"getkirby/composer-installer": "^1.2.1"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Kirby\\": [
|
||||
"tests/"
|
||||
]
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"getkirby/composer-installer": true
|
||||
},
|
||||
"optimize-autoloader": true
|
||||
},
|
||||
"extra": {
|
||||
"installer-name": "kql",
|
||||
"kirby-cms-path": false
|
||||
},
|
||||
"scripts": {
|
||||
"analyze": [
|
||||
"@analyze:composer",
|
||||
"@analyze:psalm",
|
||||
"@analyze:phpcpd",
|
||||
"@analyze:phpmd"
|
||||
],
|
||||
"analyze:composer": "composer validate --strict --no-check-version --no-check-all",
|
||||
"analyze:phpcpd": "phpcpd --fuzzy --exclude tests --exclude vendor .",
|
||||
"analyze:phpmd": "phpmd . ansi phpmd.xml.dist --exclude 'dependencies/*,tests/*,vendor/*'",
|
||||
"analyze:psalm": "psalm",
|
||||
"ci": [
|
||||
"@fix",
|
||||
"@analyze",
|
||||
"@test"
|
||||
],
|
||||
"fix": "php-cs-fixer fix",
|
||||
"test": "phpunit --stderr --coverage-html=tests/coverage"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue