forked from DivanteLtd/pimcore-devkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.11 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.11 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
{
"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": ">=7.1",
"pimcore/pimcore": "^6.9 || ^10.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"symfony/phpunit-bridge": "^4.2",
"divante-ltd/pimcore-coding-standards": "^0.1",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^4.1",
"block8/php-docblock-checker": "^1.10",
"phploc/phploc": "^4.0.0"
},
"autoload": {
"psr-4": {
"PimcoreDevkitBundle\\": "src/"
}
},
"extra": {
"pimcore": {
"bundles": [
"PimcoreDevkitBundle\\PimcoreDevkitBundle"
]
}
}
}