-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.18 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
{
"name": "renttek/magento2-virtual-controllers",
"description": "A module which enables developers to create virtual controllers in Magento 2",
"type": "magento2-module",
"license": "MIT",
"version": "2.1.2",
"authors": [
{
"name": "Julian Nuß",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~7.1",
"ext-dom": "*",
"magento/framework": ">=100.0",
"magento/module-url-rewrite": ">=100.0"
},
"require-dev": {
"phpunit/phpunit": "~6.2.0",
"squizlabs/php_codesniffer": "~3.2",
"phpmd/phpmd": "~2.6",
"phpstan/phpstan": "^0.12.8"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"autoload": {
"files": [
"src/registration.php",
"src/functions.php"
],
"psr-4": {
"Renttek\\VirtualControllers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Renttek\\VirtualControllers\\Test\\": "test/"
}
}
}