-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
84 lines (84 loc) · 2.17 KB
/
composer.json
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
{
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org"
}
],
"keywords": [
"TYPO3 CMS",
"Static Info Tables"
],
"name": "mselbach/static-info-tables-fr",
"description": "French (fr) language pack for the Static Info Tables providing localized names for countries, currencies and so on.",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Manuel Selbach",
"role": "Developer"
}
],
"replace": {
"typo3-ter/static-info-tables-fr": "self.version"
},
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.4 || dev-main",
"sjbr/static-info-tables": "^12.4 || dev-master"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5",
"typo3/testing-framework": "^8.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-deprecation-rules": "^1.1",
"saschaegerer/phpstan-typo3": "^1.9"
},
"autoload": {
"psr-4": {
"Mselbach\\StaticInfoTablesFr\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Mselbach\\StaticInfoTablesFr\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "static_info_tables_fr",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/static_info_tables_fr ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/static_info_tables_fr"
],
"analyse": [
"[ -e .Build/bin/phpstan ] || composer update",
".Build/bin/phpstan analyse"
],
"extension-cleanup-for-release": [
"rm -rf Tests/",
"rm -f .gitignore",
"rm -f .travis.yml",
"rm -f composer.lock"
]
}
}