To make the example clearer we will use gitlab.local as our local server and gitlab.external as our gitlab where we want to push/mirror to
We need to create an ssh key so we can connect to the external Gitlab
ssh-keygen -t
Setup PHP CS Fixer in PHPStorm by adding an external tool and setting the options on the bottom as follows | |
``` | |
Program: php-cs-fixer | |
Parameters: fix $FileDir$/$FileName$ --config $ProjectFileDir$/.php_cs | |
Working directory: $ProjectFileDir$ | |
``` |
# Install GD | |
apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev | |
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ | |
docker-php-ext-install gd |
<?php | |
// create a file in /tests/bootstrap.php at the root of your symfony project | |
$loader = require(__DIR__ . '/../app/autoload.php'); // or whatever path your autoload.php is in | |
if (!class_exists('\PHPUnit_Framework_TestCase') && class_exists('\PHPUnit\Framework\TestCase')) { | |
class_alias('\PHPUnit\Framework\TestCase', '\PHPUnit_Framework_TestCase'); | |
} | |
return $loader; |
If you ever encounter this error:
Vagrant attempted to execute the capability 'configure_networks'
on the detect guest OS 'linux', but the guest doesn't
support that capability. This capability is required for your
configuration of Vagrant. Please either reconfigure Vagrant to
avoid this capability or fix the issue by creating the capability.
find . -type d -name \* -exec chmod 775 {} \; | |
find . -type f -exec chmod 664 {} \; |
<?php | |
namespace Foo\SomeBundle\Repository; | |
use Foo\SomeBundle\Dependency; | |
use Doctrine\ORM\EntityRepository; | |
class SomeRepository extends EntityRepository implements SomeContract | |
{ | |
/** | |
* @var Dependency |
The list is now hosted on a repository so you can PR -> https://github.com/jeroenvdgulik/awesome-talks/blob/master/README.md
<?php | |
$finder = Symfony\CS\Finder\DefaultFinder::create() | |
->files() | |
->name('*.php') | |
->in(__DIR__.'/src') | |
; | |
return Symfony\CS\Config\Config::create() | |
->fixers(array( |
<?php | |
# Git branch output in PHP | |
exec('git symbolic-ref HEAD', $output); | |
$branch = end(explode('/', $output[0]))); |