-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
126 lines (126 loc) · 3.42 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "cpsit/typo3-personio-jobs",
"description": "TYPO3 CMS Extension to integrate jobs from Personio Recruiting API",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Juliane Wundermann",
"role": "Developer"
},
{
"name": "Elias Häußler",
"email": "[email protected]",
"homepage": "https://www.cps-it.de",
"role": "Developer"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"ext-mbstring": "*",
"cuyz/valinor": "^1.3",
"eliashaeussler/valinor-xml": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"typo3/cms-core": "^11.5 || ^12.4 || ~13.0.0",
"typo3/cms-extbase": "^11.5 || ^12.4 || ~13.0.0",
"typo3/cms-frontend": "^11.5 || ^12.4 || ~13.0.0"
},
"require-dev": {
"armin/editorconfig-cli": "^1.5 || ^2.0",
"brotkrueml/schema": "^2.7 || ^3.0",
"eliashaeussler/version-bumper": "^2.1.1",
"ergebnis/composer-normalize": "^2.29",
"friendsofphp/php-cs-fixer": "^3.57",
"helmich/typo3-typoscript-lint": "^3.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpcov": "^8.2 || ^9.0 || ^10.0",
"saschaegerer/phpstan-typo3": "^1.8",
"ssch/typo3-rector": "^2.0",
"typo3/coding-standards": "^0.7.0 || ^0.8.0",
"typo3/testing-framework": "^7.0.2 || ^8.0.9"
},
"conflict": {
"cuyz/valinor": "1.8.0"
},
"suggest": {
"brotkrueml/schema": "Include JSON schema on job detail pages (^2.7 || ^3.0)"
},
"autoload": {
"psr-4": {
"CPSIT\\Typo3PersonioJobs\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"CPSIT\\Typo3PersonioJobs\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"eliashaeussler/version-bumper": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "personio_jobs",
"web-dir": ".Build/web"
}
},
"scripts": {
"fix": [
"@fix:composer",
"@fix:editorconfig",
"@fix:php"
],
"fix:composer": [
"@composer normalize",
"@composer normalize Resources/Private/Libs/Build/composer.json"
],
"fix:editorconfig": "@lint:editorconfig --fix",
"fix:php": "php-cs-fixer fix",
"lint": [
"@lint:composer",
"@lint:editorconfig",
"@lint:php",
"@lint:typoscript"
],
"lint:composer": "@fix:composer --dry-run",
"lint:editorconfig": "ec",
"lint:php": "@fix:php --dry-run",
"lint:typoscript": "typoscript-lint -c typoscript-lint.yml",
"migration": [
"@migration:rector"
],
"migration:rector": "rector process -c rector.php",
"sca": [
"@sca:php"
],
"sca:php": "phpstan analyse -c phpstan.neon",
"test": [
"@test:functional",
"@test:unit"
],
"test:coverage": [
"@test:coverage:functional",
"@test:coverage:unit",
"@test:coverage:merge"
],
"test:coverage:functional": "phpunit -c phpunit.functional.xml",
"test:coverage:merge": "phpcov merge --html .Build/coverage/html/_merged --clover .Build/coverage/clover.xml --text php://stdout .Build/coverage/php",
"test:coverage:unit": "phpunit -c phpunit.unit.xml",
"test:functional": "@test:coverage:functional --no-coverage",
"test:unit": "@test:coverage:unit --no-coverage"
}
}