Skip to content

Instantly share code, notes, and snippets.

View wbswbs's full-sized avatar
💭
Exploring GitHub Possibilities

Wolfgang Blessen wbswbs

💭
Exploring GitHub Possibilities
View GitHub Profile
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Indexes
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME) !-d
RewriteRule ^ index.php [L,QSA]
</IfModule>
@fedir
fedir / phpstan-install.sh
Last active June 14, 2024 03:33
phpstan install globally as phar
wget -O phpstan.phar https://github.com/phpstan/phpstan/raw/HEAD/phpstan.phar
chmod a+x phpstan.phar
sudo mv phpstan.phar /usr/local/bin/phpstan
phpstan