Skip to content

Commit 9b1f514

Browse files
committed
Fix gulpfile bugs and packages json bugs.
1 parent aa0c7b1 commit 9b1f514

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bin/setup-php-toolbox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ cd $DEST
3232
rm -rf node_modules
3333
npm install
3434
npm install gulp -g
35-
gulp composer:install
35+
gulp composer-install
3636

3737
echo "Php dev toolbox install is finished. Use 'gulp help' to see all the available tasks."

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "rregeer/gulp-php-dev-toolbox",
33
"description": "Php development toolbox using the gulp taskrunner",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"keywords": [
66
"Testing", "PHP", "phpunit", "Unittest", "Codestyle", "CI",
77
"Code complexity", "phpcs", "phpcbf", "phplint", "Gulp", "phpmd",

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ if (!configuration.projectRoot) {
2121

2222
configuration.projectRoot = gulp.task.configuration.projectRoot.trim('/');
2323

24-
gulp.task('default', ['composer:install', 'tests', 'checkstyle']);
24+
gulp.task('default', ['composer-install', 'tests', 'checkstyle']);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "git",
66
"url": "https://github.com/richardregeer/gulp-php-dev-toolbox"
77
},
8-
"devDependencies": {
8+
"dependencies": {
99
"del": "2.2.*",
1010
"file-exists": "1.0.*",
1111
"gulp": "3.9.*",

0 commit comments

Comments
 (0)