|
|
@@ -22,19 +22,41 @@ The information shown is the following:
|
|
|
## Installation
|
|
|
|
|
|
Add the following to the "repositories" block in the TYPO3 CMS composer.json file.
|
|
|
- {
|
|
|
- "type": "vcs",
|
|
|
- "url": "https://git2.meramo.org/typo3-Extensions/pagemanager.git"
|
|
|
- }
|
|
|
+```
|
|
|
+ {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://git2.meramo.org/typo3-Extensions/pagemanager.git",
|
|
|
+ "options": {
|
|
|
+ "ssl": {
|
|
|
+ "verify_peer": true,
|
|
|
+ "verify_peer_name": true
|
|
|
+ },
|
|
|
+ "http": {
|
|
|
+ "header": "Authorization: Bearer 4164b811b0774eaa8a34938e39458bcd66309e57"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+```
|
|
|
The repository section will now look like this;
|
|
|
+```
|
|
|
"repositories": [
|
|
|
- ....
|
|
|
- ....
|
|
|
- {
|
|
|
- "type": "vcs",
|
|
|
- "url": "https://git2.meramo.org/typo3-Extensions/pagemanager.git"
|
|
|
- }
|
|
|
+...
|
|
|
+ {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://git2.meramo.org/typo3-Extensions/pagemanager.git",
|
|
|
+ "options": {
|
|
|
+ "ssl": {
|
|
|
+ "verify_peer": true,
|
|
|
+ "verify_peer_name": true
|
|
|
+ },
|
|
|
+ "http": {
|
|
|
+ "header": "Authorization: Bearer 4164b811b0774eaa8a34938e39458bcd66309e57"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+...
|
|
|
]
|
|
|
+```
|
|
|
|
|
|
Save the file and run "composer require meramo/pagemanager" on the command line.
|
|
|
|