-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.71 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
{
"name": "markocupic/gallery-creator-bundle",
"keywords": [
"Contao",
"gallery",
"album",
"plugin"
],
"type": "contao-bundle",
"description": "gallery extension for Contao CMS",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Marko Cupic",
"email": "[email protected]",
"homepage": "https://github.com/markocupic",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/markocupic/gallery-creator-bundle/issues",
"source": "https://github.com/markocupic/gallery-creator-bundle",
"forum": "https://community.contao.org/de/showthread.php?22634-gallery_creator"
},
"require": {
"contao/core-bundle": "^5.3",
"php": "^8.1",
"jaybizzle/crawler-detect": "^1.2",
"league/commonmark": "^2.3"
},
"require-dev": {
"contao/easy-coding-standard": "^5.0"
},
"autoload": {
"psr-4": {
"Markocupic\\GalleryCreatorBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Markocupic\\GalleryCreatorBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao/manager-plugin": false,
"contao-components/installer": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs-fixer": "@php tools/ecs/vendor/bin/ecs check config/ contao/ src/ tests/ --config tools/ecs/config.php --fix --ansi",
"unit-tests": "@php tools/phpunit/vendor/bin/phpunit -c tools/phpunit/phpunit.xml.dist",
"phpstan": "@php tools/phpstan/vendor/bin/phpstan analyse src tests"
}
}