forked from fnagel/t3extblog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
91 lines (91 loc) · 2.57 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
{
"name": "felixnagel/t3extblog",
"description": "A record based blog extension for TYPO3 CMS powered by Extbase / Fluid. Flexible and powerful!",
"type": "typo3-cms-extension",
"keywords": ["TYPO3 CMS", "blog"],
"homepage": "https://extensions.typo3.org/extension/t3extblog/",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/fnagel/t3extblog/issues",
"docs": "https://docs.typo3.org/typo3cms/extensions/t3extblog/",
"source": "https://github.com/fnagel/t3extblog"
},
"authors": [
{
"name": "Felix Nagel",
"email": "[email protected]",
"homepage": "http://www.felixnagel.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0,<7.4",
"typo3/cms-core": ">=10.4.1,<=10.4.99",
"typo3/cms-dashboard": "^10"
},
"require-dev": {
"nimut/testing-framework": "^5.0",
"squizlabs/php_codesniffer": "^3.5",
"friendsofphp/php-cs-fixer": "^2.16",
"phpmd/phpmd": "^2.8",
"php-parallel-lint/php-parallel-lint": "^0.4",
"helmich/typo3-typoscript-lint": "^2.1"
},
"autoload": {
"psr-4": {
"FelixNagel\\T3extblog\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"FelixNagel\\T3extblog\\Tests\\": "Tests"
}
},
"conflict": {
"typo3-ter/t3blog": ">=0.0.1",
"dmitryd/typo3-realurl": ">=2.0.0,<=2.0.10"
},
"replace": {
"typo3-ter/t3extblog": "self.version"
},
"suggest": {
"typo3/cms-seo": "^10"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "t3extblog",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"test": [
"@test-php-lint",
"@test-php-cs-fixer",
"@test-php-md",
"@test-typoscript-lint"
],
"test-php-lint": [
".Build/bin/parallel-lint ./Classes/",
".Build/bin/parallel-lint ./Configuration/TCA/",
".Build/bin/parallel-lint ./Tests/"
],
"test-php-cs-fixer": [
".Build/bin/php-cs-fixer fix --config=.php_cs.dist --verbose --dry-run ./Classes/",
".Build/bin/php-cs-fixer fix --config=.php_cs.dist --verbose --dry-run ./Configuration/",
".Build/bin/php-cs-fixer fix --config=.php_cs.dist --verbose --dry-run ./Tests/"
],
"test-php-md": [
".Build/bin/phpmd ./Classes/ ansi codesize,design,unusedcode",
".Build/bin/phpmd ./Configuration/ ansi codesize,design,unusedcode",
".Build/bin/phpmd ./Tests/ ansi codesize,design,unusedcode"
],
"test-typoscript-lint": [
".Build/bin/typoscript-lint"
]
}
}