We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9f1db4 commit 9c28f9bCopy full SHA for 9c28f9b
src/scripts/extensions/phalcon.sh
@@ -1,7 +1,11 @@
1
# Helper function to get phalcon version
2
get_phalcon_version() {
3
if [ "$extension" = "phalcon5" ]; then
4
- get_pecl_version phalcon stable 5
+ if [ "${version:?}" = "7.4" ]; then
5
+ echo '5.4.0'
6
+ else
7
+ get_pecl_version phalcon stable 5
8
+ fi
9
elif [ "$extension" = "phalcon4" ]; then
10
echo '4.1.2'
11
elif [ "$extension" = "phalcon3" ]; then
0 commit comments