-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.39 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
{
"name": "t3docs/codesnippet",
"description": "This TYPO3 extension creates restructured files to document the API",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"authors": [
{
"name": "Documentation Team",
"role": "Developer"
}
],
"repositories": {
"0": {
"type": "path",
"url": "Tests/Functional/Fixtures/Extensions/*"
}
},
"require": {
"php": "^8.1",
"symfony/console": "^6.4 || ^7.0",
"twig/twig": "^3.10",
"typo3/cms-core": "^12.4 || ^13.2 || dev-main",
"typo3/cms-install": "^12.4 || ^13.2 || dev-main"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"phpstan/phpstan": "^1.10",
"typo3/coding-standards": "dev-main",
"typo3/testing-framework": "^8.0.9",
"typo3tests/example-extension": "@dev"
},
"autoload": {
"psr-4": {
"T3docs\\Codesnippet\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"T3docs\\Codesnippet\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": 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-master": "12.0.x-dev"
},
"typo3/cms": {
"extension-key": "codesnippet",
"web-dir": ".Build/Web"
}
}
}