-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
108 lines (107 loc) · 2.74 KB
/
composer.json
File metadata and controls
108 lines (107 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "evoweb/store-finder",
"type": "typo3-cms-extension",
"description": "Store Finder",
"homepage": "https://www.evoweb.de",
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"TYPO3",
"extension",
"store finder",
"store locator",
"poi",
"shop list",
"Google Maps",
"OpenStreetMap",
"open street map"
],
"support": {
"source" : "https://github.com/evoWeb/store_finder",
"issues": "https://github.com/evoWeb/store_finder/issues",
"docs": "https://docs.typo3.org/p/evoweb/store-finder/main/en-us/"
},
"config": {
"vendor-dir": "Build/vendor",
"bin-dir": "bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"php-http/discovery": true
}
},
"require": {
"php": "^8.2",
"typo3/cms-core": "^14.1 || 14.*.*@dev || dev-main",
"typo3/cms-backend": "^14.1 || 14.*.*@dev || dev-main",
"typo3/cms-extbase": "^14.1 || 14.*.*@dev || dev-main",
"typo3/cms-fluid": "^14.1 || 14.*.*@dev || dev-main",
"typo3/cms-frontend": "^14.1 || 14.*.*@dev || dev-main",
"typo3/cms-install": "^14.1 || 14.*.*@dev || dev-main",
"doctrine/annotations": "^2.0.2",
"doctrine/dbal": "^4.1.1",
"guzzlehttp/guzzle": "^7.9.2",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"symfony/console": "^7.1",
"geocoder-php/google-maps-provider": "^4.7.1",
"php-http/discovery": "^1.16",
"phpoffice/phpspreadsheet": "^2.2.0 || ^5.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64.0",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"phpstan/phpdoc-parser": "^1.30.0",
"phpstan/phpstan": "^1.12.5",
"phpunit/phpunit": "^11.0.3",
"typo3/testing-framework": "dev-main",
"sjbr/static-info-tables": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"extension-key": "store_finder",
"app-dir": "Build",
"web-dir": "Build/Web"
}
},
"scripts": {
"prepare-release": [
"rm -rf .github",
"rm -rf Build",
"rm -rf Tests",
"rm .gitattributes",
"rm .gitignore",
"sed -i \"s/version' => '.*'/version' => '$(echo ${GITHUB_REF} | cut -d / -f 3)'/\" ext_emconf.php\n"
],
"post-install-cmd": [
"ln -sf vendor/typo3/testing-framework/Resources/Core/Build/ Build/phpunit;"
],
"post-update-cmd": [
"@post-install-cmd"
],
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"autoload": {
"psr-4": {
"Evoweb\\StoreFinder\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Evoweb\\StoreFinder\\Tests\\": "Tests/"
}
},
"repositories": {
"static_info_tables": {
"url": "https://github.com/garbast/static_info_tables.git",
"type": "git"
}
}
}