fix composer

This commit is contained in:
Yuri Kuznetsov
2021-06-09 15:23:26 +03:00
parent d804ca40f4
commit 61c9bdea92
2 changed files with 7 additions and 3 deletions
+2 -2
View File
@@ -304,11 +304,11 @@ module.exports = function (grunt) {
});
grunt.registerTask("composer", function() {
cp.execSync("composer install --ignore-platform-reqs --no-dev", {stdio: 'ignore'});
cp.execSync("php composer.phar install --no-dev", {stdio: 'ignore'});
});
grunt.registerTask("composer-dev", function() {
cp.execSync("composer install --ignore-platform-reqs", {stdio: 'ignore'});
cp.execSync("php composer.phar install", {stdio: 'ignore'});
});
grunt.registerTask("upgrade", function() {
+5 -1
View File
@@ -55,5 +55,9 @@
"type": "git",
"url": "https://github.com/yurikuzn/lightncandy.git"
}
]
],
"provide": {
"ext-ldap": "*",
"ext-zmq": "*"
}
}