-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.44 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
{
"name": "fgtclb/academic-persons-sync",
"description": "Adds some configuration for external users providers like Active Directory",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Tim Schreiner",
"email": "tim.schreiner@km2.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/fgtclb/academic-persons-edit/issues",
"source": "https://github.com/fgtclb/academic-persons-edit"
},
"repositories": {
"academic-persons": {
"type": "git",
"url": "https://github.com/fgtclb/academic-persons.git"
},
"academic-persons-edit": {
"type": "git",
"url": "https://github.com/fgtclb/academic-persons-edit.git"
},
"typo3-ext-migrations": {
"type": "git",
"url": "https://github.com/andreaswolf/typo3-ext-migrations.git"
}
},
"require": {
"php": "^8.0",
"typo3/cms-core": "^11.5",
"fgtclb/academic-persons": "^0.2.0 | dev-main",
"fgtclb/academic-persons-edit": "^0.2.0 | dev-main"
},
"require-dev": {
"typo3/minimal": "v11.5.0",
"typo3/cms-composer-installers": "v4.0.0-RC1",
"kaystrobach/migrations": "0.11.0",
"helhum/typo3-console": "^7.1 || ^8.0",
"saschaegerer/phpstan-typo3": "^1.8",
"friendsofphp/php-cs-fixer": "^3.14",
"typo3/cms-felogin": "^11.5",
"andreaswolf/typo3-uuid": "^0.3.0",
"bk2k/bootstrap-package": "^14.0",
"cweagans/composer-patches": "^1.7"
},
"autoload": {
"psr-4": {
"Fgtclb\\AcademicPersonsSync\\": "Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": true
},
"scripts": {
"phpcsfixer": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --dry-run --using-cache=no --diff",
"phpstan": "phpstan analyse --ansi --no-progress --memory-limit=1024M --configuration=phpstan.neon"
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/public",
"app-dir": ".Build",
"extension-key": "academic_persons_sync"
},
"patches": {
"kaystrobach/migrations": {
"Load migrations from autoload-dev": "patches/migrations/autoload.patch"
}
}
}
}