-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
60 lines (60 loc) · 1.43 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
{
"name": "flagbit/table-attribute-bundle",
"description": "The Flagbit Table Attribute Bundle for Akeneo PIM gives you the possibility to enrich your product with multi-dimensional data presentation in the form of tables, allowing you maximum flexibility within the PIM.",
"keywords": [
"akeneo",
"table",
"attribute",
"pim",
"multidimensional"
],
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Claudio Zizza",
"email": "claudio.zizza@flagbit.de",
"role": "Developer"
},
{
"name": "Antonio Mansilla",
"email": "antonio.mansilla@flagbit.de",
"role": "Developer"
},
{
"name": "Angel Vazquez",
"email": "angel.vazquez@flagbit.de",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Flagbit\\Bundle\\TableAttributeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Flagbit\\Bundle\\TableAttributeBundle\\Test\\": "tests/"
}
},
"require": {
"php": "8.0.*",
"ext-json": "*",
"akeneo/pim-community-dev": "^6.0"
},
"require-dev": {
"phpspec/phpspec": "^7.2",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.7",
"overtrue/phplint": "^4.3",
"symfony/debug-bundle": "^5.4.0",
"symfony/web-profiler-bundle": "^5.4.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
}
}