Skip to content

Commit

Permalink
[TASK] Normalise composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
brotkrueml committed Jan 7, 2022
1 parent 349da71 commit 4d72705
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "brotkrueml/codehighlight",
"type": "typo3-cms-extension",
"description": "Code highlighter for various programming, markup and configuration languages",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"TYPO3 extension",
"Syntax highlighting",
"Code highlighting"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Chris Müller",
Expand All @@ -25,23 +25,33 @@
},
"require-dev": {
"brotkrueml/coding-standards": "~1.2.0",
"ergebnis/composer-normalize": "^2.15",
"ergebnis/composer-normalize": "~2.18.0",
"php-coveralls/php-coveralls": "^2.4",
"phpunit/phpunit": "^8.5 || ^9.5",
"symfony/yaml": "^4.4 || ^5.4 || ^6.0"
},
"suggest": {
"typo3/cms-t3editor": "Add syntax highlighting in backend form"
},
"autoload": {
"psr-4": {
"Brotkrueml\\CodeHighlight\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Brotkrueml\\CodeHighlight\\Tests\\": "Tests/"
}
},
"config": {
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"ergebnis/composer-normalize": true
}
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"branch-alias": {
Expand All @@ -52,15 +62,5 @@
"extension-key": "codehighlight",
"web-dir": ".Build/web"
}
},
"autoload": {
"psr-4": {
"Brotkrueml\\CodeHighlight\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Brotkrueml\\CodeHighlight\\Tests\\": "Tests/"
}
}
}

0 comments on commit 4d72705

Please sign in to comment.