-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
79 lines (79 loc) · 2.51 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
{
"name": "evoweb/sessionplaner",
"type": "typo3-cms-extension",
"description": "Sessionplaner for TYPO3Camps",
"homepage": "https://github.com/evoWeb/sessionplaner/",
"license": "GPL-2.0-or-later",
"support": {
"docs": "https://docs.typo3.org/p/evoweb/sessionplaner/master/en-us/",
"issues": "https://github.com/evoWeb/sessionplaner/issues",
"source": "https://github.com/evoWeb/sessionplaner"
},
"keywords": [
"sessionplaner",
"barcamp",
"TYPO3Camps"
],
"require": {
"php": ">=7.4.0",
"typo3/cms-backend": "^11.5 || ^12.4",
"typo3/cms-core": "^11.5 || ^12.4",
"typo3/cms-extbase": "^11.5 || ^12.4",
"typo3/cms-extensionmanager": "^11.5 || ^12.4",
"typo3/cms-fluid": "^11.5 || ^12.4",
"typo3/cms-frontend": "^11.5 || ^12.4",
"typo3/cms-install": "^11.5 || ^12.4",
"typo3/cms-form": "^11.5 || ^12.4"
},
"require-dev": {
"bk2k/bootstrap-package": "^14.0",
"friendsofphp/php-cs-fixer": "^3.14",
"overtrue/phplint": "^3.2 || ^4.3 || ^5.3",
"typo3/cms-belog": "^11.5 || ^12.4",
"typo3/cms-beuser": "^11.5 || ^12.4",
"typo3/cms-filelist": "^11.5 || ^12.4",
"typo3/cms-lowlevel": "^11.5 || ^12.4",
"typo3/cms-setup": "^11.5 || ^12.4",
"typo3/cms-tstemplate": "^11.5 || ^12.4"
},
"autoload": {
"psr-4": {
"Evoweb\\Sessionplaner\\": "Classes/"
}
},
"config": {
"bin-dir": ".build/bin",
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "sessionplaner",
"web-dir": ".build/public"
}
},
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"[ -d .build/public/_assets ] || mkdir -p .build/public/typo3conf/ext/",
"[ -d .build/public/_assets ] || [ -L .build/public/typo3conf/ext/sessionplaner ] || ln -snvf ../../../../. .build/public/typo3conf/ext/sessionplaner"
],
"cgl": [
"php-cs-fixer --diff -v fix"
],
"cgl:ci": [
"php-cs-fixer --diff -v --dry-run fix"
],
"test": [
"@test:php:lint"
],
"test:php:lint": [
"phplint"
]
}
}