-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make composer.json compatible with Akeneo 7
- Loading branch information
1 parent
0ec48f9
commit ee83ef1
Showing
1 changed file
with
41 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,46 @@ | ||
|
||
{ | ||
"name": "niji/auto-attribute-options-setter-bundle", | ||
"type": "symfony-bundle", | ||
"description": "Symfony AutoAttributeOptionsSetterBundle", | ||
"keywords": [ | ||
"Akeneo Attribute Options Creator" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Aymeric Simon", | ||
"email": "aymeric.simon@niji.fr" | ||
"name": "niji/auto-attribute-options-setter-bundle", | ||
"type": "symfony-bundle", | ||
"description": "Symfony AutoAttributeOptionsSetterBundle", | ||
"keywords": [ | ||
"Akeneo Attribute Options Creator" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Aymeric Simon", | ||
"email": "aymeric.simon@niji.fr" | ||
}, | ||
{ | ||
"name": "Bertrand Presles", | ||
"email": "bertrand.presles@niji.fr" | ||
}, | ||
{ | ||
"name": "Benjamin Groleau", | ||
"email": "benjamin.groleau@niji.fr" | ||
}, | ||
{ | ||
"name": "Diglin GmbH", | ||
"email": "support@diglin.com" | ||
} | ||
], | ||
"require": { | ||
"akeneo/pim-community-dev": "^7.0" | ||
}, | ||
{ | ||
"name": "Bertrand Presles", | ||
"email": "bertrand.presles@niji.fr" | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
{ | ||
"name": "Benjamin Groleau", | ||
"email": "benjamin.groleau@niji.fr" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/akeneo/pim-community-dev.git", | ||
"branch": "master" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.0", | ||
"akeneo/pim-community-dev": "^2.3" | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Niji\\AutoAttributeOptionsSetterBundle\\": "" | ||
"autoload": { | ||
"psr-4": { | ||
"Niji\\AutoAttributeOptionsSetterBundle\\": "" | ||
}, | ||
"exclude-from-classmap": [ | ||
"/Tests/" | ||
] | ||
}, | ||
"exclude-from-classmap": [ | ||
"/Tests/" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Niji\\AutoAttributeOptionsSetterBundle\\Tests\\": "/Tests/" | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Niji\\AutoAttributeOptionsSetterBundle\\Tests\\": "/Tests/" | ||
} | ||
} | ||
} | ||
} | ||
} |