-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.77 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.77 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
{
"name": "saccas/mapgeoadmin",
"description": "map geo admin extension https://map.geo.admin.ch",
"type": "typo3-cms-extension",
"homepage": "https://map.geo.admin.ch",
"license": ["GPL-2.0-or-later"],
"autoload": {
"psr-4": {
"Saccas\\Mapgeoadmin\\": "Classes"
}
},
"require": {
"php": ">= 8.3 < 8.4",
"typo3/cms-backend": "^13.4",
"typo3/cms-core": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-fluid": "^13.4",
"typo3/cms-frontend": "^13.4"
},
"require-dev": {
"a9f/typo3-fractor": "^0.5.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"saschaegerer/phpstan-typo3": "^2.1",
"ssch/typo3-rector": "^3.1",
"typo3/coding-standards": "^0.8.0",
"typo3/cms-install": "^13.4"
},
"scripts": {
"lint": [
"! find Classes -type f -name \"*.php\" -exec php -d error_reporting=32767 -l {} \\; 2>&1 >&- | grep \"^\"",
"! find Tests -type f -name \"*.php\" -exec php -d error_reporting=32767 -l {} \\; 2>&1 >&- | grep \"^\""
],
"cs": "./.Build/vendor/bin/php-cs-fixer fix -v --config=./Build/.php-cs-fixer.php --diff --dry-run ",
"rector": "./.Build/vendor/bin/rector process -v --config=./Build/rector.php --output-format=console --dry-run"
},
"replace": {
"typo3-ter/mapgeoadmin": "self.version"
},
"config": {
"lock":false,
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"allow-plugins": {
"a9f/fractor-extension-installer": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "mapgeoadmin",
"web-dir": ".Build/public"
}
}
}