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 | |
/** | |
* Created by PhpStorm. | |
* User: Muspi | |
* Date: 29/05/2018 | |
* Time: 16:19 | |
*/ | |
namespace AppBundle\Command; |
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
$ wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.buster_amd64.deb | |
$ sudo dpkg -i wkhtmltox_0.12.5-1.buster_amd64.deb | |
$ sudo apt-get -f install | |
$ sudo cp /usr/local/bin/wkhtmltoimage /usr/bin | |
$ sudo cp /usr/local/bin/wkhtmltopdf /usr/bin |
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 AppBundle\Manager; | |
/** | |
* Base Entity Manager with common methods commonly used | |
* | |
* @author benoit | |
*/ | |
use Doctrine\ORM\EntityManager; | |
use Doctrine\Common\Persistence\ObjectManager; | |
use Doctrine\Common\Persistence\ObjectRepository; |
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
#.git/config | |
[core] | |
repositoryformatversion = 0 | |
filemode = false | |
bare = false | |
logallrefupdates = true | |
autocrlf = false | |
eol = lf |
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
#Put this file on the repo root directory | |
* text=auto eol=lf | |
# Denote all files that are truly binary and should not be modified. | |
*.png binary | |
*.jpg binary | |
*.jpeg binary | |
*.ttf binary | |
*.eot binary | |
*.otf binary |