-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
92 lines (92 loc) · 2.69 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
85
86
87
88
89
90
91
92
{
"name": "brotkrueml/schema",
"description": "API and view helpers for schema.org markup",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"TYPO3 extension",
"JSON-LD",
"Structured data",
"SEO",
"schema.org"
],
"authors": [
{
"name": "Chris Müller",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/brotkrueml/schema/issues",
"chat": "https://typo3.slack.com/app_redirect?channel=CV36M73D5",
"source": "https://github.com/brotkrueml/schema",
"docs": "https://docs.typo3.org/p/brotkrueml/schema/main/en-us/"
},
"require": {
"php": ">=8.1",
"typo3/cms-core": "^11.5.19 || ^12.4 || ^13.4",
"typo3/cms-fluid": "^11.5.19 || ^12.4 || ^13.4",
"typo3/cms-frontend": "^11.5.19 || ^12.4 || ^13.4"
},
"require-dev": {
"ext-sqlite3": "*",
"brotkrueml/coding-standards": "~6.1.0",
"ergebnis/composer-normalize": "~2.44.0",
"infection/infection": "^0.29.7",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "1.12.7",
"phpunit/phpunit": "^10.5 || ^11.4",
"rector/rector": "1.2.8",
"symfony/yaml": "^5.4 || ^6.4 || ^7.1",
"symplify/phpstan-rules": "^13.0",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"typo3/cms-adminpanel": "^11.5.19 || ^12.4 || ^13.4",
"typo3/cms-lowlevel": "^11.5.19 || ^12.4 || ^13.4",
"typo3/testing-framework": "^7.0 || ^8.2 || ^9.0"
},
"conflict": {
"brotkrueml/sdbreadcrumb": "*"
},
"suggest": {
"brotkrueml/schema-auto": "Provides additional terms related to auto",
"brotkrueml/schema-bib": "Provides additional terms related to bibliography",
"brotkrueml/schema-health": "Provides additional terms related to health and lifesciences",
"brotkrueml/schema-pending": "Provides pending terms which have yet to be accepted into the core vocabulary",
"brotkrueml/schema-virtuallocation": "Provides pending type VirtualLocation for events",
"typo3/cms-adminpanel": "Display schema.org types and properties on a page in Admin Panel",
"typo3/cms-lowlevel": "Display available schema.org types in the Configuration module"
},
"autoload": {
"psr-4": {
"Brotkrueml\\Schema\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Brotkrueml\\Schema\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"branch-alias": {
"dev-main": "3.7.x-dev"
},
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "schema",
"web-dir": ".Build/web"
}
}
}