mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-21 15:32:21 +03:00
Moved third_party directory to vendor which will be used for loading the composer dependencies.
This commit is contained in:
parent
6e08829b6e
commit
7280a5d0c2
34 changed files with 4 additions and 4 deletions
|
@ -13,8 +13,8 @@ var gulp = require('gulp'),
|
||||||
gulp.task('composer', function() {
|
gulp.task('composer', function() {
|
||||||
del.sync([
|
del.sync([
|
||||||
'./composer',
|
'./composer',
|
||||||
'./src/application/third_party/**/*',
|
'./src/vendor/**/*',
|
||||||
'!./src/application/third_party/index.html',
|
'!./src/vendor/index.html',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
exec('composer update && composer install --prefer-dist', function (err, stdout, stderr) {
|
exec('composer update && composer install --prefer-dist', function (err, stdout, stderr) {
|
||||||
|
@ -30,7 +30,7 @@ gulp.task('composer', function() {
|
||||||
'!composer/**/{*.yml,*.md}',
|
'!composer/**/{*.yml,*.md}',
|
||||||
'!composer/codeigniter{,/**}'
|
'!composer/codeigniter{,/**}'
|
||||||
])
|
])
|
||||||
.pipe(gulp.dest('./src/application/third_party/'));
|
.pipe(gulp.dest('./src/vendor/'));
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -72,7 +72,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once __DIR__ . '/application/third_party/autoload.php';
|
require_once __DIR__ . '/vendor/autoload.php';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*---------------------------------------------------------------
|
*---------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue