-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
69 lines (69 loc) · 1.78 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
{
"name": "t3docs/blog-example",
"description": "This extension contains code examples used in TYPO3 explained to describe the use of Extbase.",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "TYPO3 Documentation Team and contributors",
"role": "Developer"
}
],
"homepage": "https://extensions.typo3.org/extension/blog_example/",
"support": {
"issues": "https://github.com/TYPO3-Documentation/blog_example/issues",
"source": "https://github.com/TYPO3-Documentation/blog_example"
},
"require": {
"typo3/cms-backend": "^13.3 || dev-main",
"typo3/cms-core": "^13.3 || dev-main",
"typo3/cms-extbase": "^13.3 || dev-main",
"typo3/cms-fluid": "^13.3 || dev-main"
},
"require-dev": {
"ergebnis/composer-normalize": "~2.42.0",
"friendsofphp/php-cs-fixer": "^3.52",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0.3",
"typo3/cms-install": "^13.3 || dev-main",
"typo3/testing-framework": "dev-main"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"T3docs\\BlogExample\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"T3docs\\BlogExample\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": 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": "13.0.x-dev"
},
"typo3/cms": {
"extension-key": "blog_example",
"web-dir": ".Build/web"
}
},
"scripts": {
"prepare-release": [
"rm -rf .github",
"rm .gitignore",
"rm .editorconfig"
]
}
}