-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.35 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
{
"name": "qbus/geopicker",
"type": "typo3-cms-extension",
"description": "Geopicker",
"keywords": [
"TYPO3",
"extension"
],
"authors": [
{
"name": "Benjamin Franzke",
"email": "bfr@qbus.de",
"role": "Developer",
"homepage": "https://qbus.de"
}
],
"license": "GPL-2.0+",
"require": {
"typo3/cms-core": "^7.6 || ^8.7"
},
"autoload": {
"psr-4": {
"BIESIOR\\Geopicker\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"BIESIOR\\Geopicker\\Tests\\": "Tests"
}
},
"replace": {
"geopicker": "self.version",
"typo3-ter/geopicker": "self.version"
},
"require-dev": {
"typo3/testing-framework": "^2.0",
"php-coveralls/php-coveralls": "^1.0",
"typo3/cms": "^8.7",
"phpstan/phpstan": "^0.9.1"
},
"config": {
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/web"
},
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"scripts": {
"post-autoload-dump": "mkdir -p .build/web/typo3conf/ext/ && ln -snf ../../../.. .build/web/typo3conf/ext/geopicker_"
}
}