-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 991 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 991 Bytes
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
{
"name": "akeneo/extended-attribute-type",
"type": "symfony-bundle",
"description": "Provides new attributes types for Akeneo PIM CE and EE",
"license": "OSL-3.0",
"authors": [
{
"name": "Akeneo",
"homepage": "http://www.akeneo.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/akeneo/pim-community-dev.git"
}
],
"require": {
"akeneo/pim-community-dev": "^2.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"phpspec/phpspec": "@stable"
},
"autoload": {
"psr-4": {
"Pim\\Bundle\\ExtendedAttributeTypeBundle\\": "src/",
"Pim\\Bundle\\ExtendedAttributeTypeBundle\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-1.1": "1.1.x-dev",
"dev-2.0": "2.0.x-dev",
"dev-master": "2.1.x-dev"
}
}
}