暫無描述

Olivier Massot b4878be3f7 fix image provider 9 月之前
bin fe765c792e setup new public events view and override schema:update command 3 年之前
config 09a402f44f fix schema update script 10 月之前
doc 7b3069c43e include the audit bundle and make parameters auditable 10 月之前
docker 945e0b75bc test ci 10 月之前
env 32f3b28f9f merge feature/V8-6489-dvelopperloutil-de-cration-des- 1 年之前
fixtures 92462a4671 upgrade 3.1.2 3 年之前
migrations 258fa22c3b Revert "tests applicatifs" 2 年之前
old f96da113d5 réparer les tests applicatifs 1 年之前
public 1a88782387 style fixes for CMF licence 11 月之前
sql b8ffe6680e exclude newAccess from search_user view 9 月之前
src b4878be3f7 fix image provider 9 月之前
templates 1a88782387 style fixes for CMF licence 11 月之前
tests 9715e7869d fix unit test 9 月之前
translations d5c5d8f1b3 change the admin. functions in dolibarr sync, complete translations 10 月之前
.env efbb02c8eb minor fixes 1 年之前
.gitignore 3f482b9009 schema validation : add snippets making, and various fixes 1 年之前
.gitlab-ci.yml 52410e2b23 test ci 10 月之前
.php-cs-fixer.dist.php ad81dfbf35 disable yoda style in cs fixer 1 年之前
Dockerfile 1661d9e190 test ci 10 月之前
application_tests.sh 35dc4cf0c0 script lancement de test 1 年之前
composer.json 890530c5e3 fix composer conflicts 10 月之前
icon.svg 571cc0322a post MR fixes; add HttpCodeEnum and fix return codes 2 年之前
logo.png 51b2e302e9 add logo 4 年之前
phpstan.neon.dist 516e3aa2d1 fix phpstan errors 9 月之前
phpunit.xml.dist 2c51844686 tests applicatifs 1 年之前
readme.md 92793a37fb fix and complete unit tests 1 年之前

readme.md

AP2I

pipeline status coverage report

Démarrer le handler de messenger

Pour consommer les signaux messengers, lancer :

php bin/console messenger:consume async

En cas d'erreur lié à l'absence de la table messenger_messages, lancer d'abord :

php bin/console messenger:setup-transports

Voir: https://symfony.com/doc/5.4/messenger.html#consuming-messages-running-the-worker

Chercher les erreurs avec phpstan

Pour exécuter une analyse du code :

vendor/bin/phpstan analyse

Voir : https://phpstan.org/user-guide/getting-started

PHPStan

Le fichier comportant la configuration pour chacun est phpstan.neon.dist Le fichier phpstan.neon n'est pas versionné et surcharge les valeurs du .dist

Principales commandes

Pour lancer l'analyse

vendor/bin/phpstan analyse

Pour vider le cache (utiles entre chaque analyse si les modifications ne sont pas prises en compte)

vendor/bin/phpstan clear-result-cache

Voir : https://phpstan.org/

CS Fixer

Vérifier le code

php vendor/bin/php-cs-fixer check --config=.php-cs-fixer.dist.php

Corriger le formatage du code automatiquement

php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php

Phpunit

XDEBUG_MODE=coverage php -d memory_limit=-1 /var/www/html/vendor/phpunit/phpunit/phpunit --testsuite unit --configuration /var/www/html/phpunit.xml.dist