Skip to content

Commit

Permalink
Merge pull request #29 from beatrycze-volk/allow-plugins
Browse files Browse the repository at this point in the history
[MAINTENANCE] Allow composer plugin for PHPStan
  • Loading branch information
beatrycze-volk authored Oct 1, 2024
2 parents 97fbf23 + e49665f commit eeccee6
Showing 1 changed file with 49 additions and 43 deletions.
92 changes: 49 additions & 43 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,53 @@
{
"name": "slub/digas-fe-management",
"type": "typo3-cms-extension",
"description": "TYPO3 extension for the DiGA.Sax frontend user management.",
"homepage": "https://github.com/slub/digas-fe-management",
"keywords": [
"TYPO3",
"extension",
"frontend user"
],
"authors": [
{
"name": "Alexander Bigga",
"email": "[email protected]",
"homepage": "https://www.slub-dresden.de",
"role": "Developer"
"name": "slub/digas-fe-management",
"type": "typo3-cms-extension",
"description": "TYPO3 extension for the DiGA.Sax frontend user management.",
"homepage": "https://github.com/slub/digas-fe-management",
"keywords": [
"TYPO3",
"extension",
"frontend user"
],
"authors": [
{
"name": "Alexander Bigga",
"email": "[email protected]",
"homepage": "https://www.slub-dresden.de",
"role": "Developer"
},
{
"name": "Stephan Gonder",
"email": "[email protected]",
"homepage": "https://www.sandstein.de",
"role": "Developer"
},
{
"name": "Felix Franz",
"email": "[email protected]",
"homepage": "https://www.sandstein.de",
"role": "Developer"
}
],
"license": "GPL-3.0-or-later",
"require": {
"typo3/cms-core": "^10.4|^11.5",
"in2code/femanager": "^7.1",
"derhansen/fe_change_pwd": "^3.0"
},
{
"name": "Stephan Gonder",
"email": "[email protected]",
"homepage": "https://www.sandstein.de",
"role": "Developer"
"autoload": {
"psr-4": {
"Slub\\DigasFeManagement\\": "Classes/"
}
},
{
"name": "Felix Franz",
"email": "[email protected]",
"homepage": "https://www.sandstein.de",
"role": "Developer"
}
],
"license": "GPL-3.0-or-later",
"require": {
"typo3/cms-core": "^10.4|^11.5",
"in2code/femanager": "^7.1",
"derhansen/fe_change_pwd": "^3.0"
},
"autoload": {
"psr-4": {
"Slub\\DigasFeManagement\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "digas_fe_management"
"extra": {
"typo3/cms": {
"extension-key": "digas_fe_management"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}
}
}

0 comments on commit eeccee6

Please sign in to comment.