-
Notifications
You must be signed in to change notification settings - Fork 3
v2.0.1 Prep #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
v2.0.1 Prep #9
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7f2af75
changed phalcon version for actions
niden d68858c
added 8.2 for local docker development and updated phalcon
niden 4ebf590
updated versions from RC
niden fc2bc39
correcting issue #8
niden b49c0b9
phpcs
niden 586d3c3
updating checkout action to v3
niden 70d035b
updating changelog
niden File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,18 @@ | ||
| ## [2.0.0](https://github.com/Codeception/module-phalcon5/releases/tag/1.0.0) (12-16-2021) | ||
|
|
||
| - Fixed `getRawBody()` return type [#8](https://github.com/Codeception/module-phalcon5/issues/8) | ||
|
|
||
| ## [2.0.0](https://github.com/Codeception/module-phalcon5/releases/tag/1.0.0) (12-16-2021) | ||
|
|
||
| - Use of Codeception v5+ | ||
| - Use of Phalcon 5.0.0RC1+ | ||
| - Corrected namespaces | ||
| - Cosmetic changes | ||
|
|
||
| ## [1.0.1](https://github.com/Codeception/module-phalcon5/releases/tag/1.0.0) (12-16-2021) | ||
|
|
||
| - Corrections for Packagist descriptions and PHP minimum version | ||
|
|
||
| ## [1.0.0](https://github.com/Codeception/module-phalcon5/releases/tag/1.0.0) (12-11-2021) | ||
|
|
||
| - Support Phalcon 5.0.0beta1 | ||
| - Support Phalcon 5.0.0beta1 | ||
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
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
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
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
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
| 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| FROM composer:latest as composer | ||
| FROM php:8.1-fpm | ||
|
|
||
| ADD ./extra.ini /usr/local/etc/php/conf.d/ | ||
|
|
||
| # User/Group globals | ||
| ENV PHP_VERSION="8.1" \ | ||
| PHALCON_VERSION="5.2.3" | ||
|
|
||
| # Update | ||
| RUN apt update -y && \ | ||
| apt install -y \ | ||
| apt-utils \ | ||
| git \ | ||
| nano \ | ||
| sudo \ | ||
| wget \ | ||
| zip | ||
|
|
||
| # PECL Packages | ||
| RUN pecl install phalcon-${PHALCON_VERSION} | ||
|
|
||
| RUN docker-php-ext-install \ | ||
| pdo_mysql | ||
|
|
||
| # Install PHP extensions | ||
| RUN docker-php-ext-enable \ | ||
| phalcon | ||
|
|
||
| # Composer | ||
| COPY --from=composer /usr/bin/composer /usr/local/bin/composer | ||
| # Bash script with helper aliases | ||
| COPY ./.bashrc /root/.bashrc | ||
|
|
||
| CMD ["php-fpm"] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| memory_limit=512M | ||
| apc.enable_cli="On" | ||
| session.save_path="/tmp" |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,5 +6,4 @@ | |
|
|
||
| class Articles extends Model | ||
| { | ||
|
|
||
| } | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,5 +9,4 @@ | |
|
|
||
| class Acceptance extends Module | ||
| { | ||
|
|
||
| } | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,5 +9,4 @@ | |
|
|
||
| class Functional extends Module | ||
| { | ||
|
|
||
| } | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,5 +9,4 @@ | |
|
|
||
| class Unit extends Module | ||
| { | ||
|
|
||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@niden Should have been
2.0.1There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!. Fixed it here #10