forked from JanBartels/wec_map
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (60 loc) · 1.2 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (60 loc) · 1.2 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
{
"name": "web-tp3/wec_map",
"description": "WEC Google Maps",
"type": "typo3-cms-extension",
"license": "GPL-2.0+",
"authors": [
{
"name": "Christian Technology Ministries International Inc.",
"email": "j.bartels@arcor.de"
},
{
"name": "Thomas Ruta",
"email": "email@thomasruta.de"
}
],
"autoload": {
"psr-4": {
"JBartels\\WecMap\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"JBartels\\WecMap\\": "Tests/"
}
},
"require": {
"typo3/cms-core": "^8.7 || ^9.5",
"php": ">=7.0.0 <=7.2.99",
"typo3/class-alias-loader": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"nimut/testing-framework": "^1.0 || ^2.0 || ^3.0 || ^4.0",
"web-tp3/cag_tests":"^1.2"
},
"replace": {
"wec_map": "self.version",
"typo3-ter/wec-map": "self.version",
"web-tp3/wec-map": "self.version"
},
"extra": {
"typo3/class-alias-loader": {
"always-add-alias-loader": true,
"autoload-case-sensitivity": false,
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
}
},
"scripts": {
"test:php:unit": [
"@php -v",
"@php .Build/bin/phpunit Tests/Unit"
]
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
}
}