forked from dikastes/dfg-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request slub#290 from beatrycze-volk/61
Prepare release 6.1
- Loading branch information
Showing
2 changed files
with
67 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,70 @@ | ||
{ | ||
"name": "slub/dfgviewer", | ||
"type": "typo3-cms-extension", | ||
"description": "Remote resources navigator for digital libraries. Reads METS/MODS and METS/TEI via OAI-PMH.", | ||
"homepage": "https://github.com/slub/dfg-viewer", | ||
"keywords": [ | ||
"TYPO3", | ||
"extension", | ||
"dfgviewer" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Sebastian Meyer", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
"name": "slub/dfgviewer", | ||
"type": "typo3-cms-extension", | ||
"description": "Remote resources navigator for digital libraries. Reads METS/MODS and METS/TEI via OAI-PMH.", | ||
"homepage": "https://github.com/slub/dfg-viewer", | ||
"keywords": [ | ||
"TYPO3", | ||
"extension", | ||
"dfgviewer" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Alexander Bigga", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Christos Sidiropoulos", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Thomas Jung", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Sebastian Meyer", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Markus Weigelt", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Beatrycze Volk", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"license": "GPL-3.0-or-later", | ||
"require": { | ||
"typo3/cms-core": "^10.4|^11.5", | ||
"kitodo/presentation": "^5.0|dev-master", | ||
"slub/slub-digitalcollections": "^3.0|dev-master" | ||
}, | ||
{ | ||
"name": "Alexander Bigga", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
"autoload": { | ||
"psr-4": { | ||
"Slub\\Dfgviewer\\": "Classes/" | ||
} | ||
}, | ||
{ | ||
"name": "Thomas Jung", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
"extra": { | ||
"typo3/cms": { | ||
"extension-key": "dfgviewer" | ||
} | ||
}, | ||
{ | ||
"name": "Beatrycze Volk", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
"scripts": { | ||
"docs:setup": "./Build/Documentation/sphinx.sh install", | ||
"docs:serve": "./Build/Documentation/sphinx.sh serve", | ||
"docs:t3": "docker-compose -f ./Build/Documentation/docker-compose.t3docs.yml run --rm t3docs" | ||
}, | ||
{ | ||
"name": "Erik Konrad", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"license": "GPL-3.0-or-later", | ||
"require": { | ||
"typo3/cms-core": "^10.4.36|^11.5", | ||
"kitodo/presentation": "^4.1|dev-master", | ||
"slub/slub-digitalcollections": "^3.0|dev-master" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Slub\\Dfgviewer\\": "Classes/" | ||
} | ||
}, | ||
"extra": { | ||
"typo3/cms": { | ||
"extension-key": "dfgviewer" | ||
} | ||
}, | ||
"scripts": { | ||
"docs:build": [ | ||
"rm -Rf ./Documentation-GENERATED-temp", | ||
"docker run --user=$(id -u):$(id -g) --rm -v ./:/project -it ghcr.io/typo3-documentation/render-guides:latest --config ./Documentation", | ||
"cp ./Build/Documentation/index.html ./Documentation-GENERATED-temp" | ||
], | ||
"docs:start": "docker run -d --name dfgviewer_docs --rm -v ./Documentation-GENERATED-temp:/serve -p 8000:8000 jdkelley/simple-http-server:latest", | ||
"docs:stop": "docker stop dfgviewer_docs", | ||
"docs:rebuild": [ | ||
"@composer docs:stop", | ||
"@composer docs:build", | ||
"@composer docs:start" | ||
] | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"typo3/class-alias-loader": true, | ||
"typo3/cms-composer-installers": true | ||
"config": { | ||
"allow-plugins": { | ||
"typo3/class-alias-loader": true, | ||
"typo3/cms-composer-installers": true | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
'title' => 'DFG Viewer', | ||
'description' => 'Remote resources navigator for digital libraries. Reads METS/MODS and METS/TEI via OAI-PMH.', | ||
'category' => 'distribution', | ||
'author' => 'Sebastian Meyer', | ||
'author' => 'Beatrycze Volk', | ||
'author_email' => '[email protected]', | ||
'author_company' => 'Saxon State and University Library Dresden (SLUB)', | ||
'shy' => '', | ||
|
@@ -39,11 +39,11 @@ | |
'modify_tables' => '', | ||
'clearCacheOnLoad' => false, | ||
'lockType' => '', | ||
'version' => '6.0.0', | ||
'version' => '6.1.0', | ||
'constraints' => [ | ||
'depends' => [ | ||
'typo3' => '10.4.0-11.3.99', | ||
'dlf' => '4.0.1-', | ||
'dlf' => '5.0.0-', | ||
], | ||
'conflicts' => [ | ||
], | ||
|