-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.65 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
{
"name": "pimcore/studio-backend-bundle",
"license": "proprietary",
"type": "pimcore-bundle",
"description": "Pimcore Studio Backend Bundle",
"config": {
"discard-changes": true,
"sort-packages": true,
"preferred-install": {
"pimcore/pimcore": "source",
"*": "dist"
},
"allow-plugins": {
"php-http/discovery": false
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "~8.2.0 || ~8.3.0",
"nesbot/carbon": "^2.65",
"pimcore/static-resolver-bundle": "1.x-dev",
"pimcore/generic-data-index-bundle": "2.x-dev",
"pimcore/pimcore": "^11.x-dev",
"zircote/swagger-php": "^4.8",
"ext-zip": "*",
"symfony/mercure": "^0.6.5",
"symfony/mercure-bundle": "^0.3.9",
"lcobucci/jwt": "^5.3"
},
"require-dev": {
"pimcore/admin-ui-classic-bundle": "^v1.3",
"roave/security-advisories": "dev-latest",
"codeception/codeception": "^5.0.10",
"codeception/phpunit-wrapper": "^9",
"codeception/module-asserts": "^2",
"codeception/module-symfony": "^3.1.1",
"phpstan/phpstan": "1.10.5",
"phpstan/phpstan-symfony": "^1.2.20",
"phpunit/phpunit": "10.2.7",
"nyholm/psr7": "^1",
"symfony/phpunit-bridge": "^6",
"fakerphp/faker": "^1.23"
},
"autoload": {
"psr-4": {
"Pimcore\\Bundle\\StudioBackendBundle\\": "src/",
"Pimcore\\": "core-extension/Pimcore/"
}
},
"autoload-dev": {
"psr-4": {
"Pimcore\\Bundle\\StudioBackendBundle\\Tests\\": "tests"
}
},
"extra": {
"pimcore": {
"bundles": [
"Pimcore\\Bundle\\StudioBackendBundle\\PimcoreStudioBackendBundle"
]
}
}
}