-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.03 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
{
"name": "lesti/module-content-version",
"description": "Magento 2 content under version control",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "~5.5.0|~5.6.0|~7.0.0",
"magento/module-backend": "100.0.*",
"magento/module-cms": "100.0.*",
"magento/framework": "100.0.*",
"sebastian/diff": "^1.4",
"zendframework/zend-stdlib": "~2.4.6",
"zendframework/zend-escaper": "~2.4.6"
},
"require-dev": {
"phpunit/phpunit": "^5.3",
"phpmd/phpmd": "^2.4",
"squizlabs/php_codesniffer": "^2.6",
"sebastian/phpcpd": "^2.0",
"satooshi/php-coveralls": "^1.0"
},
"type": "magento2-module",
"scripts": {
"test": "phpunit"
},
"version": "0.1.0",
"license": "MIT",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Lesti\\ContentVersion\\": ""
}
}
}