Skip to content

Commit c3112a2

Browse files
committed
Upgrade dependencies in current setup to latest versions
1 parent 9243487 commit c3112a2

File tree

10 files changed

+1195
-1181
lines changed

10 files changed

+1195
-1181
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Setup node
13-
run: curl -fsSL https://deb.nodesource.com/setup_12.x | sudo -E bash - && sudo apt-get install -y nodejs
13+
run: curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - && sudo apt-get install -y nodejs
1414
- name: Setup php 7.4
1515
uses: shivammathur/setup-php@v2
1616
with:

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language: php
22

33
os: [linux]
44

5-
dist: bionic
5+
dist: focal
66

77
cache:
88
directories:
@@ -17,15 +17,15 @@ services:
1717
- mysql
1818

1919
before_install:
20-
- nvm install 12
20+
- nvm install 18
2121
- if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then openssl aes-256-cbc -K $encrypted_38f96163e3a4_key -iv $encrypted_38f96163e3a4_iv -in .travis/deploy.key.enc -out .travis/deploy.key -d; fi
2222
- curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
2323
- echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
2424
- sudo apt-get update -qq
2525
- sudo apt-get install -y -qq python-docutils yarn
2626

2727
before_script:
28-
- mysql -e "create database phpofby DEFAULT CHARACTER SET utf8; grant all on phpofby.* to 'symfony'@'localhost' identified by 'symfony';" -uroot
28+
- mysql -e "CREATE DATABASE phpofby DEFAULT CHARACTER SET utf8; CREATE USER 'symfony'@'localhost' identified by 'symfony'; GRANT ALL ON phpofby.* TO 'symfony'@'localhost'" -uroot
2929

3030
script:
3131
- php phing.phar build-ci

Resources/doc/01-installation-dev.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ Restart ``php-fpm`` using command ``sudo service php7.4-fpm restart``.
6969

7070
Install node.js and Yarn
7171
~~~~~~~~~~~~~~~~~~~~~~~~
72-
Here we are using version 12 of Node.js.
73-
We need to add repo via ``curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -``. After that install node via ``sudo apt-get install -y nodejs``.
72+
Here we are using version 18 of Node.js.
73+
We need to add repo via ``curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -``. After that install node via ``sudo apt-get install -y nodejs``.
7474

7575
Install Yarn:
7676

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^7.4.0",
21+
"php": "^7.4.0|^8.0",
2222
"ext-ctype": "*",
2323
"ext-iconv": "*",
2424
"ext-pdo": "*",
@@ -31,7 +31,7 @@
3131
"doctrine/doctrine-migrations-bundle": "^3.1",
3232
"doctrine/orm": "^2.9",
3333
"easycorp/easyadmin-bundle": "^3.1.3",
34-
"friendsofsymfony/user-bundle": "2.2.*",
34+
"friendsofsymfony/user-bundle": "^3.0",
3535
"owenversteeg/min": "dev-gh-pages#fe73afc9e1a0ae3492ad3af2efeb0f4d47f967cc",
3636
"pear/archive_tar": "1.4.*",
3737
"pear/pear-core-minimal": "1.*",

0 commit comments

Comments
 (0)