-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.57 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.57 KB
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
48
49
50
51
52
53
54
55
56
57
{
"name": "baldwin/magento2-module-less-js-compiler",
"description": "Allows Magento 2 to compile less files using the less nodejs compiler",
"license": "MIT",
"type": "magento2-module",
"keywords": [
"magento",
"magento2",
"less",
"compiler"
],
"authors": [
{
"name": "Pieter Hoste",
"email": "pieter@baldwin.be",
"role": "Problem Solver"
}
],
"require": {
"php": "~5.5.0 || ~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"magento/framework": "^100.0.9 || ^101.0.0 || ^102.0.0 || ^103.0.0",
"magento/module-developer": "^100.0.5",
"symfony/process": "^2.8 || ^4.1 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"ergebnis/composer-normalize": "^2.20"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"autoload": {
"psr-4": {
"Baldwin\\LessJsCompiler\\": ""
},
"files": [
"registration.php"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"magento/composer-dependency-version-audit-plugin": true
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
}
}
}