-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.53 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.53 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
{
"name": "cabi/microformat",
"type": "typo3-cms-extension",
"version": "0.0.8",
"description": "Add microformats to your page.",
"prefer-stable": true,
"autoload": {
"psr-4": {
"HDNET\\Microformat\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"HDNET\\Microformat\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"keywords": [
"TYPO3 CMS",
"Microformat",
"json-ld",
"schema.org",
"event",
"google"
],
"authors": [
{
"name": "Carsten Biebricher",
"email": "cabi@lernziel.de",
"role": "Developer",
"homepage": "https://github.com/cabi"
}
],
"require": {
"php": ">=5.5.0",
"typo3/cms-core": "~6.2.0||~7.6.0||<8.99.99||dev-master"
},
"replace": {
"microformat": "self.version",
"typo3-ter/microformat": "self.version"
},
"homepage": "https://github.com/cabi/microformat",
"license": "GPL-2.0+",
"support": {
"issues": "https://github.com/cabi/microformat/issues"
},
"require-dev": {
"namelesscoder/typo3-repository-client": "1.2.0",
"phpunit/phpunit": "~4.8.0",
"squizlabs/php_codesniffer": "^2.6",
"phpmd/phpmd": "^2.4",
"scrutinizer/ocular": "^1.3.0"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
}
}