Skip to content

Commit 7eb89a3

Browse files
committed
Upgrade php, composer and dependencies
1 parent 5387a0d commit 7eb89a3

File tree

7 files changed

+178
-109
lines changed

7 files changed

+178
-109
lines changed

Resources/doc/01-installation-dev.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ Install required php modules ``sudo apt-get update && sudo apt-get install -y ph
5959
echo "short_open_tag=0" | sudo tee -a /etc/php/7.3/mods-available/common.ini > /dev/null
6060
echo "xdebug.max_nesting_level=250" | sudo tee -a /etc/php/7.3/mods-available/xdebug.ini > /dev/null
6161
echo "xdebug.var_display_max_depth=5" | sudo tee -a /etc/php/7.3/mods-available/xdebug.ini > /dev/null
62-
echo "opcache.optimization_level=0x7FFFBBFF ; Remove some optimisations, otherwise php with xdebug will fail" | sudo tee -a /etc/php/7.3/mods-available/xdebug.ini > /dev/null
6362
sudo phpenmod common
6463

6564

Resources/doc/todo.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ Things to do
33

44
- Add tasks to build to execute tests, when they are appears
55
- Upgrade ``squizlabs/php_codesniffer`` to version 3 after solving https://github.com/phingofficial/phing/issues/716
6-
- Remove optimization flags for opcache after fixing segfault with xdebug

build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
<SymfonyConsole command="ckeditor:install" checkReturn="true" console="${symfony-bin-console}" >
115115
<arg value="-nq" />
116116
</SymfonyConsole>
117-
<exec command="${project.yarn-bin} install" />
117+
<exec command="${project.yarn-bin} install" passthru="true" />
118118
</target>
119119

120120
<target name="dependencies-install-prod" description="Install only prod dependencies using composer" depends="make-console-executable">
@@ -127,7 +127,7 @@
127127
<SymfonyConsole command="ckeditor:install" checkReturn="true" console="${symfony-bin-console}" >
128128
<arg value="-nq" />
129129
</SymfonyConsole>
130-
<exec command="${project.yarn-bin} install" />
130+
<exec command="${project.yarn-bin} install" passthru="true" />
131131
</target>
132132

133133
<target name="dependencies-list-updates" description="Check updates for all dependencies">

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
},
7373
"config": {
7474
"platform": {
75-
"php": "7.3.1"
75+
"php": "7.3.2"
7676
},
7777
"preferred-install": {
7878
"*": "dist"

0 commit comments

Comments
 (0)