-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
92 lines (92 loc) · 2.81 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
85
86
87
88
89
90
91
92
{
"name": "oneup/contao-backend-limited-width",
"type": "contao-bundle",
"description": "Adds an option to limit the width of the backend.",
"keywords": [
"contao",
"backend",
"limited",
"width",
"ux"
],
"homepage": "https://1up.io",
"license": "MIT",
"authors": [
{
"name": "David Greminger",
"email": "[email protected]",
"homepage": "https://1up.io",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"contao/core-bundle": "^5.3",
"doctrine/dbal": "^3.3",
"symfony/config": "^6.0 || ^7.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0",
"symfony/security-bundle": "^6.0 || ^7.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"contao/manager-plugin": "^2.0"
},
"extra": {
"bamarni-bin": {
"bin-links": false
},
"contao-manager-plugin": "Oneup\\ContaoBackendLimitedWidthBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Oneup\\ContaoBackendLimitedWidthBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Oneup\\ContaoBackendLimitedWidthBundle\\Tests\\": "tests"
}
},
"prefer-stable": true,
"support": {
"email": "[email protected]",
"issues": "https://github.com/1up-lab/contao-backend-limited-width/issues",
"source": "https://github.com/1up-lab/contao-backend-limited-width"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": true
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bin all update --ansi"
],
"cs-fixer": [
"@php vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix -vvv --ansi"
],
"phpstan": [
"@php vendor-bin/phpstan/vendor/bin/phpstan analyze src/ --level max --memory-limit=-1 --ansi"
],
"phpunit": [
"@php vendor-bin/phpunit/vendor/bin/phpunit --colors=always"
],
"rector": [
"@php vendor-bin/rector/vendor/bin/rector process --clear-cache --dry-run"
],
"rector-fix": [
"@php vendor-bin/rector/vendor/bin/rector --clear-cache process"
],
"require-checker": [
"@php vendor-bin/require-checker/vendor/bin/composer-require-checker check --config-file=vendor-bin/require-checker/config.json composer.json --ansi"
]
}
}