-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.74 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
{
"name": "stefanfroemken/plesk-widget",
"type": "typo3-cms-extension",
"description": "TYPO3 extension to show plesk information as widget on TYPO3 DashBoard",
"license": "GPL-2.0-or-later",
"keywords": ["typo3", "TYPO3 CMS", "plesk", "widget"],
"homepage": "https://www.typo3lexikon.de",
"authors": [
{
"name": "Stefan Froemken",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/froemken/plesk_widget/issues",
"source": "https://github.com/froemken/plesk_widget"
},
"require": {
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^10.4.19 || ^11.5.0",
"typo3/cms-dashboard": "^10.4.19 || ^11.5.0",
"plesk/api-php-lib": "1.1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4"
},
"autoload": {
"psr-4": {
"StefanFroemken\\PleskWidget\\": "Classes",
"PleskX\\": "Resources/Private/Php/plesk/api-php-lib/src"
}
},
"config": {
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "plesk_widget",
"app-dir": ".build",
"web-dir": ".build/public"
}
},
"scripts": {
"php:fix": ".build/vendor/bin/php-cs-fixer --config=Build/.php_cs.php fix Classes",
"ci:php:lint": "find *.php Classes Configuration -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:fixer": ".build/vendor/bin/php-cs-fixer --config=Build/.php_cs.php fix --dry-run -v --show-progress=dots --diff Classes",
"link-extension": [
"@php -r 'is_dir($extFolder=__DIR__.\"/.build/public/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
"@php -r 'file_exists($extFolder=__DIR__.\"/.build/public/typo3conf/ext/plesk_widget\") || symlink(__DIR__,$extFolder);'"
],
"post-autoload-dump": [
"@link-extension"
]
}
}