-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
48 lines (48 loc) · 1.08 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
{
"name": "bk2k/extension-helper",
"type": "library",
"description": "Helper for TYPO3 Extension Maintenance",
"keywords": [
"TYPO3 CMS",
"Extension",
"Development",
"Maintenance"
],
"homepage": "https://github.com/benjaminkott/extension-helper",
"authors": [
{
"name": "Benjamin Kott",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://www.bk2k.info/"
}
],
"license": "MIT",
"support": {
"issues": "https://github.com/benjaminkott/extension-helper/issues"
},
"require": {
"symfony/console": "^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64"
},
"autoload": {
"psr-4": {
"BK2K\\ExtensionHelper\\": "src/"
}
},
"bin": [
"extension-helper"
],
"scripts": {
"cgl": [
"php-cs-fixer --diff -v fix"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
}
}