This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Services; | |
use Illuminate\Support\Facades\Log; | |
use Symfony\Component\HttpFoundation\File\UploadedFile; | |
/** | |
* stream - Handle raw input stream | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/node_modules | |
/public/hot | |
/public/storage | |
/storage/*.key | |
/vendor | |
/.idea | |
/.vagrant | |
/.composer | |
Homestead.json | |
Homestead.yaml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cloning into 'forge-test.j5dev.co.uk'... | |
Warning: Permanently added the RSA host key for IP address '192.30.253.112' to the list of known hosts. | |
/home/forge/.forge/provision-20157059.sh: line 28: composer: command not found |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@rec5ba001t:~# wget -O forge.sh "https://forge.laravel.com/servers/<SERVER_ID>/vps?forge_token=<FORGE_TOKEN>"; bash forge.sh | |
--2018-08-07 16:24:36-- https://forge.laravel.com/servers/222164/vps?forge_token=<FORGE_TOKEN> | |
Resolving forge.laravel.com (forge.laravel.com)... 104.25.9.32, 104.25.8.32, 2400:cb00:2048:1::6819:920, ... | |
Connecting to forge.laravel.com (forge.laravel.com)|104.25.9.32|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: unspecified [text/html] | |
Saving to: 'forge.sh' | |
forge.sh [ <=> ] 11.77K --.-KB/s in 0s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Auto detect text files and perform LF normalization | |
* text=auto | |
# 3D models | |
*.3dm filter=lfs diff=lfs merge=lfs -text | |
*.3ds filter=lfs diff=lfs merge=lfs -text | |
*.blend filter=lfs diff=lfs merge=lfs -text | |
*.c4d filter=lfs diff=lfs merge=lfs -text | |
*.collada filter=lfs diff=lfs merge=lfs -text | |
*.dae filter=lfs diff=lfs merge=lfs -text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
$(".accordion").on("click", "dd", function () { | |
$("dd.active").find(".content").slideUp("slow"); | |
if (!$(this).hasClass("active")) { | |
$(this).find(".content").slideToggle("slow"); | |
} | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var gutil = require('gulp-util'); | |
var autoprefixer = require('gulp-autoprefixer'); | |
var minifycss = require('gulp-minify-css'); | |
var uglify = require('gulp-uglify'); | |
var rename = require('gulp-rename'); | |
var notify = require('gulp-notify'); | |
var sass = require('gulp-ruby-sass'); | |
var phpunit = require('gulp-phpunit'); | |
var concat = require('gulp-concat'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Eloquent, Validator; | |
/** | |
* Class BaseModel | |
* | |
* @package | |
*/ | |
class BaseModel extends Eloquent { |