forked from TYPO3GmbH/querybuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 2.29 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
84
{
"name": "t3g/querybuilder",
"type": "typo3-cms-extension",
"description": "Backend extension for query builder in list module.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "TYPO3 GmbH",
"role": "Developer",
"homepage": "https://typo3.com/"
}
],
"homepage": "https://extensions.typo3.org/extension/querybuilder/",
"support": {
"issues": "https://github.com/TYPO3GmbH/querybuilder/issues",
"docs": "https://docs.typo3.org/p/t3g/querybuilder/master/en-us/",
"source": "https://github.com/TYPO3GmbH/querybuilder.git",
"slack": "https://typo3.slack.com/archives/ext-querybuilder"
},
"autoload": {
"psr-4": {
"T3G\\Querybuilder\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"T3G\\Querybuilder\\Tests\\": "Tests/"
}
},
"config": {
"preferred-install": {
"t3g/*": "source",
"*": "dist"
},
"sort-packages": true,
"discard-changes": true,
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "querybuilder",
"app-dir": ".build",
"web-dir": ".build/public"
}
},
"scripts": {
"t3g:test:php:functional": [
"Composer\\Config::disableProcessTimeout",
"phpunit -c phpunit.xml --testsuite \"Functional Test Suite\""
],
"t3g:test": [
"@t3g:test:php:functional"
],
"t3g:phplint": [
"phplint"
],
"t3g:cgl": [
"php-cs-fixer fix -v --dry-run --using-cache false --diff --diff-format=udiff"
],
"post-autoload-dump": [
"mkdir -p .build/public/typo3conf/ext/", "[ -L .build/public/typo3conf/ext/querybuilder ] || ln -svnf ../../../../. .build/public/typo3conf/ext/querybuilder",
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"require": {
"php": ">=7.2.0",
"ext-json": "*",
"ext-pdo": "*",
"psr/http-message": "^1.0.0",
"typo3/cms-backend": "^10.1",
"typo3/cms-core": "^10.1",
"typo3/cms-recordlist": "^10.1"
},
"require-dev": {
"overtrue/phplint": "^1.1",
"bk2k/extension-helper": "^1.0",
"friendsofphp/php-cs-fixer": "^2.12",
"roave/security-advisories": "dev-master",
"typo3/testing-framework": "^5.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}