-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
78 lines (78 loc) · 2.02 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
{
"name": "evoweb/sf-books",
"type": "typo3-cms-extension",
"description": "Managing lots of books is not easy without a good tool. The book library tries to help you keeping an overview your books and to search easily information about each book.",
"homepage": "https://www.evoweb.de",
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"books",
"library"
],
"support" : {
"source" : "https://github.com/evoWeb/sf_books",
"issues" : "https://github.com/evoWeb/sf_books/issues",
"docs": "https://docs.typo3.org/p/evoweb/sf-books/main/en-us/"
},
"config": {
"vendor-dir": "Build/vendor",
"bin-dir": "bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require": {
"typo3/cms-core": "^13.2 || 13.2.x-dev || dev-main",
"typo3/cms-extbase": "^13.2 || 13.2.x-dev || dev-main",
"typo3/cms-fluid": "^13.2 || 13.2.x-dev || dev-main",
"typo3/cms-install": "^13.2 || 13.2.x-dev || dev-main",
"psr/http-message": "^1.1 || ^2.0",
"doctrine/dbal": "^3.7.2 || ^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.57.1",
"typo3/testing-framework": "dev-main",
"phpunit/phpunit": "^11.3.1",
"webmozart/assert": "^1.11.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"extension-key": "sf_books",
"app-dir": "Build",
"web-dir": "Build/Web"
}
},
"scripts": {
"prepare-release": [
"rm -rf .github",
"rm -rf Build",
"rm -rf Tests",
"rm .gitattributes",
"rm .gitignore",
"sed -i \"s/version' => '.*'/version' => '$(echo ${GITHUB_REF} | cut -d / -f 3)'/\" ext_emconf.php\n"
],
"post-install-cmd": [
"ln -sf vendor/typo3/testing-framework/Resources/Core/Build/ Build/phpunit;"
],
"post-update-cmd": [
"@post-install-cmd"
],
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"autoload": {
"psr-4": {
"Evoweb\\SfBooks\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Evoweb\\SfBooks\\Tests\\": "Tests/"
}
}
}