Skip to content

Commit ae9b0a3

Browse files
committed
Updated composer.json
1 parent 1cf7b30 commit ae9b0a3

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
composer.lock
2+
/vendor

composer.json

+16-3
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,34 @@
33
"description": "Module for Sass processing during static content deployment",
44
"require": {
55
"magento/framework": "~101.0",
6-
"leafo/scssphp": "^0.7.7"
6+
"leafo/scssphp": "^0.7.7",
7+
"magento/module-developer": "^100.2",
8+
"magento/module-store": "^100.2"
79
},
810
"type": "magento2-module",
9-
"version": "1.0.0",
1011
"license": [
1112
"OSL-3.0",
1213
"AFL-3.0"
1314
],
15+
"repositories": [
16+
{
17+
"type": "composer",
18+
"url": "https://repo.magento.com/"
19+
}
20+
],
1421
"autoload": {
1522
"files": [
1623
"registration.php"
1724
],
1825
"psr-4": {
1926
"ClawRock\\SassPreprocessor\\": ""
2027
}
28+
},
29+
"require-dev": {
30+
"phpmd/phpmd": "^2.6",
31+
"php-coveralls/php-coveralls": "^2.1",
32+
"phpunit/phpunit": "^7.3",
33+
"sebastian/phpcpd": "^4.1",
34+
"squizlabs/php_codesniffer": "^3.3"
2135
}
2236
}
23-

0 commit comments

Comments
 (0)