Skip to content

Instantly share code, notes, and snippets.

View imanalopher's full-sized avatar
🏠
Working from home

Imanali Mamadiev imanalopher

🏠
Working from home
  • https://twitter.com/imanalopher
  • Chelyabinks
View GitHub Profile
# the different stages of this Dockerfile are meant to be built into separate images
# https://docs.docker.com/compose/compose-file/#target
ARG PHP_VERSION=7.2
ARG NODE_VERSION=10
ARG NGINX_VERSION=1.15
FROM php:${PHP_VERSION}-fpm-alpine AS sylius_php
# persistent / runtime deps
OmniAuth with GitHub acount
https://api.github.com/users/:user
https://api.github.com/users/:user/repos
https://api.github.com/repos/:user/:repo/git/refs
@imanalopher
imanalopher / CesarCipher.php
Last active June 24, 2016 18:16
Шифр цезаря
<?php
class CesarCipher
{
private $alphabet;
private $shift;
/**
* @param string $alphabet
*/