-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.61 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.61 KB
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
{
"name": "teamneusta/pimcore-backend-branding-bundle",
"description": "Configurable branding for the Pimcore admin backend",
"license": "MIT",
"type": "pimcore-bundle",
"keywords": [
"pimcore"
],
"authors": [
{
"name": "team neusta GmbH",
"email": "info@team-neusta.de",
"homepage": "https://www.team-neusta.de/"
},
{
"name": "Jacob Dreesen",
"email": "j.dreesen@neusta.de",
"role": "Developer"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"pimcore/admin-ui-classic-bundle": "^1.0 || ^2.0",
"pimcore/pimcore": "^11.5 || ^12.0",
"symfony/config": "^6.4 || ^7.4",
"symfony/dependency-injection": "^6.4 || ^7.4",
"symfony/event-dispatcher": "^6.4 || ^7.4",
"symfony/http-foundation": "^6.4 || ^7.4",
"symfony/http-kernel": "^6.4 || ^7.4",
"symfony/routing": "^6.4 || ^7.4",
"symfony/serializer": "^6.4 || ^7.4"
},
"require-dev": {
"dama/doctrine-test-bundle": "^6.0 || ^7.3 || ^8.2",
"ergebnis/composer-normalize": "^2.50.0",
"friendsofphp/php-cs-fixer": "^3.94.2",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.42",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpstan/phpstan-symfony": "^2.0.15",
"phpunit/phpunit": "^9.6.34",
"spatie/phpunit-snapshot-assertions": "^5.3.2",
"symfony/browser-kit": "^6.4 || ^7.4",
"teamneusta/pimcore-testing-framework": "^0.13"
},
"autoload": {
"psr-4": {
"Neusta\\Pimcore\\BackendBrandingBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Neusta\\Pimcore\\BackendBrandingBundle\\Tests\\": "tests/"
},
"classmap": [
"tests/app/TestKernel.php"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
},
"audit": {
"block-insecure": false
},
"sort-packages": true
},
"extra": {
"pimcore": {
"bundles": [
"Neusta\\Pimcore\\BackendBrandingBundle\\NeustaPimcoreBackendBrandingBundle"
]
}
},
"scripts": {
"cs:check": "@cs:fix --dry-run",
"cs:fix": "php-cs-fixer fix --ansi --verbose --diff",
"phpstan": "phpstan analyse --ansi --no-interaction",
"phpstan:baseline": "phpstan analyse --generate-baseline",
"tests": "phpunit"
},
"scripts-descriptions": {
"cs:check": "Checks code style (but doesn't fix anything)",
"cs:fix": "Checks and fixes code style",
"phpstan": "Checks for code smells",
"phpstan:baseline": "Creates a baseline for phpstan",
"tests": "Run all phpunit tests"
}
}