-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
87 lines (87 loc) · 2.52 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
{
"name": "teamneusta/pimcore-backend-branding-bundle",
"description": "Configurable branding for the Pimcore admin backend",
"license": "GPL-3.0-or-later",
"type": "pimcore-bundle",
"keywords": [
"pimcore"
],
"authors": [
{
"name": "team neusta GmbH",
"email": "[email protected]",
"homepage": "https://www.team-neusta.de/"
},
{
"name": "Jacob Dreesen",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"pimcore/pimcore": "^10.6 || ^11.0",
"symfony/config": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/event-dispatcher": "^5.4 || ^6.4",
"symfony/http-foundation": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/routing": "^5.4 || ^6.4",
"symfony/serializer": "^5.4 || ^6.4"
},
"require-dev": {
"dama/doctrine-test-bundle": "^6.0 || ^7.3",
"ergebnis/composer-normalize": "^2.43.0",
"friendsofphp/php-cs-fixer": "^3.64",
"laminas/laminas-zendframework-bridge": "^1.8",
"phpstan/extension-installer": "^1.4.2",
"phpstan/phpstan": "^1.12.1",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-symfony": "^1.4.8",
"phpunit/phpunit": "^9.6.20",
"spatie/phpunit-snapshot-assertions": "^4.2.17",
"symfony/browser-kit": "^5.4 || ^6.4.8",
"teamneusta/pimcore-testing-framework": "^0.12.5"
},
"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,
"phpstan/extension-installer": true
},
"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"
}
}