forked from CodersCare/gridelements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 2.37 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
{
"name": "gridelementsteam/gridelements",
"description": "This TYPO3 extension extends the grid-based concept known from the backend layout of pages to regular content elements - the grid elements. It offers a lot of new features like advanced drag & drop or real references, that improve the usability of the page and list module to speed up the daily work with the backend.",
"type": "typo3-cms-extension",
"version": "11.0.0-dev",
"prefer-stable": true,
"minimum-stability": "dev",
"keywords": ["TYPO3 CMS", "Grids", "Gridelements"],
"homepage": "https://extensions.typo3.org/extension/gridelements",
"support": {
"source": "https://gitlab.com/coderscare/gridelements",
"issues": "https://gitlab.com/coderscare/gridelements/-/issues",
"docs": "https://docs.typo3.org/p/gridelementsteam/gridelements/main/en-us/",
"chat": "https://typo3.slack.com/archives/C037AHC38"
},
"license": "GPL-2.0-or-later",
"require": {
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2",
"typo3/cms-core": "^10.4 || ^11.5 || dev-master",
"typo3/cms-backend": "^10.4 || ^11.5 || dev-master",
"typo3/cms-recordlist": "^10.4 || ^11.5 || dev-master",
"typo3/cms-frontend": "^10.4 || ^11.5 || dev-master"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1.0",
"friendsoftypo3/phpstan-typo3": "^0.8.1",
"phpstan/phpstan": "^0.12.99"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"process-timeout": 1000,
"vendor-dir": ".Build/vendor"
},
"scripts": {
"php:fix": ".Build/vendor/bin/php-cs-fixer --config=Configuration/php-cs-fixer.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=Configuration/php-cs-fixer.php fix --dry-run -v --show-progress=dots Classes Configuration Tests",
"ci:php:stan": ".Build/vendor/bin/phpstan --no-progress",
"phpstan:baseline": ".Build/vendor/bin/phpstan --generate-baseline=phpstan-baseline.neon",
"typo3:docs:render": [
"docker-compose run --rm t3docmake"
],
"typo3:docs:serve": [
"php -S 127.0.0.1:4000 -t Documentation-GENERATED-temp/Result/project/0.0.0"
]
},
"extra": {
"typo3/cms": {
"extension-key": "gridelements"
}
},
"autoload": {
"psr-4": {
"GridElementsTeam\\Gridelements\\": "Classes/"
}
}
}