-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
#151 - Shift to PHP8.0
- Loading branch information
Showing
54 changed files
with
1,469 additions
and
2,331 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
#!/bin/bash | ||
|
||
# Easier navigation: .., ..., ...., ....., ~ and - | ||
alias ..="cd .." | ||
alias ...="cd ../.." | ||
alias ....="cd ../../.." | ||
alias .....="cd ../../../.." | ||
alias ~="cd ~" # `cd` is probably faster to type though | ||
alias -- -="cd -" | ||
|
||
# Shortcuts | ||
alias g="git" | ||
alias h="history" | ||
|
||
# Detect which `ls` flavor is in use | ||
if ls --color > /dev/null 2>&1; then # GNU `ls` | ||
colorflag="--color" | ||
else # OS X `ls` | ||
colorflag="-G" | ||
fi | ||
|
||
# List all files colorized in long format | ||
# shellcheck disable=SC2139 | ||
alias l="ls -lF ${colorflag}" | ||
|
||
# List all files colorized in long format, including dot files | ||
# shellcheck disable=SC2139 | ||
alias la="ls -laF ${colorflag}" | ||
|
||
# List only directories | ||
# shellcheck disable=SC2139 | ||
alias lsd="ls -lF ${colorflag} | grep --color=never '^d'" | ||
|
||
# See: https://superuser.com/a/656746/280737 | ||
alias ll='LC_ALL="C.UTF-8" ls -alF' | ||
|
||
# Always use color output for `ls` | ||
# shellcheck disable=SC2139 | ||
alias ls="command ls ${colorflag}" | ||
export LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:' | ||
|
||
# Always enable colored `grep` output | ||
alias grep='grep --color=auto ' | ||
|
||
# Enable aliases to be sudo’ed | ||
alias sudo='sudo ' | ||
|
||
# Get week number | ||
alias week='date +%V' | ||
|
||
# Stopwatch | ||
alias timer='echo "Timer started. Stop with Ctrl-D." && date && time cat && date' | ||
|
||
# Canonical hex dump; some systems have this symlinked | ||
command -v hd > /dev/null || alias hd="hexdump -C" | ||
|
||
# vhosts | ||
alias hosts='sudo nano /etc/hosts' | ||
|
||
# copy working directory | ||
alias cwd='pwd | tr -d "\r\n" | xclip -selection clipboard' | ||
|
||
# copy file interactive | ||
alias cp='cp -i' | ||
|
||
# move file interactive | ||
alias mv='mv -i' | ||
|
||
# untar | ||
alias untar='tar xvf' | ||
|
||
# Zephir related | ||
alias untar='tar xvf' | ||
|
||
PATH=$PATH:./vendor/bin |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
FROM composer:latest as composer | ||
FROM php:8.3-fpm | ||
|
||
LABEL vendor="Phalcon" \ | ||
maintainer="Phalcon Team <team@phalcon.io>" \ | ||
description="Phalcon Migrations working environment" | ||
|
||
ENV PHALCON_VERSION="5.5.0" \ | ||
PHP_VERSION="8.3" | ||
|
||
ADD ./extra.ini /usr/local/etc/php/conf.d/ | ||
|
||
# Update | ||
RUN apt update -y && \ | ||
apt install -y \ | ||
apt-utils \ | ||
gettext \ | ||
git \ | ||
libpq-dev \ | ||
libzip-dev \ | ||
nano \ | ||
sudo \ | ||
wget \ | ||
zip | ||
|
||
# PECL Packages | ||
RUN pecl install phalcon-${PHALCON_VERSION} \ | ||
xdebug | ||
|
||
# Install PHP extensions | ||
RUN docker-php-ext-install \ | ||
gettext \ | ||
pdo_mysql \ | ||
pdo_pgsql \ | ||
zip | ||
|
||
# Install PHP extensions | ||
RUN docker-php-ext-enable \ | ||
opcache \ | ||
phalcon \ | ||
xdebug | ||
|
||
# Cleanup | ||
RUN apt autoremove -y \ | ||
&& apt autoclean -y \ | ||
&& apt clean -y \ | ||
&& rm -rf /tmp/* /var/tmp/* \ | ||
&& find /var/cache/apt/archives /var/lib/apt/lists /var/cache \ | ||
-not -name lock \ | ||
-type f \ | ||
-delete \ | ||
&& find /var/log -type f | while read f; do echo -n '' > ${f}; done | ||
|
||
# Composer | ||
COPY --from=composer /usr/bin/composer /usr/local/bin/composer | ||
# Bash script with helper aliases | ||
COPY ./.bashrc /root/.bashrc | ||
COPY ./.bashrc /home/phalcon/.bashrc | ||
|
||
CMD ["php-fpm"] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
error_reporting=E_ALL | ||
display_errors="On" | ||
display_startup_errors="On" | ||
log_errors="On" | ||
error_log=/tmp/php_errors.log | ||
memory_limit=512M | ||
apc.enable_cli="On" | ||
session.save_path="/tmp" |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.