-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.86 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.86 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
{
"name": "codappix/typo3-php-flexforms",
"description": "Enables usage of PHP FlexForms withing TYPO3.",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"Codappix\\Typo3PhpFlexforms\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Codappix\\Typo3PhpFlexforms\\Tests\\": "Tests/"
}
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"typo3/cms-core": "^12.4 || ^13.4"
},
"require-dev": {
"erickskrauch/php-cs-fixer-custom-fixers": "1.3.1",
"friendsofphp/php-cs-fixer": "^3.4",
"kubawerlos/php-cs-fixer-custom-fixers": "3.36.1",
"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": "^8.3",
"spaze/phpstan-disallowed-calls": "^4.12"
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"web-dir": ".Build/web",
"extension-key": "typo3_php_flexforms"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"project:cgl": "php-cs-fixer fix -v --dry-run --diff --using-cache=no",
"project:cgl:fix": "php-cs-fixer fix --using-cache=no",
"project:lint:php": "find ./*.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"project:phpstan": "phpstan analyse -c phpstan.neon --memory-limit 256M",
"project:test:unit": "phpunit --display-warnings"
}
}