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
{ | |
"semart" : { | |
"display" : "xxx Magento", | |
"path" : "\/home\/xxx\/public_html\/yyyy\/magento\/var\/log\/system.log", | |
"refresh" : 5, | |
"max" : 10, | |
"export" : true, | |
"notify" : true, | |
"tags" : [ "magento"], | |
"multiline" : "", |
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
/.idea/** | |
/* | |
!/Configuration | |
!/Packages | |
/Packages/* | |
!/Packages/Application/ | |
/Packages/Application/* | |
!/Packages/Application/Staempfli.Infoscreeen |
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\Dumper; | |
use Symfony\Component\Translation\Dumper\FileDumper; | |
use Symfony\Component\Translation\Dumper\YamlFileDumper; | |
use Symfony\Component\Translation\Exception\InvalidArgumentException; | |
use Symfony\Component\Translation\Exception\LogicException; |
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
#!/usr/bin/env bash | |
vendor/bin/phpstan analyze | |
vendor/bin/ecs check src --config easy-coding-standard.yml | |
bin/phpunit | |
docker exec -it xyz_web bin/phpunit |
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
#!/bin/bash/ | |
## /usr/local/bin/punch.sh | |
if [ ! -d "/var/punchcard" ] | |
then | |
mkdir /var/punchcard | |
fi | |
echo "$1; $(date +"%d.%m.%Y %T"); $(hostname -I) " >> /var/punchcard/punchcard.txt |
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 Socius\Tests\Todo; | |
use Socius\Notifier\TodoNotifier; | |
use Socius\Repository\Todo\CardRepository; | |
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; |