ajustement alignement toggle-mode ordi fix #42

This commit is contained in:
antonin gallon 2025-11-28 18:25:43 +01:00
parent 8e9464f248
commit 20e305744f
22 changed files with 3354 additions and 4 deletions

View file

@ -0,0 +1,30 @@
{
"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"
}
}