-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 948 Bytes
/
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
{
"name": "TeamNeustaGmbh/m2t3-magento",
"description": "Combines strength of Magento2 and TYPO3 with usage of SSI/ESI technologies.",
"type": "magento2-module",
"version": "1.0.0",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Thomas von Gostomski",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "~7.0.0",
"ruflin/elastica": "^5.0",
"magento/product-community-edition": "~2.1"
},
"require-dev": {
"phpunit/phpunit": "^4.1"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"TeamNeustaGmbh\\Magentypo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TeamNeustaGmbh\\Magentypo\\": "src"
},
"files": [
"src/registration.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}