Composer extensions

This commit is contained in:
Matteo Gallo
2026-07-03 20:05:15 +02:00
parent 5ca4743197
commit d8a4481a03
1747 changed files with 3503 additions and 194889 deletions

View File

@@ -0,0 +1,20 @@
root = true
[{*.rst,*.rst.txt}]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 3
max_line_length = 80
# MD-Files
[*.md]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 4
max_line_length = 80

21
typo3conf/ext/ods_osm/.gitignore vendored Normal file
View File

@@ -0,0 +1,21 @@
.vscode
Documentation-GENERATED-temp
.Build
.idea
nbproject
.DS_Store
.DS_Store?
composer.lock
package-lock.json
/.php_cs
/.php_cs.cache
.ddev/**
.project/**
/var
/config
Resources/Private/geophp.phar

File diff suppressed because it is too large Load Diff

View File

@@ -1,38 +1,17 @@
<?php
/***************************************************************
* Extension Manager/Repository config file for ext "ods_osm".
*
* Auto generated 15-10-2025 10:41
*
* Manual updates:
* Only the data in the array - everything else is removed by next
* writing. "version" and "dependencies" must not be touched!
***************************************************************/
$EM_CONF[$_EXTKEY] = array (
'title' => 'OpenStreetMap',
'description' => 'Add an interactive OpenStreetMap map to your website. Can also show other OpenLayers compatible maps.',
'category' => 'plugin',
'version' => '4.2.2',
'state' => 'stable',
'uploadfolder' => false,
'clearcacheonload' => false,
'author' => 'Robert Heel',
'author_email' => 'typo3@bobosch.de',
'author_company' => NULL,
'constraints' =>
array (
'depends' =>
array (
'typo3' => '11.5.0-12.4.99',
),
'conflicts' =>
array (
),
'suggests' =>
array (
),
),
);
$EM_CONF[$_EXTKEY] = [
'title' => 'OpenStreetMap',
'description' => 'Add an interactive OpenStreetMap map to your website. Can also show other OpenLayers compatible maps.',
'author' => 'Robert Heel',
'author_email' => 'typo3@bobosch.de',
'category' => 'plugin',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-12.4.99',
],
'conflicts' => [],
'suggests' => [],
],
'state' => 'stable',
'version' => '4.2.2',
];