30 lines
677 B
JSON
30 lines
677 B
JSON
{
|
|
"name": "getkirby/composer-installer",
|
|
"description": "Kirby's custom Composer installer for the Kirby CMS and for Kirby plugins",
|
|
"type": "composer-plugin",
|
|
"license": "MIT",
|
|
"homepage": "https://getkirby.com",
|
|
"require": {
|
|
"composer-plugin-api": "^1.0 || ^2.0"
|
|
},
|
|
"require-dev": {
|
|
"composer/composer": "^1.8 || ^2.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Kirby\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Kirby\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"fix": "php-cs-fixer fix --config .php_cs",
|
|
"test": "--stderr --coverage-html=tests/coverage"
|
|
},
|
|
"extra": {
|
|
"class": "Kirby\\ComposerInstaller\\Plugin"
|
|
}
|
|
}
|