-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
95 lines (95 loc) · 2.87 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
86
87
88
89
90
91
92
93
94
95
{
"name": "fgtclb/academic-jobs",
"description": "The Academic Jobs extension allows users to create and manage job postings.",
"type": "typo3-cms-extension",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "FGTCLB GmbH",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/fgtclb/academic-jobs/issues",
"source": "https://github.com/fgtclb/academic-jobs"
},
"homepage": "https://github.com/fgtclb/academic-jobs",
"repositories": [
{ "type": "git", "url": "https://github.com/andreaswolf/typo3-ext-migrations.git" }
],
"require": {
"php": "^8.1",
"typo3/cms-core": "^11.5",
"typo3/cms-rte-ckeditor": "^11.5"
},
"require-dev": {
"typo3/cms-adminpanel": "^11.5",
"typo3/cms-backend": "^11.5",
"typo3/cms-belog": "^11.5",
"typo3/cms-beuser": "^11.5",
"typo3/cms-dashboard": "^11.5",
"typo3/cms-extbase": "^11.5",
"typo3/cms-extensionmanager": "^11.5",
"typo3/cms-felogin": "^11.5",
"typo3/cms-filelist": "^11.5",
"typo3/cms-filemetadata": "^11.5",
"typo3/cms-fluid": "^11.5",
"typo3/cms-fluid-styled-content": "^11.5",
"typo3/cms-form": "^11.5",
"typo3/cms-frontend": "^11.5",
"typo3/cms-impexp": "^11.5",
"typo3/cms-indexed-search": "^11.5",
"typo3/cms-info": "^11.5",
"typo3/cms-install": "^11.5",
"typo3/cms-linkvalidator": "^11.5",
"typo3/cms-lowlevel": "^11.5",
"typo3/cms-seo": "^11.5",
"typo3/cms-setup": "^11.5",
"typo3/cms-tstemplate": "^11.5",
"typo3/minimal": "^11",
"typo3/cms-composer-installers": "v4.0.0-RC1",
"helhum/typo3-console": "^7.1 || ^8.0",
"saschaegerer/phpstan-typo3": "^1.8",
"friendsofphp/php-cs-fixer": "^3.14",
"bk2k/bootstrap-package": "^14.0",
"kaystrobach/migrations": "0.11.0",
"andreaswolf/typo3-uuid": "^0.3.0",
"cweagans/composer-patches": "^1.7"
},
"autoload": {
"psr-4": {
"FGTCLB\\AcademicJobs\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FGTCLB\\AcademicJobs\\Migrations\\": "Migrations/",
"FGTCLB\\AcademicJobs\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": true
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/Web",
"app-dir": ".Build",
"extension-key": "academic_jobs"
},
"patches": {
"kaystrobach/migrations": {
"Load migrations from autoload-dev": "patches/migrations/autoload.patch"
}
}
},
"scripts": {
"cs:check": "php-cs-fixer fix --config Build/php-cs-fixer/php-cs-rules.php --ansi --diff --verbose --dry-run",
"cs:fix": "php-cs-fixer fix --config Build/php-cs-fixer/php-cs-rules.php --ansi",
"analyze:php": ".Build/bin/phpstan analyse --ansi --no-progress --memory-limit=768M --configuration=Build/phpstan/phpstan.neon",
"analyze:baseline": ".Build/bin/phpstan analyse --ansi --no-progress --memory-limit=768M --configuration=Build/phpstan/phpstan.neon --generate-baseline=Build/phpstan/phpstan-baseline.neon"
}
}