-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.6 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.6 KB
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
{
"name": "codappix/typo3-php-datasets",
"description": "Enables usage of PHP data sets within TYPO3.",
"type": "library",
"license": "GPL-2.0-or-later",
"keywords": [
"dev",
"testing"
],
"autoload": {
"psr-4": {
"Codappix\\Typo3PhpDatasets\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Codappix\\Typo3PhpDatasets\\Tests\\": "Tests/"
}
},
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"bin": [
"bin/typo3-php-datasets"
],
"require": {
"php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
"composer-runtime-api": "^2.2",
"doctrine/dbal": "^4.3.3",
"symfony/console": "^7.2",
"typo3/cms-core": "^13.4.19 || ^14.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.5 || ^12.2",
"tomasvotruba/cognitive-complexity": "^1.0",
"typo3/testing-framework": "^9.2"
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"web-dir": ".Build/web"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"lock": false,
"sort-packages": true
}
}