forked from andreaswolf/typo3-ext-migrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.61 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
{
"name": "kaystrobach/migrations",
"description": "Doctrine migrations integration for TYPO3 CMS",
"license": "GPLv2+",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Kay Strobach",
"email": "[email protected]"
},
{
"name": "Andreas Wolf",
"email": "[email protected]"
},
{
"name": "Christian Rodriguez Benthake",
"email": "[email protected]"
},
{
"name": "Mark Houben",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/migrations": "^2.3.2",
"typo3/cms-core": "^11.5"
},
"require-dev": {
"bnf/phpstan-psr-container": "^1.0",
"ergebnis/composer-normalize": "^2.28",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3",
"phpunit/phpunit": "^9.6",
"saschaegerer/phpstan-typo3": "^1.8",
"symfony/console": "^5.4",
"symfony/filesystem": "^5.4",
"typo3/coding-standards": "^0.5.4",
"typo3/testing-framework": "^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
"KayStrobach\\Migrations\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"KayStrobach\\Migrations\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "migrations"
}
},
"scripts": {
"cs:check": "php-cs-fixer fix --config .php-cs-fixer.php -v --dry-run --diff",
"cs:fix": "php-cs-fixer fix --config .php-cs-fixer.php -v --diff",
"php:static": "phpstan analyze --no-interaction",
"test:php:functional": "phpunit -c ./Build/FunctionalTests.xml"
}
}