-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
85 lines (85 loc) · 2.05 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
{
"name": "lochmueller/autoloader",
"type": "typo3-cms-extension",
"description": "Automatic components loading of ExtBase extensions to get more time for coffee in the company ;) This ext is not a PHP SPL autoloader or class loader - it is better! Loads CommandController, Xclass, Hooks, FlexForms, Slots, TypoScript, TypeConverter, BackendLayouts and take care of createing needed templates, TCA configuration or translations at the right location.",
"autoload": {
"psr-4": {
"HDNET\\Autoloader\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"HDNET\\Autoloader\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"keywords": [
"TYPO3 CMS",
"Autoloader",
"Component",
"Magic",
"Extbase"
],
"authors": [
{
"name": "Tim Lochmüller",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://github.com/lochmueller"
}
],
"require": {
"php": "^7.4||^8.0",
"typo3/cms-core": "^10.4.6||^11.1"
},
"replace": {
"typo3-ter/autoloader": "self.version"
},
"homepage": "https://github.com/lochmueller/autoloader",
"license": "GPL-2.0-or-later",
"require-dev": {
"typo3/testing-framework": "^6.2",
"friendsofphp/php-cs-fixer": "^3.0",
"scrutinizer/ocular": "^1.3",
"rector/rector": "^0.12.9",
"phpstan/phpstan": "^1.2"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "autoloader",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
},
"scripts": {
"code:all": [
"@tool:rector",
"@tool:php-cs-fixer",
"@tool:phpstan"
],
"code": [
"@tool:php-cs-fixer"
],
"tool:rector": [
"rector"
],
"tool:phpstan": [
"phpstan analyse -l 6 Classes Tests"
],
"tool:php-cs-fixer": [
"php-cs-fixer fix --config .phpcs"
],
"test": [
"phpunit -c Tests/Unit/Build/UnitTests.xml --coverage-text --testdox"
],
"test:clover": [
"phpunit -c Tests/Unit/Build/UnitTests.xml --coverage-clover coverage.xml"
]
}
}