forked from TYPO3-svn-archive/operations
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
83 lines (83 loc) · 2.62 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
{
"name": "kanow/operations",
"type": "typo3-cms-extension",
"description": "Manage firefighter operations with detailed reports, images used resources or vehicles, map view for locations. Possibly to use it for other reportable events like THW and so on.",
"license": ["GPL-2.0-or-later"],
"keywords": [
"TYPO3",
"extension",
"firefighter",
"operations"
],
"require": {
"typo3/cms-core": "^12.4 || ^13.4"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.2.0"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64.0",
"helmich/typo3-typoscript-lint": "^3.1.0",
"php-coveralls/php-coveralls": "^2.5.3",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.2",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.0",
"spaze/phpstan-disallowed-calls": "^3.4",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"tomasvotruba/type-coverage": "^0.3.1",
"phpunit/phpunit": "^9.6.9 || ^10.5",
"saschaegerer/phpstan-typo3": "^1.8.5",
"typo3/cms-fluid-styled-content": "^12.4.1 || ^13.1",
"webmozart/assert": "^1.11.0",
"typo3/cms-install": "^12.4.1 || ^13.1",
"typo3/coding-standards": "^0.6.1 || ^0.8.0",
"typo3/testing-framework": "^7.0.2 || ^8.0.9",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"extra": {
"typo3/cms": {
"operations": "operations",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "operations"
},
"branch-alias": {
"dev-main": "8.1.x-dev"
}
},
"autoload": {
"psr-4": {
"Kanow\\Operations\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Kanow\\Operations\\Tests\\": "Tests"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"testUnit": ".Build/bin/phpunit -c Build/UnitTests.xml",
"testFunctional": ".Build/bin/phpunit -c Build/FunctionalTests.xml",
"ci:php:lint": "parallel-lint ./*.php *.php Classes Configuration Tests",
"ci:php:cs-fixer": "php-cs-fixer fix --config .php-cs-fixer.php -v --dry-run --diff",
"ci:php:stan": "phpstan --no-progress -v",
"fix:php:cs": "php-cs-fixer fix --config .php-cs-fixer.php",
"phpstan:baseline": "phpstan --generate-baseline --allow-empty-baseline"
},
"minimum-stability": "dev",
"prefer-stable": true
}