forked from froemken/mysqlreport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.41 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
{
"name": "stefanfroemken/mysqlreport",
"type": "typo3-cms-extension",
"description": "Analyze and profile your TYPO3 databases queries",
"license": "GPL-2.0-or-later",
"keywords": [
"typo3",
"TYPO3 CMS",
"mysql",
"mariadb",
"profiling",
"report",
"mysqlreport"
],
"homepage": "https://www.typo3lexikon.de/",
"authors": [
{
"name": "Stefan Froemken",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/froemken/mysqlreport/issues",
"source": "https://github.com/froemken/mysqlreport"
},
"require": {
"ext-pdo": "*",
"typo3/cms-core": "^11.5.23 || ^12.2.0",
"doctrine/sql-formatter": "^1.1"
},
"require-dev": {
"typo3/testing-framework": "~7.0@dev",
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": "^0.1",
"phpunit/phpunit": "^9.6",
"typo3/coding-standards": "^0.6.1",
"friendsofphp/php-cs-fixer": "^3.14.0"
},
"autoload": {
"psr-4": {
"StefanFroemken\\Mysqlreport\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"StefanFroemken\\Mysqlreport\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/mysqlreport": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"installer-paths": {
"trallala": ["stefanfroemken/mysqlreport"]
},
"typo3/cms": {
"extension-key": "mysqlreport",
"web-dir": ".Build/public"
}
},
"scripts": {
"php:fix": ".build/vendor/bin/php-cs-fixer --config=Build/php-cs-fixer/config.php fix Classes Tests",
"ci:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:fixer": ".build/vendor/bin/php-cs-fixer --config=Build/php-cs-fixer/config.php fix --dry-run -v --show-progress=dots --diff Classes Tests",
"ci:tests:unit": "php -d date.timezone=Europe/Berlin .build/vendor/bin/phpunit -c .build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit",
"ci:tests:functional": "find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo \"Running functional test suite {}\"; php -d date.timezone=Europe/Berlin .build/vendor/bin/phpunit -c .build/vendor/nimut/testing-framework/res/Configuration/FunctionalTests.xml {}';"
}
}