forked from BrandOriented/PimcoreCiHubConnector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
95 lines (95 loc) · 2.48 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
93
94
95
{
"name": "bo-hub/ci-hub-api-bundle",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"description": "REST Adapter for CI-HUB",
"keywords": [
"pimcore",
"pimcore-bundle"
],
"homepage": "https://github.com/BrandOriented/PimcoreCiHubConnector",
"authors": [
{
"name": "CI HUB GmbH",
"email": "info@ci-hub.com",
"homepage": "https://ci-hub.com"
},
{
"name": "Brand Oriented",
"email": "biuro@brandoriented.pl",
"homepage": "https://brandoriented.pl",
"role": "Developer"
},
{
"name": "Dominik Labudzinski",
"email": "dominik@labudzinski.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/BrandOriented/PimcoreCiHubConnector/issues",
"docs": "https://github.com/BrandOriented/PimcoreCiHubConnector/blob/master/README.md"
},
"prefer-stable": true,
"minimum-stability": "stable",
"require": {
"php": "^8.2 || ^8.3",
"elasticsearch/elasticsearch": "^7.0 || ^8.9",
"handcraftedinthealps/elasticsearch-dsl": "^8.0",
"league/flysystem-bundle": "^3.2",
"nelmio/api-doc-bundle": "^4.12",
"pimcore/admin-ui-classic-bundle": "^1.4.0",
"pimcore/data-hub": "^1.7.0",
"symfony/messenger": "^5.0 || ^6.0 || ^7.0",
"webmozart/assert": "^1.11",
"zircote/swagger-php": "^3.0 || ^4.7"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-symfony": "^3.1",
"codeception/module-webdriver": "^4.0.0",
"dg/bypass-finals": "^1.5",
"friendsofphp/php-cs-fixer": "^3.28",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.3",
"phpunitgen/console": "^5.0",
"rector/rector": "^1.0.2",
"symfony/phpunit-bridge": "*",
"symplify/easy-coding-standard": "^9.0"
},
"autoload": {
"psr-4": {
"CIHub\\Bundle\\SimpleRESTAdapterBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CIHub\\Bundle\\SimpleRESTAdapterBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"preferred-install": {
"pimcore/pimcore": "source",
"*": "dist"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"replace": {
"ci-hub/simple-rest-adapter-bundle": "*"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"pimcore": {
"bundles": [
"CIHub\\Bundle\\SimpleRESTAdapterBundle\\SimpleRESTAdapterBundle"
]
}
}
}