Make sure everything is up to date.
2. Install Xcode and its "Command Line Tools"
- Go to App Store and install Xcode.
<?php | |
namespace App\Domain\Repositories; | |
use App\Domain\Repositories\DbRepository; | |
use App\Domain\Entities\SomeEntity; | |
/** | |
* | |
*/ |
var gulp = require('gulp'); | |
var browserSync = require('browser-sync').create(); | |
var sass = require('gulp-sass'); | |
var exec = require('child_process').exec; | |
gulp.task('browser-sync', function() { | |
browserSync.init({ | |
proxy: "app.dev", | |
notify: false |
Make sure everything is up to date.