-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
55 lines (55 loc) · 1.23 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
{
"name": "divanteltd/pimcoredevkit",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"description": "Devkit is a set of command-line tools helping you develop your Pimcore application.",
"keywords": [
"pimcore",
"pimcore-plugin"
],
"homepage": "https://divante.co",
"authors": [
{
"name": "Jakub Płaskonka",
"email": "jplaskonka@divante.pl",
"homepage": "https://divante.co",
"role": "Developer"
},
{
"name": "Bruno Ramalho",
"email": "bramalho@divante.pl",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"pimcore/pimcore": ">=10.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": ">=4.2",
"divante-ltd/pimcore-coding-standards": "^0.1",
"phpmd/phpmd": ">=2.0",
"sebastian/phpcpd": ">=6.0",
"phploc/phploc": ">=4.0",
"codeception/codeception": ">=4.2.2"
},
"autoload": {
"psr-4": {
"PimcoreDevkitBundle\\": "src/"
}
},
"extra": {
"pimcore": {
"bundles": [
"PimcoreDevkitBundle\\PimcoreDevkitBundle"
]
}
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true,
"ocramius/package-versions": true
}
}
}