This gist is replaced by: https://github.com/bcremer/shopware-with-nginx
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
# Maintainer: Eduard Kracmar <edke.kraken[at]gmail[dot]com> | |
# Contributor: D. Can Celasun <dcelasun[at]gmail[dot]com> | |
# Contributor: Slava Volkov <sv99sv[at]gmail[dot]com> | |
pkgname=phpstorm-eap-noconflict | |
_pkgname=PhpStorm # Directory name in the tar file | |
pkgver=122.864 | |
pkgbuild=122.864 | |
pkgrel=2 | |
pkgdesc="Lightweight and Smart PHP IDE. 30-day free trial." |
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
set-option -g prefix C-a | |
unbind-key C-b | |
bind-key C-a last-window | |
# 0 start numbering at 1 | |
set-option -g base-index 1 | |
# Automatically set window title | |
setw -g automatic-rename |
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
'front' => array( | |
'noErrorHandler' => true, | |
'throwExceptions' => true, | |
), | |
// Template-Cache | |
'template' => array( | |
'forceCompile' => true, | |
), | |
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
!-- Xft settings -- ! | |
Xft.dpi: 96 | |
Xft.antialias: true | |
Xft.rgba: rgb | |
Xft.hinting: true | |
Xft.hinstyle: hintslight | |
*foreground:#A7A7A7 | |
*background:#101010 |
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
# http://pecl.php.net/package/APCu | |
# http://pecl.php.net/package/ZendOpcache | |
# Install ZendOpcache | |
sudo pecl install ZendOpcache-beta | |
sudo -i | |
cat > /etc/php5/mods-available/opcache.ini << EOF | |
zend_extension=/usr/lib/php5/20100525/opcache.so | |
opcache.memory_consumption=128 | |
opcache.interned_strings_buffer=8 |
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 | |
if (file_exists('../config.php')) { | |
$config = include '../config.php'; | |
} elseif (file_exists('../engine/Shopware/Configs/Custom.php')) { | |
$config = include '../engine/Shopware/Configs/Custom.php'; | |
} else { | |
die('Could not find config'); | |
} | |
$dbConfig = $config['db']; |
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
<?xml version="1.0" encoding="utf-8"?> | |
<project name="Ant Condition Example"> | |
<target name="myConditionalTask" depends="myConditionalTask-check, myConditionalTask-fail" if="myConditionalTask-check-property"> | |
<echo message="EXECUTE myConditionalTask" /> | |
</target> | |
<target name="myConditionalTask-fail" unless="myConditionalTask-check-property"> | |
<echo message="SKIPPED myConditionalTask" /> | |
</target> |
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
# .config/i3/config | |
set $mod Mod4 | |
set $alt Mod1 | |
font pango:Segoe UI 8 | |
# Use Mouse+$mod to drag floating windows to their wanted position | |
floating_modifier $mod | |
## Solarized colorshema |
Wrapper around php-cs-fixer with preselected fixers matching the shopware4 CS
We are using the full PSR2 set of fixers now. So the following script is superfluous. Please use directly php-cs-fixer. Please follow the php-cs-fixer installation instructions: http://cs.sensiolabs.org/#installation
OlderNewer