Skip to content

Commit 68cc9e7

Browse files
authored
Merge pull request #136 from Coderberg/2.x
Release v2.11.1
2 parents 04a8f1a + 146dd90 commit 68cc9e7

File tree

81 files changed

+2016
-2066
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+2016
-2066
lines changed

.github/workflows/frankenphp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: docker compose exec -T php bin/console -e test app:install
5151
-
5252
name: Run PHPUnit
53-
run: docker compose exec -T php bin/phpunit
53+
run: docker compose exec -T php bin/phpunit --testsuite=main
5454
-
5555
name: Doctrine Schema Validator
5656
run: docker compose exec -T php bin/console -e test doctrine:schema:validate

.github/workflows/mariadb.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
runs-on: ubuntu-latest
77
services:
88
mariadb:
9-
image: mariadb:10.6.14
9+
image: mariadb:11.1.5
1010
ports:
1111
- 3306
1212
env:
1313
MYSQL_USER: mariadb
1414
MYSQL_PASSWORD: mariadb
1515
MYSQL_DATABASE: mariadb
1616
MYSQL_ROOT_PASSWORD: mariadb
17-
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
17+
options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3
1818
strategy:
1919
fail-fast: false
2020
matrix:
@@ -52,9 +52,9 @@ jobs:
5252
run: |
5353
php bin/console app:install
5454
env:
55-
DATABASE_URL: mysql://mariadb:[email protected]:${{ job.services.mariadb.ports[3306] }}/mariadb?serverVersion=mariadb-10.6.14
55+
DATABASE_URL: mysql://mariadb:[email protected]:${{ job.services.mariadb.ports[3306] }}/mariadb?serverVersion=mariadb-11.1.5
5656
- name: Run Tests
5757
env:
5858
PANTHER_NO_SANDBOX: "1"
59-
DATABASE_URL: mysql://mariadb:[email protected]:${{ job.services.mariadb.ports[3306] }}/mariadb?serverVersion=mariadb-10.6.14
60-
run: php bin/phpunit --coverage-text
59+
DATABASE_URL: mysql://mariadb:[email protected]:${{ job.services.mariadb.ports[3306] }}/mariadb?serverVersion=mariadb-11.1.5
60+
run: php bin/phpunit --testsuite=main

.github/workflows/mysql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
services:
88
mysql:
9-
image: mysql:5.7
9+
image: mysql:8.0.39
1010
env:
1111
MYSQL_ALLOW_EMPTY_PASSWORD: false
1212
MYSQL_ROOT_PASSWORD: symfony
@@ -52,9 +52,9 @@ jobs:
5252
run: |
5353
php bin/console app:install
5454
env:
55-
DATABASE_URL: mysql://root:[email protected]:${{ job.services.mysql.ports[3306] }}/symfony?serverVersion=5.7
55+
DATABASE_URL: mysql://root:[email protected]:${{ job.services.mysql.ports[3306] }}/symfony?serverVersion=8.0.39
5656
- name: Run Tests
5757
env:
58-
DATABASE_URL: mysql://root:[email protected]:${{ job.services.mysql.ports[3306] }}/symfony?serverVersion=5.7
58+
DATABASE_URL: mysql://root:[email protected]:${{ job.services.mysql.ports[3306] }}/symfony?serverVersion=8.0.39
5959
PANTHER_APP_ENV: test
60-
run: php bin/phpunit --coverage-text
60+
run: php bin/phpunit --testsuite=main

.styleci.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Coderberg/ResidenceCMS/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/Coderberg/ResidenceCMS/?branch=master) [![Testing with MySQL](https://github.com/Coderberg/ResidenceCMS/actions/workflows/mysql.yml/badge.svg)](https://github.com/Coderberg/ResidenceCMS/actions/workflows/mysql.yml) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=Coderberg_ResidenceCMS&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=Coderberg_ResidenceCMS) [![StyleCI](https://github.styleci.io/repos/148062622/shield?branch=master)](https://github.styleci.io/repos/148062622?branch=master)
1+
![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Coderberg/ResidenceCMS/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/Coderberg/ResidenceCMS/?branch=master) [![Testing with MySQL](https://github.com/Coderberg/ResidenceCMS/actions/workflows/mysql.yml/badge.svg)](https://github.com/Coderberg/ResidenceCMS/actions/workflows/mysql.yml) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=Coderberg_ResidenceCMS&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=Coderberg_ResidenceCMS)
22

33
ResidenceCMS is a fast and lightweight Property Management System on top of [Symfony 7][1].
44

0 commit comments

Comments
 (0)