Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
@roni-estein
roni-estein / composer.json
Last active July 12, 2018 17:20
composer.json autoload section to add test utilities and whatever production
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Helpers/calculations.php"
@roni-estein
roni-estein / TestCase.php
Last active November 19, 2018 18:29
A series of general helper macro's that apply to all tests
<?php
// To make this file work properly, you must create the App\Helpers\Model
// class, and have all models inherit from this class.
namespace Tests;
use App\Helpers\Model;
use PHPUnit\Framework\Assert;
use Illuminate\Support\Collection as BaseCollection;
@roni-estein
roni-estein / MakeViewCommand.php
Created June 23, 2018 19:46
Make View Command for Laravel 5.6, place in app/Console/Commands/ you need to register it in 5.5 and below.
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class MakeViewCommand extends Command
{
/**
* The name and signature of the console command.
@roni-estein
roni-estein / .bash_aliases
Last active November 21, 2021 21:11
Shortcuts for Laravel & PHP Storm
export PATH="~/.composer/vendor/bin:$PATH"
export EDITOR='subl -w'
# export CLICOLOR=1
# export LSCOLORS=ExFxCxDxBxegedabagacad
#ALIASES
#COMMANDS